We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, First, thank you for sharing this useful package.
I encounter an underflow error where scr/viterbi.f vit() complained that log(initialProb) was infinite.
In R/Viterbi.R I added
R/Viterbi.R
initialProb <- log(initialProb) initialProb[is.infinite(initialProb)] <- -325
As it is done for emissionProb. Of course, I then gave initialProb in the argument of the fortran vit function.
emissionProb
initialProb
I had never encountered this error before.
Cheers. Jeremie
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
First, thank you for sharing this useful package.
I encounter an underflow error where scr/viterbi.f vit() complained that log(initialProb) was infinite.
In
R/Viterbi.R
I addedAs it is done for
emissionProb
. Of course, I then gaveinitialProb
in the argument of the fortran vit function.I had never encountered this error before.
Cheers.
Jeremie
The text was updated successfully, but these errors were encountered: