Skip to content

Commit 27ad09e

Browse files
authored
Release 0.17.6
1 parent e463c13 commit 27ad09e

File tree

10 files changed

+34
-34
lines changed

10 files changed

+34
-34
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ DeepPavlov is designed for
1616
* Documentation [*docs.deeppavlov.ai*](http://docs.deeppavlov.ai/)
1717
* Model List [*docs:features/*](http://docs.deeppavlov.ai/en/master/features/overview.html)
1818
* Contribution Guide [*docs:contribution_guide/*](http://docs.deeppavlov.ai/en/master/devguides/contribution_guide.html)
19-
* Issues [*github/issues/*](https://github.com/deeppavlovteam/DeepPavlov/issues)
19+
* Issues [*github/issues/*](https://github.com/deeppavlov/DeepPavlov/issues)
2020
* Forum [*forum.deeppavlov.ai*](https://forum.deeppavlov.ai/)
2121
* Blogs [*medium.com/deeppavlov*](https://medium.com/deeppavlov)
22-
* Tutorials [*examples/*](examples) and [extended colab tutorials](https://github.com/deeppavlovteam/dp_tutorials)
22+
* Tutorials [*examples/*](examples) and [extended colab tutorials](https://github.com/deeppavlov/dp_tutorials)
2323
* Docker Hub [*hub.docker.com/u/deeppavlov/*](https://hub.docker.com/u/deeppavlov/)
2424
* Docker Images Documentation [*docs:docker-images/*](http://docs.deeppavlov.ai/en/master/intro/installation.html#docker-images)
2525

deeppavlov/_meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.17.5'
1+
__version__ = '0.17.6'
22
__author__ = 'Neural Networks and Deep Learning lab, MIPT'
33
__description__ = 'An open source library for building end-to-end dialog systems and training chatbots.'
44
__keywords__ = ['NLP', 'NER', 'SQUAD', 'Intents', 'Chatbot']
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git+https://github.com/deeppavlovteam/bert.git@feat/multi_gpu
1+
git+https://github.com/deeppavlov/bert.git@feat/multi_gpu

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
'torch', 'transformers', 'udapi', 'ufal_udpipe', 'whapi', 'xeger']
197197

198198
extlinks = {
199-
'config': (f'https://github.com/deeppavlovteam/DeepPavlov/blob/{release}/deeppavlov/configs/%s', None)
199+
'config': (f'https://github.com/deeppavlov/DeepPavlov/blob/{release}/deeppavlov/configs/%s', None)
200200
}
201201

202202
# -- Options for intersphinx extension ---------------------------------------

docs/devguides/contribution_guide.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ you can receive an invitation to one of our events or an opportunity to become a
1616
How to contribute:
1717

1818
#. Don't start the coding first.
19-
You should do a quick search over `existing issues <https://github.com/deeppavlovteam/DeepPavlov/issues?q=is%3Aissue>`_
19+
You should do a quick search over `existing issues <https://github.com/deeppavlov/DeepPavlov/issues?q=is%3Aissue>`_
2020
for the project to see if your suggestion was already discussed or even resolved.
2121
If nothing relevant was found, please create a new one and state what exactly you would like
2222
to implement or fix.
2323
You may proceed with coding once someone on our team accepts your offer.
2424

2525
#. `Fork <https://guides.github.com/activities/forking/>`_ the
26-
`DeepPavlov repository <https://github.com/deeppavlovteam/DeepPavlov>`_
26+
`DeepPavlov repository <https://github.com/deeppavlov/DeepPavlov>`_
2727

2828
#. Checkout the ``dev`` branch from
2929
`the upstream <https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork>`_
@@ -33,7 +33,7 @@ How to contribute:
3333
3434
git clone https://github.com/<OWNER>/<REPOSITORY>.git
3535
cd <REPOSITORY>
36-
git remote add upstream https://github.com/deeppavlovteam/DeepPavlov.git
36+
git remote add upstream https://github.com/deeppavlov/DeepPavlov.git
3737
git fetch upstream
3838
git checkout -b dev --track upstream/dev
3939
@@ -68,7 +68,7 @@ How to contribute:
6868
#. We ask you to **add some tests**. This will help us maintain the
6969
framework, and this will help users to understand the feature you introduce.
7070
Examples of implemented tests are available in `tests/
71-
<https://github.com/deeppavlovteam/DeepPavlov/tree/dev/tests>`_
71+
<https://github.com/deeppavlov/DeepPavlov/tree/dev/tests>`_
7272
directory.
7373

7474
#. Please, **update the documentation**, if you committed significant changes
@@ -85,7 +85,7 @@ How to contribute:
8585
Follow the `semantic commit notation <https://seesparkbox.com/foundry/semantic_commit_messages>`_
8686
for the name of the commit.
8787

88-
#. Create a new `pull request <https://github.com/deeppavlovteam/DeepPavlov/pulls>`_
88+
#. Create a new `pull request <https://github.com/deeppavlov/DeepPavlov/pulls>`_
8989
to get your feature branch merged into dev for others to use.
9090
Don't forget to `reference <https://help.github.com/en/github/writing-on-github/autolinked-references-and-urls>`_
9191
the GitHub issue associated with your task in the description.

docs/features/models/intent_catcher.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ How Do I: Integrate Intent Catcher into DeepPavlov Deepy
6666

6767
To integrate your Intent Catcher-based intent classifier into your Multiskill AI Assistant built using DeepPavlov Conversational AI Stack, follow the following instructions:
6868

69-
1. Clone `Deepy repository <https://github.com/deeppavlovteam/assistant-base>`_
70-
2. Replace ``docker-compose.yml`` in the root of the repository and ``pipeline_conf.json`` in the ``/agent/`` subdirectory with the corresponding files from the `deepy_adv <https://github.com/deeppavlovteam/assistant-base/tree/main/assistant_dists/deepy_adv>`_ **Deepy Distribution**
69+
1. Clone `Deepy repository <https://github.com/deeppavlov/assistant-base>`_
70+
2. Replace ``docker-compose.yml`` in the root of the repository and ``pipeline_conf.json`` in the ``/agent/`` subdirectory with the corresponding files from the `deepy_adv <https://github.com/deeppavlov/assistant-base/tree/main/assistant_dists/deepy_adv>`_ **Deepy Distribution**
7171
3. Clone the `Tutorial Notebook <https://colab.research.google.com/drive/1l6Fhj3rEVup0N-n9Jy5z_iA3b1W53V6m?usp=sharing>`_
7272
4. Change its ``intents`` based on your project needs with your custom **intents**
7373
5. Train the Intent Catcher model in your copy of the Tutorial Notebook
74-
6. Download and put saved data from your copy of the Tutorial Notebook into the `Intent Catcher <https://github.com/deeppavlovteam/assistant-base/tree/main/annotators/intent_catcher>`_
75-
7. [Optional] Unless you need a Chit-Chat skill remove `it <https://github.com/deeppavlovteam/assistant-base/tree/main/skills/program-y>`_ from at both the ``/agent/pipeline_conf.json`` and from ``docker-compose.yml``
74+
6. Download and put saved data from your copy of the Tutorial Notebook into the `Intent Catcher <https://github.com/deeppavlov/assistant-base/tree/main/annotators/intent_catcher>`_
75+
7. [Optional] Unless you need a Chit-Chat skill remove `it <https://github.com/deeppavlov/assistant-base/tree/main/skills/program-y>`_ from at both the ``/agent/pipeline_conf.json`` and from ``docker-compose.yml``
7676
8. Use ``docker-compose up --build`` command to build and run your DeepPavlov-based Multiskill AI Assistant
7777

7878
.. note::

docs/features/models/kbqa.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Advanced: Using Entity Linking and Wiki Parser As Standalone Services For KBQA
217217
------------------------------------------------------------------------------
218218
Default configuration for KBQA was designed to use all of the supporting models together as a part of the KBQA pipeline. However, there might be a case when you want to work with some of these models in addition to KBQA.
219219

220-
For example, you might want to use Entity Linking as an annotator in your `Deepy-based <https://github.com/deeppavlovteam/assistant-base>`_ multiskill AI Assistant. Or, you might want to use Wiki Parser component to directly run SPARQL queries against your copy of Wikidata. To support these usecase, starting with this release you can also deploy supporting models as standalone components.
220+
For example, you might want to use Entity Linking as an annotator in your `Deepy-based <https://github.com/deeppavlov/assistant-base>`_ multiskill AI Assistant. Or, you might want to use Wiki Parser component to directly run SPARQL queries against your copy of Wikidata. To support these usecase, starting with this release you can also deploy supporting models as standalone components.
221221

222222
Config :config:`kbqa_entity_linking <kbqa/kbqa_entity_linking.json>` can be used as service with the following command:
223223

docs/features/pretrained_vectors.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ Downloads
7070

7171
The models can be downloaded and run by configuration file or tensorflow hub module from:
7272

73-
+--------------------------------------------------------------------+---------------------------------------------+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
74-
| Description | Dataset parameters | Perplexity | Configuration file and tensorflow hub module |
75-
+====================================================================+=============================================+==================+=============================================================================================================================================================================================================================================+
76-
| ELMo on `Russian Wikipedia <https://ru.wikipedia.org/>`__ | lines = 1M, tokens = 386M, size = 5GB | 43.692 | `config_file <https://github.com/deeppavlovteam/DeepPavlov/blob/master/deeppavlov/configs/embedder/elmo_ru_wiki.json>`__, `module_spec <http://files.deeppavlov.ai/deeppavlov_data/elmo_ru-wiki_600k_steps.tar.gz>`__ |
77-
+--------------------------------------------------------------------+---------------------------------------------+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
78-
| ELMo on `Russian WMT News <http://www.statmt.org/>`__ | lines = 63M, tokens = 946M, size = 12GB | 49.876 | `config_file <https://github.com/deeppavlovteam/DeepPavlov/blob/master/deeppavlov/configs/embedder/elmo_ru_news.json>`__, `module_spec <http://files.deeppavlov.ai/deeppavlov_data/elmo_ru-news_wmt11-16_1.5M_steps.tar.gz>`__ |
79-
+--------------------------------------------------------------------+---------------------------------------------+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
80-
| ELMo on `Russian Twitter <https://twitter.com/>`__ | lines = 104M, tokens = 810M, size = 8.5GB | 94.145 | `config_file <https://github.com/deeppavlovteam/DeepPavlov/blob/master/deeppavlov/configs/embedder/elmo_ru_twitter.json>`__, `module_spec <http://files.deeppavlov.ai/deeppavlov_data/elmo_ru-twitter_2013-01_2018-04_600k_steps.tar.gz>`__ |
81-
+--------------------------------------------------------------------+---------------------------------------------+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
73+
+--------------------------------------------------------------------+---------------------------------------------+------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
74+
| Description | Dataset parameters | Perplexity | Configuration file and tensorflow hub module |
75+
+====================================================================+=============================================+==================+=========================================================================================================================================================================================================================================+
76+
| ELMo on `Russian Wikipedia <https://ru.wikipedia.org/>`__ | lines = 1M, tokens = 386M, size = 5GB | 43.692 | `config_file <https://github.com/deeppavlov/DeepPavlov/blob/master/deeppavlov/configs/embedder/elmo_ru_wiki.json>`__, `module_spec <http://files.deeppavlov.ai/deeppavlov_data/elmo_ru-wiki_600k_steps.tar.gz>`__ |
77+
+--------------------------------------------------------------------+---------------------------------------------+------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
78+
| ELMo on `Russian WMT News <http://www.statmt.org/>`__ | lines = 63M, tokens = 946M, size = 12GB | 49.876 | `config_file <https://github.com/deeppavlov/DeepPavlov/blob/master/deeppavlov/configs/embedder/elmo_ru_news.json>`__, `module_spec <http://files.deeppavlov.ai/deeppavlov_data/elmo_ru-news_wmt11-16_1.5M_steps.tar.gz>`__ |
79+
+--------------------------------------------------------------------+---------------------------------------------+------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
80+
| ELMo on `Russian Twitter <https://twitter.com/>`__ | lines = 104M, tokens = 810M, size = 8.5GB | 94.145 | `config_file <https://github.com/deeppavlov/DeepPavlov/blob/master/deeppavlov/configs/embedder/elmo_ru_twitter.json>`__, `module_spec <http://files.deeppavlov.ai/deeppavlov_data/elmo_ru-twitter_2013-01_2018-04_600k_steps.tar.gz>`__ |
81+
+--------------------------------------------------------------------+---------------------------------------------+------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
8282

8383
fastText
8484
--------

docs/features/skills/go_bot.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Tutorials
222222

223223
We encourage you to explore the tutorials below to get better understanding of how to build basic and more advanced goal-oriented skills with these RASA DSLs:
224224

225-
* `Original Tutorial Notebook Featuring Simple and DSTC2-based Skills <https://github.com/deeppavlovteam/DeepPavlov/blob/master/examples/gobot_md_yaml_configs_tutorial.ipynb>`_
225+
* `Original Tutorial Notebook Featuring Simple and DSTC2-based Skills <https://github.com/deeppavlov/DeepPavlov/blob/master/examples/gobot_md_yaml_configs_tutorial.ipynb>`_
226226

227227
* `Tutorial Notebook Featuring Harvesters Maintenance Go-Bot Skill from Deepy 3000 Demo <https://colab.research.google.com/drive/1BdTnDsytEABOU7RbNRQqIVE-rBHOv0kM?usp=sharing>`_
228228

@@ -232,13 +232,13 @@ How Do I: Integrate Go-Bot-based Goal-Oriented Skill into DeepPavlov Deepy
232232

233233
To integrate your Go-Bot-based goal-oriented skill into your Multiskill AI Assistant built using DeepPavlov Conversational AI Stack, follow the following instructions:
234234

235-
1. Clone `Deepy repository <https://github.com/deeppavlovteam/assistant-base>`_
236-
2. Replace ``docker-compose.yml`` in the root of the repository and ``pipeline_conf.json`` in the ``/agent/`` subdirectory with the corresponding files from the `deepy_gobot_base <https://github.com/deeppavlovteam/assistant-base/tree/main/assistant_dists/deepy_gobot_base>`_ **Deepy Distribution**
235+
1. Clone `Deepy repository <https://github.com/deeppavlov/assistant-base>`_
236+
2. Replace ``docker-compose.yml`` in the root of the repository and ``pipeline_conf.json`` in the ``/agent/`` subdirectory with the corresponding files from the `deepy_gobot_base <https://github.com/deeppavlov/assistant-base/tree/main/assistant_dists/deepy_gobot_base>`_ **Deepy Distribution**
237237
3. Clone the second `Tutorial Notebook <https://colab.research.google.com/drive/1BdTnDsytEABOU7RbNRQqIVE-rBHOv0kM?usp=sharing>`_
238238
4. Change its ``domain.yml``, ``nlu.md``, and ``stories.md`` based on your project needs with your custom **intents**, **slots**, **forms**, and write your own **stories**
239239
5. Train the go-bot model in your copy of the Tutorial Notebook
240-
6. Download and put saved data from your copy of the Tutorial Notebook into the `Harvesters Maintenance Go-Bot Skill <https://github.com/deeppavlovteam/assistant-base/tree/main/skills/harvesters_maintenance_gobot_skill>`_
241-
7. [Optional] Unless you need a Chit-Chat skill remove `it <https://github.com/deeppavlovteam/assistant-base/tree/main/skills/program-y>`_ from at both the ``/agent/pipeline_conf.json`` and from ``docker-compose.yml``
240+
6. Download and put saved data from your copy of the Tutorial Notebook into the `Harvesters Maintenance Go-Bot Skill <https://github.com/deeppavlov/assistant-base/tree/main/skills/harvesters_maintenance_gobot_skill>`_
241+
7. [Optional] Unless you need a Chit-Chat skill remove `it <https://github.com/deeppavlov/assistant-base/tree/main/skills/program-y>`_ from at both the ``/agent/pipeline_conf.json`` and from ``docker-compose.yml``
242242
8. Use ``docker-compose up --build`` command to build and run your DeepPavlov-based Multiskill AI Assistant
243243

244244
.. note::
@@ -252,7 +252,7 @@ Tutorials
252252

253253
Follow this tutorial to experiment with the Form-Filling functionality in Go-Bot-based goal-oriented skills built using RASA DSLs (v1):
254254

255-
* `Tutorial Notebook Featuring Basic Form-Filling <https://github.com/deeppavlovteam/DeepPavlov/blob/feature/gobot_naive_formfilling/examples/gobot_formfilling_tutorial.ipynb>`_
255+
* `Tutorial Notebook Featuring Basic Form-Filling <https://github.com/deeppavlov/DeepPavlov/blob/feature/gobot_naive_formfilling/examples/gobot_formfilling_tutorial.ipynb>`_
256256

257257

258258
DSTC2 Format Support

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ def read_requirements():
4040
def readme():
4141
with open(os.path.join(__location__, 'README.md'), encoding='utf8') as f:
4242
text = f.read()
43-
text = re.sub(r']\((?!https?://)', r'](https://github.com/deeppavlovteam/DeepPavlov/blob/master/', text)
44-
text = re.sub(r'\ssrc="(?!https?://)', r' src="https://raw.githubusercontent.com/deeppavlovteam/DeepPavlov/master/', text)
43+
text = re.sub(r']\((?!https?://)', r'](https://github.com/deeppavlov/DeepPavlov/blob/master/', text)
44+
text = re.sub(r'\ssrc="(?!https?://)', r' src="https://raw.githubusercontent.com/deeppavlov/DeepPavlov/master/', text)
4545
return text
4646

4747

@@ -56,8 +56,8 @@ def readme():
5656
author=__author__,
5757
author_email=__email__,
5858
license=__license__,
59-
url='https://github.com/deeppavlovteam/DeepPavlov',
60-
download_url=f'https://github.com/deeppavlovteam/DeepPavlov/archive/{__version__}.tar.gz',
59+
url='https://github.com/deeppavlov/DeepPavlov',
60+
download_url=f'https://github.com/deeppavlov/DeepPavlov/archive/{__version__}.tar.gz',
6161
keywords=__keywords__,
6262
include_package_data=True,
6363
extras_require={

0 commit comments

Comments
 (0)