mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-12-11 06:55:27 +00:00
- Added CHiME-4 dataset integration in asr_datamodule.py - Added Hugging Face upload script - Added RIR augmentation - Added Self-Distillation Training
12 lines
271 B
Bash
12 lines
271 B
Bash
if [ -z "${PYTHONPATH:-}" ]; then
|
|
export PYTHONPATH="/tmp/icefall"
|
|
else
|
|
export PYTHONPATH="${PYTHONPATH}:/tmp/icefall"
|
|
fi
|
|
|
|
CUDA_VISIBLE_DEVICES=3 python ./conformer_ctc/decode.py \
|
|
--method ctc-decoding \
|
|
--max-duration 10 \
|
|
--epoch 77 \
|
|
--avg 10
|