", "", "
", "", "
Problem? Ask a Question or try our Demo
{% endblock %}
diff --git a/docs/apiref/models/entity_extraction.rst b/docs/apiref/models/entity_extraction.rst
index 865b51e686..7f47a4ed59 100644
--- a/docs/apiref/models/entity_extraction.rst
+++ b/docs/apiref/models/entity_extraction.rst
@@ -16,4 +16,4 @@ deeppavlov.models.entity_extraction
.. automethod:: __init__
.. automethod:: __call__
-.. autofunction:: deeppavlov.models.entity_extraction.entity_detection_parser.question_sign_checker
+.. autoclass:: deeppavlov.models.entity_extraction.entity_detection_parser.QuestionSignChecker
diff --git a/docs/apiref/models/kbqa.rst b/docs/apiref/models/kbqa.rst
index 8a327251cb..39ff367b25 100644
--- a/docs/apiref/models/kbqa.rst
+++ b/docs/apiref/models/kbqa.rst
@@ -28,7 +28,7 @@ deeppavlov.models.kbqa
.. automethod:: __init__
.. automethod:: __call__
-.. autoclass:: deeppavlov.models.kbqa.tree_to_sparql.RuAdjToNoun
+.. autoclass:: deeppavlov.models.kbqa.ru_adj_to_noun.RuAdjToNoun
.. automethod:: __init__
.. automethod:: __call__
diff --git a/docs/conf.py b/docs/conf.py
index d90853887a..b8ff2326c4 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -201,7 +201,7 @@
# -- Extension configuration -------------------------------------------------
-autodoc_mock_imports = ['bs4', 'fasttext', 'hdt', 'kenlm', 'lxml', 'navec', 'nltk', 'opt_einsum', 'rapidfuzz',
+autodoc_mock_imports = ['bs4', 'fasttext', 'hdt', 'kenlm', 'lxml', 'navec', 'nltk', 'opt_einsum', 'rapidfuzz', 'razdel',
'sacremoses', 'slovnet', 'sortedcontainers', 'spacy', 'torch', 'torchcrf', 'transformers',
'udapi', 'whapi']
diff --git a/docs/features/models/entity_extraction.rst b/docs/features/models/entity_extraction.rst
index 8b5fa7ba9c..3c8f2791bf 100644
--- a/docs/features/models/entity_extraction.rst
+++ b/docs/features/models/entity_extraction.rst
@@ -49,9 +49,9 @@ Entity Detection model can be used from Python using the following code:
.. code:: python
- from deeppavlov import configs, build_model
+ from deeppavlov import build_model
- ed = build_model(configs.entity_extraction.entity_detection_en, download=True)
+ ed = build_model('entity_detection_en', download=True)
ed(['Forrest Gump is a comedy-drama film directed by Robert Zemeckis and written by Eric Roth.'])
Entity Linking is the task of finding knowledge base entity ids for entity mentions in text. Entity Linking in DeepPavlov supports Wikidata and Wikipedia (for :config:`English