db06038d90d4af330086c6c95f0249bad865f73c,corpus/librispeech.py,LibriTextDataset,__init__,#LibriTextDataset#Any#Any#Any#Any#,55

Before Change


        
        // Read text
        text = Parallel(n_jobs=-1)(delayed(read_text)(str(f)) for f in file_list)
        text = Parallel(n_jobs=-1)(delayed(tokenizer.encode)(txt) for txt in text)

        // Read text from additional source
        for s in read_txt_src:
            with open(join(path,s),"r") as txt_file:

After Change


        // Read text
        text = Parallel(n_jobs=READ_FILE_THREADS)(delayed(read_text)(str(f)) for f in file_list)
        //text = Parallel(n_jobs=-1)(delayed(tokenizer.encode)(txt) for txt in text)
        text = [tokenizer.encode(txt) for txt in text]

        // Read text from additional source
        for s in read_txt_src:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: Alexander-H-Liu/End-to-end-ASR-Pytorch
Commit Name: db06038d90d4af330086c6c95f0249bad865f73c
Time: 2019-08-20
Author: alexliu36@gmail.com
File Name: corpus/librispeech.py
Class Name: LibriTextDataset
Method Name: __init__


Project Name: EpistasisLab/scikit-rebate
Commit Name: 971719830d589eba66434ddabfc62c1a689be677
Time: 2017-04-07
Author: weixuanf@upenn.edu
File Name: skrebate/relieff.py
Class Name: ReliefF
Method Name: _run_algorithm


Project Name: pymc-devs/pymc3
Commit Name: 72e4750366e3cfb1ebd9f18d4d54ad1f49380928
Time: 2017-10-17
Author: aseyboldt@users.noreply.github.com
File Name: pymc3/sampling.py
Class Name:
Method Name: _mp_sample