Skip to content

Commit

Permalink
Release 0.3.1 (#867)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoptar committed Jun 3, 2019
2 parents 2c83002 + 0214bd4 commit 7c22c3e
Show file tree
Hide file tree
Showing 23 changed files with 241 additions and 588 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ DeepPavlov is an open-source conversational AI library built on [TensorFlow](htt
* development of production ready chat-bots and complex conversational systems,
* NLP and dialog systems research.

### Demo

Demo of selected features is available at [demo.ipavlov.ai](https://demo.ipavlov.ai/)


### Breaking changes in version 0.3.0!
- component option `fit_on_batch` in configuration files was removed and replaced with adaptive usage of the `fit_on` parameter.

### Breaking changes in version 0.2.0!
- `utils` module was moved from repository root in to `deeppavlov` module
Expand Down Expand Up @@ -115,10 +122,6 @@ print(HelloBot(['Hello!', 'Boo...', 'Bye.']))
pip install deeppavlov
```

# Demo

Demo of selected features is available at [demo.ipavlov.ai](https://demo.ipavlov.ai/)

# Quick start

To use our pre-trained models, you should first install their requirements:
Expand Down Expand Up @@ -177,7 +180,7 @@ Here is our [DockerHub repository](https://hub.docker.com/u/deeppavlov/) with im

# Tutorials

Jupyter notebooks and videos explaining how to use DeepPalov for different tasks can be found in [/examples/](examples)
Jupyter notebooks explaining how to use DeepPalov for different tasks can be found in [/examples/](https://github.com/deepmipt/DeepPavlov/tree/master/examples)

# License

Expand Down
2 changes: 1 addition & 1 deletion deeppavlov/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def evaluate_model(config: [str, Path, dict], download: bool = False, recursive:
except ImportError:
'Assuming that requirements are not yet installed'

__version__ = '0.3.0'
__version__ = '0.3.1'
__author__ = 'Neural Networks and Deep Learning lab, MIPT'
__description__ = 'An open source library for building end-to-end dialog systems and training chatbots.'
__keywords__ = ['NLP', 'NER', 'SQUAD', 'Intents', 'Chatbot']
Expand Down
2 changes: 1 addition & 1 deletion deeppavlov/configs/ner/ner_conll2003_bert.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
},
"download": [
{
"url": "http://files.deeppavlov.ai/deeppavlov_data/ner_conll2003_bert.tar.gz",
"url": "http://files.deeppavlov.ai/deeppavlov_data/ner_conll2003_bert_v1.tar.gz",
"subdir": "{MODELS_PATH}"
},
{
Expand Down
133 changes: 0 additions & 133 deletions deeppavlov/configs/ner/ner_conll2003_bert_ctx.json

This file was deleted.

127 changes: 0 additions & 127 deletions deeppavlov/configs/ner/ner_conll2003_bert_ctx_di.json

This file was deleted.

0 comments on commit 7c22c3e

Please sign in to comment.