Problems found when running Tasnet #659
-
path:asteroid/egs/whamr/TasNet/local/prepare_data.sh wav_dir=tmp . utils/parse_options.sh Download WHAM noisesmkdir -p $out_dir If downloading stalls for more than 20s, relaunch from previous state.#wget -c --tries=0 --read-timeout=20 https://storage.googleapis.com/whisper-public/wham_noise.zip -P $out_dir #echo "Download WHAMR scripts into $out_dir" #wait #echo "Unzip WHAM noises into $out_dir" cd $out_dir/whamr_scripts |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
I don't know, what doesn't work ? |
Beta Was this translation helpful? Give feedback.
-
In addition, I also tried to run two other models on colab. But have encountered problems.
I set the path of storage_dir in run.sh and start from stage 0.
I found that the path to $wav_dir was not recognized, I solved it by putting wav_dir=tmp after mkdir -p $out_dir.
I found out it was a file path issue. I changed the paths of --wsj0-root and other parameters to absolute paths to solve this error.
I checked my path /content/asteroid/egs/wham/ConvTasNet/tmp and wsj0/si_tr_s/40n/40na010x.wav does not exist. Is this caused by the fact that I don't have the wsj0 dataset? I tried a few things, but couldn't solve the problem. |
Beta Was this translation helpful? Give feedback.
In addition, I also tried to run two other models on colab. But have encountered problems.
First:
I set the path of storage_dir in run.sh and start from stage 0.
But when run to here: $python_path create_wham_from_scratch.py
I first solved this error:
I found that the path to $wav_dir was not recognized, I solved it by putting wav_dir=tmp after mkdir -p $out_dir.
Then after running into create_wham_fro…