You need to sign in or sign up before continuing.
deepspeech2_online.yaml 1.4 KB
Newer Older
1 2 3 4 5 6
# https://yaml.org/type/float.html
data:
  train_manifest: data/manifest.train
  dev_manifest: data/manifest.dev-clean
  test_manifest: data/manifest.test-clean
  min_input_len: 0.0
7
  max_input_len: 30.0 # second
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
  min_output_len: 0.0
  max_output_len: .inf
  min_output_input_ratio: 0.00
  max_output_input_ratio: .inf

collator:
  batch_size: 20
  mean_std_filepath: data/mean_std.json
  unit_type: char
  vocab_filepath: data/vocab.txt 
  augmentation_config: conf/augmentation.json
  random_seed: 0
  spm_model_prefix: 
  specgram_type: linear
  target_sample_rate: 16000
  max_freq: None
  n_fft: None
  stride_ms: 10.0
  window_ms: 20.0
  delta_delta: False
  dither: 1.0
  use_dB_normalization: True 
  target_dB: -20
  random_seed: 0
  keep_transcription_text: False
  sortagrad: True 
  shuffle_method: batch_shuffle
  num_workers: 0

model:
  num_conv_layers: 2
  num_rnn_layers: 3
  rnn_layer_size: 2048
  rnn_direction: forward
  num_fc_layers: 2
  fc_layers_size_list: 512, 256
  use_gru: False 
H
huangyuxin 已提交
45
  blank_id: 0
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

training:
  n_epoch: 50
  lr: 1e-3
  lr_decay: 0.83
  weight_decay: 1e-06
  global_grad_clip: 5.0
  log_interval: 100
  checkpoint:
    kbest_n: 50
    latest_n: 5

decoding:
  batch_size: 128
  error_rate_type: wer
  decoding_method: ctc_beam_search
  lang_model_path: data/lm/common_crawl_00.prune01111.trie.klm
  alpha: 1.9
  beta: 0.3
  beam_size: 500
  cutoff_prob: 1.0
  cutoff_top_n: 40
  num_proc_bsearch: 8