Skip to content

Commit ef1253c

Browse files
committed
merge master
2 parents b3a0341 + 27ad09e commit ef1253c

File tree

5 files changed

+16
-20
lines changed

5 files changed

+16
-20
lines changed

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/deepmipt/DeepPavlov/blob/master/LICENSE)
1+
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
22
![Python 3.6, 3.7, 3.8, 3.9](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-green.svg)
33
[![Downloads](https://pepy.tech/badge/deeppavlov)](https://pepy.tech/project/deeppavlov)
44
<img align="right" height="27%" width="27%" src="docs/_static/deeppavlov_logo.png"/>
@@ -15,10 +15,10 @@ DeepPavlov is designed for
1515
* Documentation [*docs.deeppavlov.ai*](http://docs.deeppavlov.ai/)
1616
* Model List [*docs:features/*](http://docs.deeppavlov.ai/en/master/features/overview.html)
1717
* Contribution Guide [*docs:contribution_guide/*](http://docs.deeppavlov.ai/en/master/devguides/contribution_guide.html)
18-
* Issues [*github/issues/*](https://github.com/deepmipt/DeepPavlov/issues)
18+
* Issues [*github/issues/*](https://github.com/deeppavlov/DeepPavlov/issues)
1919
* Forum [*forum.deeppavlov.ai*](https://forum.deeppavlov.ai/)
2020
* Blogs [*medium.com/deeppavlov*](https://medium.com/deeppavlov)
21-
* Tutorials [*examples/*](https://github.com/deepmipt/DeepPavlov/tree/master/examples) and [extended colab tutorials](https://github.com/deepmipt/dp_tutorials)
21+
* Tutorials [*examples/*](examples) and [extended colab tutorials](https://github.com/deeppavlov/dp_tutorials)
2222
* Docker Hub [*hub.docker.com/u/deeppavlov/*](https://hub.docker.com/u/deeppavlov/)
2323
* Docker Images Documentation [*docs:docker-images/*](http://docs.deeppavlov.ai/en/master/intro/installation.html#docker-images)
2424

@@ -194,7 +194,3 @@ model = evaluate_model(<config_path>, download=True)
194194
DeepPavlov is Apache 2.0 - licensed.
195195

196196
##
197-
198-
<p align="center">
199-
<img src="docs/_static/ipavlov_footer.png" width="50%" height="50%"/>
200-
</p>

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@
206206
'udapi', 'whapi']
207207

208208
extlinks = {
209-
'config': (f'https://github.com/deepmipt/DeepPavlov/blob/{release}/deeppavlov/configs/%s', None),
210-
'dp_file': (f'https://github.com/deepmipt/DeepPavlov/blob/{release}/%s', None)
209+
'config': (f'https://github.com/deeppavlov/DeepPavlov/blob/{release}/deeppavlov/configs/%s', None),
210+
'dp_file': (f'https://github.com/deeppavlov/DeepPavlov/blob/{release}/%s', None)
211211
}
212212

213213
# -- 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/deepmipt/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/deepmipt/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/deepmipt/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
@@ -84,7 +84,7 @@ How to contribute:
8484
#. We ask you to **add some tests**. This will help us maintain the
8585
framework, and this will help users to understand the feature you introduce.
8686
Examples of implemented tests are available in `tests/
87-
<https://github.com/deepmipt/DeepPavlov/tree/dev/tests>`_
87+
<https://github.com/deeppavlov/DeepPavlov/tree/dev/tests>`_
8888
directory.
8989

9090
#. Please, **update the documentation**, if you committed significant changes
@@ -109,7 +109,7 @@ How to contribute:
109109
Follow the `semantic commit notation <https://seesparkbox.com/foundry/semantic_commit_messages>`_
110110
for the name of the commit.
111111

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

docs/features/models/kbqa.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ Advanced: Using Wiki Parser As Standalone Service For KBQA
192192
------------------------------------------------------------------------------
193193
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.
194194

195-
For example, 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.
196-
195+
For example, 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.
196+
197197
Config :config:`wiki_parser <kbqa/wiki_parser.json>` can be used as service with the following command:
198198

199199
.. code:: bash

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/deepmipt/DeepPavlov/blob/master/', text)
44-
text = re.sub(r'\ssrc="(?!https?://)', r' src="https://raw.githubusercontent.com/deepmipt/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/deepmipt/DeepPavlov',
60-
download_url=f'https://github.com/deepmipt/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)