Wangyou Zhang
Wangyou Zhang
I also observe that this file `LibriSpeech/train-other-500/551/129024/1618-129024.alignment.txt` in the downloaded zip is incomplete: > The last line is not enclosed with `"`. ``` 551-129024-0000 ",CHAPTER,SEVENTEEN,,HOW,CAPTAIN,DOBBIN,,BOUGHT,A,PIANO,,IF,THERE,IS,,ANY,EXHIBITION,IN,,ALL,VANITY,FAIR,WHICH,SATIRE,AND,SENTIMENT,CAN,VISIT,ARM,IN,ARM,TOGETHER,,WHERE,YOU,LIGHT,ON,THE,STRANGEST,CONTRASTS," "0.160,0.680,1.430,2.090,2.310,2.850,3.470,3.520,3.800,3.840,4.490,6.130,6.310,6.480,6.600,6.670,6.960,7.570,7.750,7.790,8.060,8.500,8.840,9.110,9.670,9.820,10.300,10.450,10.840,11.140,11.240,11.530,12.100,12.310,12.640,12.820,13.250,13.410,13.520,14.270,14.910,15.005" 551-129024-0001 ",LAUGHABLE,AND,TEARFUL,,WHERE,YOU,MAY,BE,GENTLE,AND,PATHETIC,,OR,SAVAGE,AND,CYNICAL,,WITH,PERFECT,PROPRIETY,,IT,IS,AT,ONE,OF,THOSE,PUBLIC,ASSEMBLIES,,A,CROWD,OF,WHICH,ARE,ADVERTISED,EVERY,DAY,IN,THE,LAST,PAGE,OF,THE,TIMES,NEWSPAPER," "0.070,0.790,1.020,1.600,1.870,2.150,2.320,2.500,2.660,3.150,3.240,3.860,4.070,4.280,4.730,4.890,5.500,5.800,6.050,6.450,7.320,7.980,8.150,8.310,8.460,8.640,8.710,8.930,9.360,10.160,10.470,10.590,10.950,11.030,11.230,11.340,12.030,12.320,12.580,12.660,12.750,13.080,13.400,13.490,13.590,14.000,14.670,14.89" 551-129024-0002...
I found the reason. I installed pyrirgen by following the link recommended in https://github.com/ConferencingSpeech/ConferencingSpeech2021/blob/master/ReadMe.md#requirements. But the simulation code is not built based on the latest version of https://github.com/phecda-xu/RIR-Generator. So the...
> May I ask how to use the compiled library "pyrirgen.cpython-37m-x86_64-linux-gnu.so"? Thanks in advance. Sorry for my late reply. I remember it was simply: > Just add the directory of...
> Same issue here. > Actually, I found the `ytid` of selected AudioSet samples in `selected_list` are all from `balanced_train` and `eval_segments` of original AudioSet, and in my case, there...
> The youtube video is dynamic, and we cannot fully avoid the issue... > > Anyway, I reported this issue to the main organizers already. > I recommend you to...
This sample `0N0C0Wbe6AI_30.000.wav` in https://github.com/ConferencingSpeech/ConferencingSpeech2021/blob/49d3b2fc47/selected_lists/train/audioset.name#L22677 seems to be wrong? Because the video `https://www.youtube.com/watch?v=0N0C0Wbe6AI` is only 25-sec long.
Could you format the Python scripts with `black`, `flake8`, and `isort` to resolve the CI test errors? > ```bash > python -m pip install flake8-docstrings flake8 black isort > >...
> Just want to make sure. So I need to run these from the root directory, through all pieces of code in the package? To be precise, you need to...
@simpleoier It seems we should move [these lines](https://github.com/espnet/espnet/blob/master/egs2/TEMPLATE/enh_asr1/enh_asr.sh#L796-L801) inside some stage, so that no error will occur if `--stage 1 --stop_stage 1` is specified. ```bash if ! "${skip_train}"; then if...
BTW, it might be better to replace the argument [`--init_param` in stage 11](https://github.com/espnet/espnet/blob/master/egs2/TEMPLATE/enh_asr1/enh_asr.sh#L1340) as follows to allow specifying this argument either in command line or the yaml file: ```diff #...