davidcpage

Results 4 comments of davidcpage

This constrains the output scores to lie in a range given by the scale factor - e.g. for Scale(5.0) this is a soft clipping function to the range (-5.0, 5.0)....

The outputs of the network represent scores in a linear-chain CRF. You can use them to compute the log probability of a particular (aligned) output sequence by adding log scores...

We distinguish between being in state 1 1 1 1 1 and emitting a blank symbol (stay_index/score) and being in state 1 1 1 1 1 and emitting a 1...

Thanks for spotting this! bias=False as in the code is 'correct' - I tested with and without and got similar results so went with the simpler option. I'll leave the...