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
When calculating the trigram probability of the first word in a sentence the returned value is the frequency of the trigram plus one, instead of the actual probability. Example:
In [96]: ng.prob("", "", "Í")
Out[96]: 595124.0000000003
In [97]: ng.freq("", "", "Í")
Out[97]: 595123
The text was updated successfully, but these errors were encountered:
When calculating the trigram probability of the first word in a sentence the returned value is the frequency of the trigram plus one, instead of the actual probability. Example:
The text was updated successfully, but these errors were encountered: