Skip to content

Commit

Permalink
Release 0.9.1 (#1188)
Browse files Browse the repository at this point in the history
- Fix requirements for ASR and TTS configs
  • Loading branch information
yoptar committed Apr 27, 2020
2 parents 5882228 + 5f5bbbd commit efb8f94
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deeppavlov/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def evaluate_model(config: [str, Path, dict], download: bool = False, recursive:
except ImportError:
'Assuming that requirements are not yet installed'

__version__ = '0.9.0'
__version__ = '0.9.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
1 change: 1 addition & 0 deletions deeppavlov/configs/nemo/asr.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"NEMO_PATH": "~/.deeppavlov/models/nemo"
},
"requirements": [
"{DEEPPAVLOV_PATH}/requirements/pytorch.txt",
"{DEEPPAVLOV_PATH}/requirements/nemo-asr.txt"
],
"download": [
Expand Down
1 change: 1 addition & 0 deletions deeppavlov/configs/nemo/asr_tts.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"TTS_PATH": "{NEMO_PATH}/tacotron2_waveglow"
},
"requirements": [
"{DEEPPAVLOV_PATH}/requirements/pytorch.txt",
"{DEEPPAVLOV_PATH}/requirements/nemo-asr.txt",
"{DEEPPAVLOV_PATH}/requirements/nemo-tts.txt"
],
Expand Down
1 change: 1 addition & 0 deletions deeppavlov/configs/nemo/tts.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"TTS_PATH": "{NEMO_PATH}/tacotron2_waveglow"
},
"requirements": [
"{DEEPPAVLOV_PATH}/requirements/pytorch.txt",
"{DEEPPAVLOV_PATH}/requirements/nemo-asr.txt",
"{DEEPPAVLOV_PATH}/requirements/nemo-tts.txt"
],
Expand Down
3 changes: 2 additions & 1 deletion deeppavlov/requirements/pytorch.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
torch==1.4.0
torch==1.5.0
torchvision==0.6.0
1 change: 1 addition & 0 deletions tests/test_configs/nemo/tts2asr_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"TTS_PATH": "{NEMO_PATH}/tacotron2_waveglow"
},
"requirements": [
"{DEEPPAVLOV_PATH}/requirements/pytorch.txt",
"{DEEPPAVLOV_PATH}/requirements/nemo-asr.txt",
"{DEEPPAVLOV_PATH}/requirements/nemo-tts.txt"
],
Expand Down

0 comments on commit efb8f94

Please sign in to comment.