Skip to content

Commit

Permalink
Redocument
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle committed Oct 1, 2024
1 parent a19450d commit 7aab680
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/inference/forward.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ function initialize_forward(
return ForwardStorage(α, logL, B, c)
end

"""
$(SIGNATURES)
"""
function forward!(
storage::ForwardOrForwardBackwardStorage,
hmm::AbstractHMM,
Expand Down
3 changes: 3 additions & 0 deletions src/inference/forward_backward.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ function initialize_forward_backward(
return ForwardBackwardStorage{R,M}(γ, ξ, logL, B, α, c, β, Bβ)
end

"""
$(SIGNATURES)
"""
function forward_backward!(
storage::ForwardBackwardStorage{R},
hmm::AbstractHMM,
Expand Down
3 changes: 3 additions & 0 deletions src/inference/viterbi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ function initialize_viterbi(
return ViterbiStorage(q, logL, logB, ϕ, ψ)
end

"""
$(SIGNATURES)
"""
function viterbi!(
storage::ViterbiStorage{R},
hmm::AbstractHMM,
Expand Down

0 comments on commit 7aab680

Please sign in to comment.