Cecilia Lee
Results
3
comments of
Cecilia Lee
Is it possible to train a new model with spacyr at the moment?
@kbenoit Sure. Then if I've trained a model with python, how can I use (initialize) that model with spacyr?
I prefer not to downgrade numpy. A workaround is to simply manually assign `np.int`, `np.float`, `np.bool` before calling `fit()`. ``` np.int = np.int32 np.float = np.float64 np.bool = np.bool_ boruta...