├── README.md ├── al.py ├── apply_bpe.py ├── eval_full.sh ├── eval_wk.sh ├── eval_wk_asr.sh ├── finetune_w1.sh ├── get_data.sh ├── latency.py ├── model.py ├── predict.py ├── reader.py ├── run_full.sh ├── run_w1.sh ├── stream_reader.py ├── train.py ├── transformer.yaml └── utils ├── __init__.py ├── check.py └── configure.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/README.md -------------------------------------------------------------------------------- /al.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/al.py -------------------------------------------------------------------------------- /apply_bpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/apply_bpe.py -------------------------------------------------------------------------------- /eval_full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/eval_full.sh -------------------------------------------------------------------------------- /eval_wk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/eval_wk.sh -------------------------------------------------------------------------------- /eval_wk_asr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/eval_wk_asr.sh -------------------------------------------------------------------------------- /finetune_w1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/finetune_w1.sh -------------------------------------------------------------------------------- /get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/get_data.sh -------------------------------------------------------------------------------- /latency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/latency.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/model.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/predict.py -------------------------------------------------------------------------------- /reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/reader.py -------------------------------------------------------------------------------- /run_full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/run_full.sh -------------------------------------------------------------------------------- /run_w1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/run_w1.sh -------------------------------------------------------------------------------- /stream_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/stream_reader.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/train.py -------------------------------------------------------------------------------- /transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/transformer.yaml -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/utils/check.py -------------------------------------------------------------------------------- /utils/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autosimtrans/SimulTransBaseline/HEAD/utils/configure.py --------------------------------------------------------------------------------