Skip to content

Commit 587c62a

Browse files
authored
[BE] Do not download audio assets (#2584)
Followup after #2154 that moved audio tutorials to another repo - Do not install `torchaudio` - Do not download `UrbanSound8K.tar.gz`, which is 5+Gb
1 parent 812986c commit 587c62a

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,6 @@ download:
6161
wget -nv -N https://s3.amazonaws.com/pytorch-tutorial-assets/cornell_movie_dialogs_corpus_v2.zip -P $(DATADIR)
6262
unzip $(ZIPOPTS) $(DATADIR)/cornell_movie_dialogs_corpus_v2.zip -d beginner_source/data/
6363

64-
# Download dataset for beginner_source/audio_classifier_tutorial.py
65-
wget -nv -N https://s3.amazonaws.com/pytorch-tutorial-assets/UrbanSound8K.tar.gz -P $(DATADIR)
66-
tar $(TAROPTS) -xzf $(DATADIR)/UrbanSound8K.tar.gz -C ./beginner_source/data/
67-
68-
6964
# Download model for advanced_source/dynamic_quantization_tutorial.py
7065
wget -nv -N https://s3.amazonaws.com/pytorch-tutorial-assets/word_language_model_quantize.pth -P $(DATADIR)
7166
cp $(DATADIR)/word_language_model_quantize.pth advanced_source/data/word_language_model_quantize.pth

requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ librosa
1313
torch
1414
torchvision
1515
torchtext
16-
torchaudio
1716
torchdata
1817
networkx
1918
PyHamcrest
@@ -32,7 +31,6 @@ nbformat>=4.2.0
3231
datasets
3332
transformers
3433
torchmultimodal-nightly # needs to be updated to stable as soon as it's avaialable
35-
deep_phonemizer==0.0.17
3634

3735
importlib-metadata==6.8.0
3836

0 commit comments

Comments
 (0)