├── .gitignore ├── INSTALL.md ├── INSTALL_DEEPSPEECH.md ├── README.md ├── data_creation ├── 1_create_recording_list.py ├── 2_record.py ├── 3_create_training_set.sh ├── VoxForgeDict ├── commands-core.csv ├── commands.csv ├── create_lang_files.py ├── create_test_train.py ├── find_short_commands.py └── jump_recording_list.txt ├── debug.sh ├── main ├── __init__.py ├── aspire_decode.sh ├── decode │ ├── data │ ├── model │ └── scripts │ │ └── int2sym.pl ├── deepspeech.sh ├── emacs_functions.el ├── kaldi_decode.sh ├── layouts │ ├── workspace-1.json │ └── workspace-2.json ├── parser │ ├── .gitignore │ ├── __init__.py │ ├── dynamic_rules.json │ ├── implementation.py │ ├── parser.py │ ├── static_rules.json │ └── variables.json ├── path.sh ├── record_decode.py └── tests │ ├── sample_dynamic_rules.py │ ├── sample_most_freq_live_recordings.py │ ├── sample_static_based_on_recordings.py │ ├── sample_static_live_recordings.py │ ├── sample_static_rules.py │ └── unittest_playUID.py ├── parse_log ├── error_log ├── log ├── log.backup ├── log~ ├── parse_counter.txt └── parse_log.py ├── setup.sh └── training ├── cmd.sh ├── conf ├── decode.config └── mfcc.conf ├── data ├── decode ├── data │ ├── .backup │ │ ├── cmvn.scp │ │ ├── feats.scp │ │ ├── spk2gender │ │ ├── spk2utt │ │ ├── text │ │ ├── utt2spk │ │ └── wav.scp │ ├── 00001_xxxx01.wav │ ├── cmvn.ark │ ├── cmvn.scp │ ├── delta_mfcc.ark │ ├── delta_mfcc.scp │ ├── feats.ark │ ├── feats.scp │ ├── spk2gender │ ├── spk2utt │ ├── text │ ├── utt2spk │ └── wav.scp ├── mfcc │ ├── log │ │ ├── make_mfcc_data.1.log │ │ └── wav_data.1.scp │ ├── raw_mfcc_data.1.ark │ └── raw_mfcc_data.1.scp ├── model │ ├── 35.mdl │ ├── 35.occs │ ├── ali.1.gz │ ├── cmvn_opts │ ├── fsts.1.gz │ ├── graph │ │ ├── HCLG.fst │ │ ├── disambig_tid.int │ │ ├── num_pdfs │ │ ├── phones.txt │ │ ├── phones │ │ │ ├── align_lexicon.int │ │ │ ├── align_lexicon.txt │ │ │ ├── disambig.int │ │ │ ├── disambig.txt │ │ │ ├── optional_silence.csl │ │ │ ├── optional_silence.int │ │ │ ├── optional_silence.txt │ │ │ ├── silence.csl │ │ │ ├── word_boundary.int │ │ │ └── word_boundary.txt │ │ └── words.txt │ ├── num_jobs │ ├── phones.txt │ ├── questions.int │ ├── questions.qst │ └── tree ├── output │ ├── decode_result.txt │ ├── lat.1.gz │ ├── num_jobs │ └── scoring │ │ ├── LMWT.tra │ │ └── test_filt.txt ├── record_decode.py └── scripts │ ├── compute_cmvn_stats.sh │ └── make_mfcc.sh ├── lexicon.txt ├── local ├── score.sh └── score_GMM.sh ├── path.sh ├── path.sh~ ├── results └── num_jobs ├── run.sh ├── run.sh~ ├── steps └── utils /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/INSTALL.md -------------------------------------------------------------------------------- /INSTALL_DEEPSPEECH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/INSTALL_DEEPSPEECH.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/README.md -------------------------------------------------------------------------------- /data_creation/1_create_recording_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/1_create_recording_list.py -------------------------------------------------------------------------------- /data_creation/2_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/2_record.py -------------------------------------------------------------------------------- /data_creation/3_create_training_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/3_create_training_set.sh -------------------------------------------------------------------------------- /data_creation/VoxForgeDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/VoxForgeDict -------------------------------------------------------------------------------- /data_creation/commands-core.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/commands-core.csv -------------------------------------------------------------------------------- /data_creation/commands.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/commands.csv -------------------------------------------------------------------------------- /data_creation/create_lang_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/create_lang_files.py -------------------------------------------------------------------------------- /data_creation/create_test_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/create_test_train.py -------------------------------------------------------------------------------- /data_creation/find_short_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/find_short_commands.py -------------------------------------------------------------------------------- /data_creation/jump_recording_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/data_creation/jump_recording_list.txt -------------------------------------------------------------------------------- /debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/debug.sh -------------------------------------------------------------------------------- /main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/aspire_decode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/aspire_decode.sh -------------------------------------------------------------------------------- /main/decode/data: -------------------------------------------------------------------------------- 1 | /home/lyncis/proj/voco/data/staging -------------------------------------------------------------------------------- /main/decode/model: -------------------------------------------------------------------------------- 1 | /home/lyncis/proj/voco/training/exp/tri1_ali -------------------------------------------------------------------------------- /main/decode/scripts/int2sym.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/decode/scripts/int2sym.pl -------------------------------------------------------------------------------- /main/deepspeech.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/deepspeech.sh -------------------------------------------------------------------------------- /main/emacs_functions.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/emacs_functions.el -------------------------------------------------------------------------------- /main/kaldi_decode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/kaldi_decode.sh -------------------------------------------------------------------------------- /main/layouts/workspace-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/layouts/workspace-1.json -------------------------------------------------------------------------------- /main/layouts/workspace-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/layouts/workspace-2.json -------------------------------------------------------------------------------- /main/parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/parser/.gitignore -------------------------------------------------------------------------------- /main/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/parser/dynamic_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/parser/dynamic_rules.json -------------------------------------------------------------------------------- /main/parser/implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/parser/implementation.py -------------------------------------------------------------------------------- /main/parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/parser/parser.py -------------------------------------------------------------------------------- /main/parser/static_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/parser/static_rules.json -------------------------------------------------------------------------------- /main/parser/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/parser/variables.json -------------------------------------------------------------------------------- /main/path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/path.sh -------------------------------------------------------------------------------- /main/record_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/record_decode.py -------------------------------------------------------------------------------- /main/tests/sample_dynamic_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/tests/sample_dynamic_rules.py -------------------------------------------------------------------------------- /main/tests/sample_most_freq_live_recordings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/tests/sample_most_freq_live_recordings.py -------------------------------------------------------------------------------- /main/tests/sample_static_based_on_recordings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/tests/sample_static_based_on_recordings.py -------------------------------------------------------------------------------- /main/tests/sample_static_live_recordings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/tests/sample_static_live_recordings.py -------------------------------------------------------------------------------- /main/tests/sample_static_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/tests/sample_static_rules.py -------------------------------------------------------------------------------- /main/tests/unittest_playUID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/main/tests/unittest_playUID.py -------------------------------------------------------------------------------- /parse_log/error_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/parse_log/error_log -------------------------------------------------------------------------------- /parse_log/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/parse_log/log -------------------------------------------------------------------------------- /parse_log/log.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/parse_log/log.backup -------------------------------------------------------------------------------- /parse_log/log~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/parse_log/log~ -------------------------------------------------------------------------------- /parse_log/parse_counter.txt: -------------------------------------------------------------------------------- 1 | 20 -------------------------------------------------------------------------------- /parse_log/parse_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/parse_log/parse_log.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/setup.sh -------------------------------------------------------------------------------- /training/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/cmd.sh -------------------------------------------------------------------------------- /training/conf/decode.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/conf/decode.config -------------------------------------------------------------------------------- /training/conf/mfcc.conf: -------------------------------------------------------------------------------- 1 | --use-energy=false 2 | -------------------------------------------------------------------------------- /training/data: -------------------------------------------------------------------------------- 1 | /home/lyncis/proj/voco/data/data -------------------------------------------------------------------------------- /training/decode/data/.backup/cmvn.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/.backup/cmvn.scp -------------------------------------------------------------------------------- /training/decode/data/.backup/feats.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/.backup/feats.scp -------------------------------------------------------------------------------- /training/decode/data/.backup/spk2gender: -------------------------------------------------------------------------------- 1 | bartek m 2 | -------------------------------------------------------------------------------- /training/decode/data/.backup/spk2utt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/.backup/spk2utt -------------------------------------------------------------------------------- /training/decode/data/.backup/text: -------------------------------------------------------------------------------- 1 | 00001_xxxx01 x-ray charlie 2 | -------------------------------------------------------------------------------- /training/decode/data/.backup/utt2spk: -------------------------------------------------------------------------------- 1 | 00001_xxxx01 bartek 2 | -------------------------------------------------------------------------------- /training/decode/data/.backup/wav.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/.backup/wav.scp -------------------------------------------------------------------------------- /training/decode/data/00001_xxxx01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/00001_xxxx01.wav -------------------------------------------------------------------------------- /training/decode/data/cmvn.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/cmvn.ark -------------------------------------------------------------------------------- /training/decode/data/cmvn.scp: -------------------------------------------------------------------------------- 1 | bartek decode/data/cmvn.ark:7 2 | -------------------------------------------------------------------------------- /training/decode/data/delta_mfcc.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/delta_mfcc.ark -------------------------------------------------------------------------------- /training/decode/data/delta_mfcc.scp: -------------------------------------------------------------------------------- 1 | 00001_xxxx01 decode/data/delta_mfcc.ark:13 2 | -------------------------------------------------------------------------------- /training/decode/data/feats.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/feats.ark -------------------------------------------------------------------------------- /training/decode/data/feats.scp: -------------------------------------------------------------------------------- 1 | 00001_xxxx01 decode/data/feats.ark:13 2 | -------------------------------------------------------------------------------- /training/decode/data/spk2gender: -------------------------------------------------------------------------------- 1 | bartek m 2 | -------------------------------------------------------------------------------- /training/decode/data/spk2utt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/spk2utt -------------------------------------------------------------------------------- /training/decode/data/text: -------------------------------------------------------------------------------- 1 | 00001_xxxx01 x-ray charlie 2 | -------------------------------------------------------------------------------- /training/decode/data/utt2spk: -------------------------------------------------------------------------------- 1 | 00001_xxxx01 bartek 2 | -------------------------------------------------------------------------------- /training/decode/data/wav.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/data/wav.scp -------------------------------------------------------------------------------- /training/decode/mfcc/log/make_mfcc_data.1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/mfcc/log/make_mfcc_data.1.log -------------------------------------------------------------------------------- /training/decode/mfcc/log/wav_data.1.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/mfcc/log/wav_data.1.scp -------------------------------------------------------------------------------- /training/decode/mfcc/raw_mfcc_data.1.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/mfcc/raw_mfcc_data.1.ark -------------------------------------------------------------------------------- /training/decode/mfcc/raw_mfcc_data.1.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/mfcc/raw_mfcc_data.1.scp -------------------------------------------------------------------------------- /training/decode/model/35.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/35.mdl -------------------------------------------------------------------------------- /training/decode/model/35.occs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/35.occs -------------------------------------------------------------------------------- /training/decode/model/ali.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/ali.1.gz -------------------------------------------------------------------------------- /training/decode/model/cmvn_opts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /training/decode/model/fsts.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/fsts.1.gz -------------------------------------------------------------------------------- /training/decode/model/graph/HCLG.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/graph/HCLG.fst -------------------------------------------------------------------------------- /training/decode/model/graph/disambig_tid.int: -------------------------------------------------------------------------------- 1 | 2771 2 | 2772 3 | -------------------------------------------------------------------------------- /training/decode/model/graph/num_pdfs: -------------------------------------------------------------------------------- 1 | 317 2 | -------------------------------------------------------------------------------- /training/decode/model/graph/phones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/graph/phones.txt -------------------------------------------------------------------------------- /training/decode/model/graph/phones/align_lexicon.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/graph/phones/align_lexicon.int -------------------------------------------------------------------------------- /training/decode/model/graph/phones/align_lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/graph/phones/align_lexicon.txt -------------------------------------------------------------------------------- /training/decode/model/graph/phones/disambig.int: -------------------------------------------------------------------------------- 1 | 147 2 | 148 3 | -------------------------------------------------------------------------------- /training/decode/model/graph/phones/disambig.txt: -------------------------------------------------------------------------------- 1 | #0 2 | #1 3 | -------------------------------------------------------------------------------- /training/decode/model/graph/phones/optional_silence.csl: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /training/decode/model/graph/phones/optional_silence.int: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /training/decode/model/graph/phones/optional_silence.txt: -------------------------------------------------------------------------------- 1 | sil 2 | -------------------------------------------------------------------------------- /training/decode/model/graph/phones/silence.csl: -------------------------------------------------------------------------------- 1 | 1:2:3:4:5:6:7:8:9:10 2 | -------------------------------------------------------------------------------- /training/decode/model/graph/phones/word_boundary.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/graph/phones/word_boundary.int -------------------------------------------------------------------------------- /training/decode/model/graph/phones/word_boundary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/graph/phones/word_boundary.txt -------------------------------------------------------------------------------- /training/decode/model/graph/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/graph/words.txt -------------------------------------------------------------------------------- /training/decode/model/num_jobs: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /training/decode/model/phones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/phones.txt -------------------------------------------------------------------------------- /training/decode/model/questions.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/questions.int -------------------------------------------------------------------------------- /training/decode/model/questions.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/questions.qst -------------------------------------------------------------------------------- /training/decode/model/tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/model/tree -------------------------------------------------------------------------------- /training/decode/output/decode_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/output/decode_result.txt -------------------------------------------------------------------------------- /training/decode/output/lat.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/output/lat.1.gz -------------------------------------------------------------------------------- /training/decode/output/num_jobs: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /training/decode/output/scoring/LMWT.tra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/output/scoring/LMWT.tra -------------------------------------------------------------------------------- /training/decode/output/scoring/test_filt.txt: -------------------------------------------------------------------------------- 1 | 00001_xxxx01 x-ray charlie 2 | -------------------------------------------------------------------------------- /training/decode/record_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/record_decode.py -------------------------------------------------------------------------------- /training/decode/scripts/compute_cmvn_stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/scripts/compute_cmvn_stats.sh -------------------------------------------------------------------------------- /training/decode/scripts/make_mfcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/decode/scripts/make_mfcc.sh -------------------------------------------------------------------------------- /training/lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/lexicon.txt -------------------------------------------------------------------------------- /training/local/score.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/local/score.sh -------------------------------------------------------------------------------- /training/local/score_GMM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/local/score_GMM.sh -------------------------------------------------------------------------------- /training/path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/path.sh -------------------------------------------------------------------------------- /training/path.sh~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/path.sh~ -------------------------------------------------------------------------------- /training/results/num_jobs: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /training/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/run.sh -------------------------------------------------------------------------------- /training/run.sh~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyncisdev/voco/HEAD/training/run.sh~ -------------------------------------------------------------------------------- /training/steps: -------------------------------------------------------------------------------- 1 | /home/lyncis/proj/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /training/utils: -------------------------------------------------------------------------------- 1 | /home/lyncis/proj/kaldi/egs/wsj/s5/utils --------------------------------------------------------------------------------