DeepPavlov icon indicating copy to clipboard operation
DeepPavlov copied to clipboard

An open source library for deep learning end-to-end dialog systems and chatbots.

Results 103 DeepPavlov issues
Sort by recently updated
recently updated
newest added

Запускаю модель kbqa для русского языка ``` from deeppavlov import configs, build_model kbqa_model = build_model(configs.kbqa.kbqa_cq_rus, download=False) ans = input() print(kbqa_model([ans])) ``` Один вопрос (а именно "на каком месте Россия по...

bug

Hello Team, I was trying to build the KBQA model using this 'kbqa_cq_online.json' file. But I'm getting this error: InvalidArgumentError: No OpKernel was registered to support Op 'CudnnRNNCanonicalToParams' used by...

**DeepPavlov version** (you can look it up by running `pip show deeppavlov`): Name: deeppavlov Version: 0.10.0 **Python version**: Python 3.7.7 **Operating system** (ubuntu linux, windows, ...): Arch linux **Issue**: When...

bug

I have before me an interesting task of training a question-answer system on my own data. I use this notebook as an example: https://colab.research.google.com/github/deepmipt/dp_notebooks/blob/master/DP_ODQA.ipynb#scrollTo=7C1mT_2-Nlnj However, the ranker does not enter...

bug

Было бы удобно сделать возможность загрузки одной эмбеддинг-модели и использования ее для всех компонент, поскольку есть проблема потребления ресурсов: intents classifier, gobot, ner, компонент классификации навыков - все они используют...

feature request

I have a code with a custom config for Bert Paraphraser: ``` DATA_PATH = BASE_PATH + "data/" para_config = { "dataset_reader": { "class_name": "csv_reader", "data_path": DATA_PATH, "do_lower_case": False, "delimiter": ",",...

enhancement

An attempt was made in #724

enhancement

Deeppavlov have no file to which model console logs would be written

enhancement

It would be good for debugging purposes to log compute time (single call / total time) of elements in chainer pipeline, like profiler for chainer.

feature request

DeepPavlov 0.5.0, Python 3.7.6, Ubuntu 20.04 When the validation set is empty, this error AttributeError: 'NoneType' object has no attribute 'items' is raised by [`metrics = list(report['metrics'].items())`](https://github.com/deepmipt/DeepPavlov/blob/master/deeppavlov/core/trainers/nn_trainer.py#L174) because [the value...

bug