Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tutorials/asr/Multilang_ASR.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@
"!pip install matplotlib>=3.3.2\n",
"# this is needed for RNNT loss\n",
"!pip install --upgrade numba\n",
"!pip install datasets==2.21.0 # downgrading to 2.21.0 because latest version (3.0.0) has some issues\n",
"\n",
"# this is needed to pre-process MCV Spanish dataset, which contains mp3 files\n",
"!apt-get install -y sox libsox-fmt-mp3\n",
Expand All @@ -108,6 +107,8 @@
"BRANCH = 'r2.5.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"!pip install datasets==2.21.0 # downgrading to 2.21.0 because latest version (4.0.0) has some incompatibility issues\n",
"\n",
"\"\"\"\n",
"Remember to restart the runtime for the kernel to pick up any upgraded packages (e.g. matplotlib)!\n",
"Alternatively, you can uncomment the exit() below to crash and restart the kernel, in the case\n",
Expand Down
5 changes: 4 additions & 1 deletion tutorials/asr/Transducers_with_HF_Datasets.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
"\n",
"## Install NeMo\n",
"BRANCH = 'r2.5.0'\n",
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n"
"!python -m pip install git+https://github.com/NVIDIA/NeMo.git@$BRANCH#egg=nemo_toolkit[all]\n",
"\n",
"!pip install --upgrade datasets==3.4.0 # downgrading to 3.4.0 because latest version (4.0.0) has some issues\n",
"\n"
]
},
{
Expand Down
Loading