Questions tagged [deeppavlov]

DeepPavlov is an open-source framework for chatbots and virtual assistants development. It has comprehensive and flexible tools that let developers and NLP researchers create production ready conversational skills and complex multi-skill conversational assistants.

30 questions
0
votes
1 answer

DeepPavlov installation: AttributeError: module 'collections' has no attribute 'Iterable'

I'm trying to install deeppavlov via pip. It downloads some packages, then it goes "Preparing metadata (setup.py)" ... error; There are 48 lines of output. I found online, "collections.Iterable is deprecated. Replace it with…
0
votes
0 answers

OSError: [Errno 28] No space left on device when installing deeppavlov model in docker container on Win 10

I'm trying to install a deeppavlov model on Windows 10 in a Docker container by running in Windows PowerShell: docker run -e CONFIG=gobot_dstc2_best -p 5555:5000 -v ~/my_dp_components:/root/.deeppavlov -v ~/my_dp_envs:/venv…
Kaori
  • 49
  • 1
  • 7
0
votes
1 answer

DeepPavlov FAQ Bot is returning a 'collections.OrderedDict' object is not callable error

I'm trying to use collab to build a bot for FAQ with DeepPavlov and I modified a tutorial notebook that DeepPavlov has on their site, the only thing I change is using my sample dataset yet I get the 'collections.OrderedDict' object is not callable…
Unknownzdx
  • 179
  • 2
  • 14
0
votes
1 answer

How to build a Open domain question answering model(ODQA/KBQA) using Deeppavlov of Huggingface

How to build a Open domain question answering(ODQA/KBQA) model using Deeppavlov of Huggingface I want to build a custom model for this.
0
votes
0 answers

Deeppavlov markup as a python dictionary

I would like to get the deeppavlov NER markup. Now I have this code: from deeppavlov import configs, build_model ner_model = build_model(configs.ner.ner_ontonotes_bert_mult, download=True) data_list = ["New Zealand's Prime Minister Jacinda Ardern…
alyferryhalo
  • 43
  • 1
  • 12
0
votes
1 answer

Converting serialized JSON object back in Java

I'm writting an Java application that do requests through REST API to Named Entity Recognition service (deeppavlov) running in a local network. So I request data by following: String text = "Welcome to Moscow, John"; List
user164863
  • 580
  • 1
  • 12
  • 29
0
votes
1 answer

'ner_ontonotes_bert_mult' model Custom train

When I want to train this 'ner_ontonotes_bert_mult' model with my custom dataset it is showing the error below. (I have saved my datset in the ~\.deeppavlov\downloads\ontonotes folder that was mentioned in [deeppavlov documentation][1]. ) PS…
0
votes
2 answers

TypeError: stat: path should be string, bytes, os.PathLike or integer, not TrainingResult

this is my code : from rasa.jupyter import chat endpoints = "endpoints.yml" chat(model_path, endpoints) It gives Error: TypeError Traceback (most recent call last) in 2 3 endpoints = "endpoints.yml" ----> 4…
0
votes
1 answer

Pinyin Named Entity Recognition

I'm trying to conduct named entity recognition or pull out the persons, places, etc... from Pinyin, or the romanization of Chinese characters. For example (from Wikipedia): "Jiang Zemin, Li Peng and Zhu Rongji led the nation in the 1990s. Under…
0
votes
1 answer

Training on deeppavlov for NER keeps failing

I have been trying to train a deeppavlov model for NER based on the train syntax given on their docs and it keeps failing with below error message: /opt/anaconda3/envs/py36/lib/python3.6/site-packages/deeppavlov/dataset_readers/conll2003_reader.py…
0
votes
3 answers

Deeppavlov - make custom intents

from deeppavlov import build_model, configs snips_model = build_model(configs.classifiers.intents_snips , download=True) snips_model(["Hello! What is the weather in Boston tomorrow?"]) Hello All - I can use deeppavlov's pretrained model above for…
-1
votes
1 answer

Deeppavlov tuned model to hugging face model

I have deeppavlov fine-tuned model. Is there a way to convert to a model that transformers can work with (https://github.com/huggingface/transformers)?
Liza
  • 7
  • 1
-1
votes
1 answer

Error when running rubert training on windows

When I start training rubert, this message is returned. I can't even guess what's going wrong... model = train_model(config_path) 2021-01-03 18:41:46.694 WARNING…
NewGCorp
  • 1
  • 2
1
2