-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Export parameters propagated, requirements enforced. (#1096)
* Propagating onnx.export() parameters; requiring torch>=1.6 * Adding all requirements install for Dockerfile and reinstall.sh, moving to 20.08 base * Bumping megatron-lm version Signed-off-by: Boris Fomitchev <[email protected]> Co-authored-by: Oleksii Kuchaiev <[email protected]>
- Loading branch information
Showing
6 changed files
with
27 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
PIP=pip | ||
|
||
echo 'Uninstalling stuff' | ||
pip uninstall -y nemo_toolkit | ||
${PIP} uninstall -y nemo_toolkit | ||
|
||
# Kept for legacy purposes | ||
pip uninstall -y nemo_asr | ||
pip uninstall -y nemo_nlp | ||
pip uninstall -y nemo_tts | ||
pip uninstall -y nemo_simple_gan | ||
${PIP} uninstall -y nemo_asr | ||
${PIP} uninstall -y nemo_nlp | ||
${PIP} uninstall -y nemo_tts | ||
${PIP} uninstall -y nemo_simple_gan | ||
|
||
${PIP} install -U setuptools | ||
|
||
for f in requirements/*.txt; do ${PIP} install ${PIP_FLAGS}--disable-pip-version-check --no-cache-dir -r $f; done | ||
|
||
echo 'Installing stuff' | ||
pip install -e ".[all]" | ||
${PIP} install -e ".[all]" | ||
|
||
echo 'All done!' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,5 @@ numpy | |
tqdm>=4.41.0 | ||
rapidfuzz | ||
gdown | ||
megatron-lm>=1.1.3 | ||
megatron-lm>=1.1.4 | ||
inflect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters