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
Can you someone explain why the prediction used to compute the message at the first iteration is the output from logsoftmax and for the other iterations is softmax? In the inference function.
The text was updated successfully, but these errors were encountered:
This is similar to #11. I use logsoftmax in the first iteration, because the original FullCRF implemented uses log on the data (followed by softmax). Logsoftmax does the same but numerical more stable.
In all further iteration only softmax is applied in FullCRF, since the data is already in "log" space.
Can you someone explain why the prediction used to compute the message at the first iteration is the output from logsoftmax and for the other iterations is softmax? In the inference function.
The text was updated successfully, but these errors were encountered: