Hi,
I am trying to use deeppavlov but facing issue with run time
from deeppavlov import configs,build_model
from transformers.models.bert.modeling_bert import BertModel,BertForMaskedLM
ner_model=build_model(configs.classifiers.rusentiment_bert, download=True)
Vasily
July 20, 2023, 11:09am
2
Hey @Deepika ! Thank you very much for your interest.
Please make sure you are using the latest version of DeepPavlov.
pip install deeppavlov==1.0.1
Then run the following code.
from deeppavlov import build_model, configs, evaluate_model
model = build_model('rusentiment_bert', download=True, install=True)
Please let us know if you need a further assistance.
Vasily:
==1.0.1
Hi Vasily,
Thanks for the input. But when i am trying to install deeppavlov==1.0.1 i am getting below error
Vasily
July 27, 2023, 1:28pm
4
It seems like something related to your OS.
There are several solutions how to install BLAS/LAPACK libraries on https://stackoverflow.com/ depending on your system.
In addition, please make sure you install DeepPavlov in clean Python environment.