Skip to content

Commit

Permalink
update branch
Browse files Browse the repository at this point in the history
Signed-off-by: ericharper <complex451@gmail.com>
  • Loading branch information
ericharper committed Sep 14, 2022
1 parent f1825bc commit 6d02e3a
Show file tree
Hide file tree
Showing 63 changed files with 204 additions and 204 deletions.
276 changes: 138 additions & 138 deletions Jenkinsfile

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nemo/package_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
MAJOR = 1
MINOR = 12
PATCH = 0
PRE_RELEASE = 'rc0'
PRE_RELEASE = ''

# Use the following formatting: (major, minor, patch, pre-release)
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE)
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements_lightning.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytorch-lightning>=1.7.0
pytorch-lightning>=1.7.0,<=1.7.6
torchmetrics>=0.4.1rc0
transformers>=4.0.1
webdataset>=0.1.48,<=0.1.62
Expand Down
2 changes: 1 addition & 1 deletion tutorials/00_NeMo_Primer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"!pip install unidecode\n",
"\n",
"# ## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"## Install TorchAudio\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/01_NeMo_Models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"!pip install unidecode\n",
"\n",
"# ## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"## Install TorchAudio\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/02_NeMo_Adapters.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"!pip install unidecode\n",
"\n",
"# ## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"## Grab the config we'll use in this example\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/AudioTranslationSample.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"outputs": [],
"source": [
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]"
]
},
Expand Down
2 changes: 1 addition & 1 deletion tutorials/Publish_NeMo_Model_On_Hugging_Face_Hub.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"!pip install unidecode\n",
"\n",
"### Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]"
]
},
Expand Down
2 changes: 1 addition & 1 deletion tutorials/VoiceSwapSample.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"outputs": [],
"source": [
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n"
]
},
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/ASR_CTC_Language_Finetuning.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"\"\"\"\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/ASR_for_telephony_speech.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"## Grab the config we'll use in this example\n",
Expand Down
4 changes: 2 additions & 2 deletions tutorials/asr/ASR_with_NeMo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"\"\"\"\n",
Expand Down Expand Up @@ -586,7 +586,7 @@
"\n",
"if not os.path.exists(config_path):\n",
" # Grab the config we'll use in this example\n",
" BRANCH = 'main'\n",
" BRANCH = 'r1.12.0'\n",
" !mkdir configs\n",
" !wget -P configs/ https://raw.githubusercontent.com/NVIDIA/NeMo/$BRANCH/examples/asr/conf/config.yaml\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/ASR_with_Subword_Tokenization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"## Grab the config we'll use in this example\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/ASR_with_Transducers.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"## Grab the config we'll use in this example\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Buffered_Transducer_Inference.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"# Update numba and restart (this is required to update internal numba version of Colab)\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"# Update numba and restart (this is required to update internal numba version of Colab)\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Intro_to_Transducers.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]"
],
"execution_count": null,
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Multilang_ASR.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"\n",
"## Install NeMo\n",
"## We are using the main branch but you might want to adjust that too\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"\"\"\"\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Offline_ASR.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"id": "I9eIxAyKHREB"
},
"source": [
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"try:\n",
" # Import NeMo Speech Recognition collection\n",
" import nemo.collections.asr as nemo_asr\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Offline_ASR_with_VAD_for_CTC_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"!pip install wget\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"\"\"\"\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Online_ASR_Microphone_Demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"!pip install pyaudio\n",
"\n",
"# ## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[asr]\n",
"\n",
"## Install TorchAudio\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Online_Noise_Augmentation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"!pip install unidecode\n",
"\n",
"# ## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[asr]\n",
"\n",
"## Install TorchAudio\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Online_Offline_Microphone_VAD_Demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"!pip install pyaudio\n",
"\n",
"# ## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[asr]\n",
"\n",
"## Install TorchAudio\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Online_Offline_Speech_Commands_Demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"!pip install pyaudio\n",
"\n",
"# ## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[asr]\n",
"\n",
"## Install TorchAudio\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Self_Supervised_Pre_Training.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"\"\"\"\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Speech_Commands.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"!pip install unidecode\n",
"\n",
"# ## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[asr]\n",
"\n",
"## Install TorchAudio\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Streaming_ASR.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"## Grab the config we'll use in this example\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/Voice_Activity_Detection.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"!pip install unidecode\n",
"\n",
"# ## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[asr]\n",
"\n",
"## Install TorchAudio\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/asr/asr_adapters/ASR_with_Adapters.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"!pip install matplotlib>=3.3.2\n",
"\n",
"## Install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"## Grab the config we'll use in this example\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"# If you're using Google Colab and not running locally, run this cell\n",
"\n",
"# install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[nlp]"
]
},
Expand Down
4 changes: 2 additions & 2 deletions tutorials/nlp/02_NLP_Tokenizers.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"outputs": [],
"source": [
"BRANCH = 'main'"
"BRANCH = 'r1.12.0'"
]
},
{
Expand All @@ -35,7 +35,7 @@
"# If you're using Google Colab and not running locally, run this cell\n",
"\n",
"# install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[nlp]"
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
"\n",
"## Install NeMo\n",
"\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"!pip uninstall -y sacrebleu\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/Dialogue.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"outputs": [],
"source": [
"import os \n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!apt-get update && apt-get install -y libsndfile1 ffmpeg\n",
"!git clone https://github.com/NVIDIA/NeMo --branch $BRANCH\n",
"os.chdir('NeMo')\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/Entity_Linking_Medical.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"\"\"\"\n",
"\n",
"## Install NeMo if using google collab or if its not installed locally\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]"
]
},
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/GLUE_Benchmark.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"# If you're using Google Colab and not running locally, run this cell\n",
"\n",
"# install NeMo\n",
"BRANCH = 'main'\n!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[nlp]\n"
"BRANCH = 'r1.12.0'\n!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[nlp]\n"
],
"execution_count": null,
"outputs": []
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/Joint_Intent_and_Slot_Classification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"# If you're using Google Colab and not running locally, run this cell\n",
"\n",
"# install NeMo\n",
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[nlp]"
]
},
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/MegatronBert_export.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"metadata": {},
"outputs": [],
"source": [
"BRANCH='main'"
"BRANCH='r1.12.0'"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"metadata": {},
"outputs": [],
"source": [
"BRANCH = 'main'\n",
"BRANCH = 'r1.12.0'\n",
"DATA_PATH='.'\n",
"TRANSACTIONS=DATA_PATH+'/card_transaction.v1.csv'\n",
"#CHECKPOINTS='/chk_points'\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/Multitask_Prompt_and_PTuning.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"metadata": {},
"outputs": [],
"source": [
"BRANCH='main'"
"BRANCH='r1.12.0'"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/Non_English_Downstream_Tasks_(NER).ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"outputs": [],
"source": [
"BRANCH = 'main'"
"BRANCH = 'r1.12.0'"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/Punctuation_and_Capitalization.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"metadata": {},
"outputs": [],
"source": [
"BRANCH = 'main'"
"BRANCH = 'r1.12.0'"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/Question_Answering.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
},
"outputs": [],
"source": [
"BRANCH = 'main'"
"BRANCH = 'r1.12.0'"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tutorials/nlp/Relation_Extraction-BioMegatron.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"metadata": {},
"outputs": [],
"source": [
"BRANCH = 'main'"
"BRANCH = 'r1.12.0'"
]
},
{
Expand Down
Loading

0 comments on commit 6d02e3a

Please sign in to comment.