colingair

Results 4 issues of colingair

I am trying to train a truecase model with python3.6 and sacremoses43. The file is little large. It gets killed after an hour. I am using a quadcore intel machine...

>>> mtr = MosesTruecaser('big.truecasemodel') The above is fine. But how to load the same model for detruecasing? It gives error, if I do the following: >>> from sacremoses import MosesDetruecaser...

use_known=True gives error Look at the followings: >>>mtr = MosesTruecaser("mymodel_x") >>> mtr.truecase("THE ADVENTURES OF SHERLOCK HOLMES") ['the', 'adventures', 'OF', 'Sherlock', 'HOLMES'] >>> mtr.truecase("THE ADVENTURES OF SHERLOCK HOLMES", return_str=True) 'the adventures...

I am able to train and get result as expected for a medium size dataset. But when I increase the dataset, it gets killed after step 5, even if I...