maciejkula / glove-python

Toy Python implementation of http://www-nlp.stanford.edu/projects/glove/
Apache License 2.0
1.25k stars 319 forks source link

added init_epoch to Glove.fit #89

Open IFuentesSR opened 6 years ago

IFuentesSR commented 6 years ago

Each time that we called the fit method, the weights were randomly initiated, not allowing a warm start. Therefore, we just added a way to allow the model to resume the training. Regards