rnnmorph icon indicating copy to clipboard operation
rnnmorph copied to clipboard

Morphological analyzer for Russian and English languages based on neural networks and dictionary-lookup systems.

Results 7 rnnmorph issues
Sort by recently updated
recently updated
newest added

mac os cathalina keras = 2.3.1 tf = 1.15.0 rnnmorph=0.4.0 NEXT CODE crushed kernel: from rnnmorph.predictor import RNNMorphPredictor predictor = RNNMorphPredictor(language="ru",) forms = predictor.predict(["мама"]) print(forms[0].pos)

Hi! Im trying to train model, but training fails seemingly at the end of the epoch with InvalidArgumentError: Incompatible shapes: [832] vs. [64,13] [[Node: metrics_4/acc_1/Equal = Equal[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/device:CPU:0"](metrics_4/acc_1/Reshape, metrics_4/acc_1/Cast)]]. **code...

Added pymorphy2_hotfix from https://github.com/pymorphy2/pymorphy2/issues/160#issuecomment-1486657176

np.int was deprecated in numpy 1.20; changed it to int.

np.float was deprecated in numpy 1.20; changed it to float

Got an error: AttributeError: module 'numpy' has no attribute 'int'. `np.int` was a deprecated alias for the builtin `int`. To avoid this error in existing code, use `int` by itself....

There is a need for me to determine grammatical case for terms in texts of a big dataset. I found that the increment of memory usage as large as 0.3...