SamMohel

Results 7 issues of SamMohel

Excuse me , I'm new to use fasttext and very appreciating your work. but i'm facing latency with using Jfastext. My dataset is around 170MB and with running my code...

https://stackoverflow.com/questions/45159453/how-can-i-load-model ?

I tired to follow the example of using MAGRAD optimizer ``` import torch_optimizer as optim optimizer = optim.MAGRAD(model.parameters(), lr=0.1) optimizer.zero_grad() loss_fn(model(input), target).backward() optimizer.step() ``` but got `AttributeError: module 'torch_optimizer' has...

Did you use Precision or F-score or Recall methods ?

I'm facing the problem with `AdaBeliefOptimizer` `AttributeError: 'AdaBeliefOptimizer' object has no attribute '_set_hyper'` `optimizer = AdaBeliefOptimizer(learning_rate=1e-3, epsilon=1e-14, rectify=False)`

i got killed after sometimes the code is running , i think it is gpu problem, how can i use cuda in the code please or which lines i should...

I'm facing this problem while trying to access Lion optimizer I used ``` import torch_optimizer as optim optimizer = optim.Lion(ensemble_model.parameters(), lr=1e-4) ```