You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/basics.jl
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -19,16 +19,16 @@ rng = StableRNG(63);
19
19
# ## Model
20
20
21
21
#=
22
-
The package provides a versatile [`HMM`](@ref) type with three attributes:
23
-
- a vector of state initialization probabilities
24
-
- a matrix of state transition probabilities
25
-
- a vector of observation distributions, one for each state
22
+
The package provides a versatile [`HMM`](@ref) type with three main attributes:
23
+
- a vector `init` of state initialization probabilities
24
+
- a matrix `trans` of state transition probabilities
25
+
- a vector `dists` of observation distributions, one for each state
26
26
27
27
Any scalar- or vector-valued distribution from [Distributions.jl](https://github.com/JuliaStats/Distributions.jl) can be used for the last part, as well as [Custom distributions](@ref).
0 commit comments