Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TensorFSTs.jl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FAST
FST
TensorFSTs.jl
Commits
06aa9041
Unverified
Commit
06aa9041
authored
2 years ago
by
Lucas Ondel Yang
Browse files
Options
Downloads
Patches
Plain Diff
ensure preservation of the acyclic property
parent
73e96441
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
sandbox/example.jl
+3
-3
3 additions, 3 deletions
sandbox/example.jl
src/FSALinalg.jl
+1
-0
1 addition, 0 deletions
src/FSALinalg.jl
src/fsa.jl
+4
-3
4 additions, 3 deletions
src/fsa.jl
src/ops.jl
+26
-10
26 additions, 10 deletions
src/ops.jl
test/runtests.jl
+7
-2
7 additions, 2 deletions
test/runtests.jl
with
41 additions
and
18 deletions
sandbox/example.jl
+
3
−
3
View file @
06aa9041
...
...
@@ -576,16 +576,16 @@ end
edges
# ╔═╡ c8d7966a-61c1-4ab2-856c-6ca5d10648cd
fsadet
(
M3
|>
renorm
,
edges
,
states
)
|>
renorm
fsadet
(
M3
,
edges
,
states
)
|>
renorm
# ╔═╡ 358d297d-4def-44dc-b79d-6d23aa67d179
sum
(
M3
|>
renorm
)
M3
# ╔═╡ c31ccfdc-3687-46cb-9eed-03791bde56d4
sparsevec
([
2
,
3
],
1
,
5
)
# ╔═╡ 75c4a277-9edb-4f47-bd5e-13dcb498bd96
M3
sum
(
union
(
AcyclicFSA
(
M3
),
AcyclicFSA
(
M3
)))
# ╔═╡ 68b7380b-2514-4362-9504-552fb4e467f7
Z1
=
spdiagm
(
M3
.
α
)
*
C
...
...
This diff is collapsed.
Click to expand it.
src/FSALinalg.jl
+
1
−
0
View file @
06aa9041
...
...
@@ -32,6 +32,7 @@ export
addskipedges
,
closure
,
globalrenorm
,
propagate
,
renorm
include
(
"abstractfsa.jl"
)
...
...
This diff is collapsed.
Click to expand it.
src/fsa.jl
+
4
−
3
View file @
06aa9041
...
...
@@ -50,12 +50,13 @@ function Base.convert(f::Function, A::AbstractFSA{K,L}) where {K,L}
end
struct
AcyclicFSA
{
K
,
L
}
<:
AbstractAcyclicFSA
{
K
,
L
}
fsa
::
FSA
{
K
,
L
}
fsa
::
Abstract
FSA
{
K
,
L
}
end
AcyclicFSA
(
α
,
T
,
ω
,
ρ
,
λ
)
=
AcyclicFSA
(
FSA
(
α
,
T
,
ω
,
ρ
,
λ
))
Base
.
parent
(
A
::
AcyclicFSA
)
=
A
.
fsa
Base
.
parent
(
A
::
AcyclicFSA
)
=
parent
(
A
.
fsa
)
Base
.
convert
(
f
,
A
::
AbstractAcyclicFSA
)
=
AcyclicFSA
(
convert
(
f
,
A
.
fsa
))
Base
.
convert
(
f
::
Function
,
A
::
AbstractAcyclicFSA
{
K
,
L
})
where
{
K
,
L
}
=
AcyclicFSA
(
convert
(
f
,
parent
(
A
)))
This diff is collapsed.
Click to expand it.
src/ops.jl
+
26
−
10
View file @
06aa9041
...
...
@@ -87,9 +87,9 @@ function Base.filter(f::Function, A::AbstractFSA)
end
"""
not
accessible(A::AbstractFSA{K}) where K
accessible(A::AbstractFSA{K}) where K
Return
s
a vector `x` of dimension `nstates(A)` where `x[i]` is `one(K)`
Return a vector `x` of dimension `nstates(A)` where `x[i]` is `one(K)`
if the state `i` is not accessible, `zero(K)` otherwise.
"""
function
accessible
(
A
::
AbstractFSA
{
K
})
where
K
...
...
@@ -125,7 +125,7 @@ one.
function
renorm
(
A
::
AbstractFSA
)
Z
=
inv
.
((
sum
(
T
(
A
),
dims
=
2
)
.+
ω
(
A
)))
Zₐ
=
inv
(
sum
(
α
(
A
))
+
ρ
(
A
))
FSA
(
typeof
(
A
)
(
Zₐ
*
α
(
A
),
Z
.*
T
(
A
),
Z
[
:
,
1
]
.*
ω
(
A
),
...
...
@@ -182,22 +182,38 @@ Base.union(A1::AbstractFSA{K}, AN::AbstractFSA{K}...) where K =
#= Functions for acyclic FSA =#
renorm
(
A
::
AbstractAcyclicFSA
)
=
AcyclicFSA
(
parent
(
A
)
|>
renorm
)
Base
.
reverse
(
A
::
AbstractAcyclicFSA
)
=
AcyclicFSA
(
parent
(
A
)
|>
reverse
)
Base
.
cat
(
A1
::
AbstractAcyclicFSA
,
A2
::
AbstractAcyclicFSA
)
=
AcyclicFSA
(
cat
(
parent
(
A1
),
parent
(
A2
)))
Base
.
union
(
A1
::
AbstractAcyclicFSA
,
A2
::
AbstractAcyclicFSA
)
=
AcyclicFSA
(
union
(
parent
(
A1
),
parent
(
A2
)))
"""
globalrenorm
(A::AbstractAcyclicFSA)
propagate
(A::AbstractAcyclicFSA
[; forward = true]
)
Global renormalization of the weights of `A`.
Multiply the weight of each arc by the sum-product of all the prefix
paths. If `forward` is `false` the arc's weight is multiply by the
sum-product of all the suffix paths of this arc.
"""
function
globalrenorm
(
A
::
AbstractAcyclicFSA
)
# Accumulate the weight backward starting from the end state.
v
=
ω
(
A
)
function
propagate
(
A
::
AbstractAcyclicFSA
;
forward
=
true
)
v
=
forward
?
α
(
A
)
:
ω
(
A
)
M
=
forward
?
T
(
A
)
'
:
T
(
A
)
σ
=
v
while
nnz
(
v
)
>
0
v
=
T
(
A
)
*
v
v
=
M
*
v
σ
+=
v
end
σ
D
=
spdiagm
(
σ
)
FSA
(
σ
.*
α
(
A
),
T
(
A
)
*
D
,
ω
(
A
),
ρ
(
A
),
λ
(
A
))
|>
renorm
AcyclicFSA
(
FSA
(
σ
.*
α
(
A
),
T
(
A
)
*
D
,
ω
(
A
),
ρ
(
A
),
λ
(
A
))
)
end
"""
globalrenorm(A::AbstractAcyclicFSA)
Global renormalization of the weights of `A`.
"""
globalrenorm
(
A
::
AbstractAcyclicFSA
)
=
propagate
(
A
;
forward
=
false
)
|>
renorm
This diff is collapsed.
Click to expand it.
test/runtests.jl
+
7
−
2
View file @
06aa9041
...
...
@@ -41,7 +41,7 @@ for K in Ks, L in Ls
ω2
=
sparsevec
([
2
,
4
],
K
[
5
,
6
],
4
)
ρ2
=
zero
(
K
)
λ2
=
[
L
(
"a"
),
L
(
"b"
),
L
(
"c"
),
L
(
"d"
)]
A2
=
FSA
(
α2
,
T2
,
ω2
,
ρ2
,
λ2
)
A2
=
Acyclic
FSA
(
α2
,
T2
,
ω2
,
ρ2
,
λ2
)
B2
=
convert
((
w
,
l
)
->
f
(
L
,
A2
,
w
,
l
),
A2
)
Aϵ
=
FSA
(
spzeros
(
K
,
0
),
spzeros
(
K
,
0
,
0
),
spzeros
(
K
,
0
),
one
(
K
),
L
[])
...
...
@@ -71,6 +71,7 @@ for K in Ks, L in Ls
cs_B1_B2
=
sum
(
B1
;
n
)
+
sum
(
B2
;
n
)
@test
cs_B12
.
tval
[
1
]
≈
cs_B1_B2
.
tval
[
1
]
@test
cs_B12
.
tval
[
2
]
==
cs_B1_B2
.
tval
[
2
]
@test
typeof
(
union
(
A2
,
A2
))
<:
AbstractAcyclicFSA
end
@testset
verbose
=
true
"concatenation"
begin
...
...
@@ -79,6 +80,7 @@ for K in Ks, L in Ls
cs_B12
=
sum
(
B12
;
n
=
2
n
)
cs_B1_B2
=
sum
(
B2
;
n
)
*
sum
(
B1
;
n
)
@test
cs_B12
.
tval
[
2
]
⊇
cs_B1_B2
.
tval
[
2
]
@test
typeof
(
cat
(
A2
,
A2
))
<:
AbstractAcyclicFSA
end
# The number of iteration for the cumulative sum depends on the
...
...
@@ -107,6 +109,7 @@ for K in Ks, L in Ls
s1
=
val
(
sum
(
B2
;
n
)
.
tval
[
2
])
s2
=
Set
((
StringMonoid
∘
reverse
∘
val
)
.
((
val
∘
sum
)(
rB2
)[
2
]))
@test
s1
==
s2
@test
typeof
(
rA2
)
<:
AbstractAcyclicFSA
end
@testset
verbose
=
true
"renorm"
begin
...
...
@@ -127,7 +130,9 @@ for K in Ks, L in Ls
end
@testset
verbose
=
true
"globalrenorm"
begin
@test
Base
.
isapprox
(
val
(
sum
(
AcyclicFSA
(
A2
)
|>
globalrenorm
;
n
=
100
)),
val
(
one
(
K
)),
atol
=
1e-6
)
A
=
AcyclicFSA
(
A2
)
|>
globalrenorm
@test
Base
.
isapprox
(
val
(
sum
(
A
;
n
=
100
)),
val
(
one
(
K
)),
atol
=
1e-6
)
@test
typeof
(
A
)
<:
AbstractAcyclicFSA
end
end
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment