├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── fireredasr ├── __init__.py ├── data │ ├── asr_feat.py │ └── token_dict.py ├── models │ ├── fireredasr.py │ ├── fireredasr_aed.py │ ├── fireredasr_llm.py │ └── module │ │ ├── adapter.py │ │ ├── conformer_encoder.py │ │ └── transformer_decoder.py ├── speech2text.py ├── tokenizer │ ├── aed_tokenizer.py │ └── llm_tokenizer.py └── utils │ ├── param.py │ └── wer.py ├── pretrained_models ├── FireRedASR-AED-L │ ├── AED模型下载地址.txt │ ├── cmvn.ark │ ├── cmvn.txt │ ├── config.yaml │ ├── dict.txt │ └── train_bpe1000.model ├── FireRedASR-LLM-L │ ├── LLM模型下载地址.txt │ ├── Qwen2-7B-Instruct │ │ ├── config.json │ │ ├── generation_config.json │ │ ├── merges.txt │ │ ├── model.safetensors.index.json │ │ ├── tokenizer.json │ │ ├── tokenizer_config.json │ │ └── vocab.json │ ├── cmvn.ark │ ├── cmvn.txt │ └── config.yaml └── README.md ├── requirements.txt ├── static ├── bootstrap.bundle.min.js ├── bootstrap.min.css ├── jquery.min.js ├── script.js ├── ui.png └── ui0.png ├── templates └── index.html └── 启动.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/app.py -------------------------------------------------------------------------------- /fireredasr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fireredasr/data/asr_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/data/asr_feat.py -------------------------------------------------------------------------------- /fireredasr/data/token_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/data/token_dict.py -------------------------------------------------------------------------------- /fireredasr/models/fireredasr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/models/fireredasr.py -------------------------------------------------------------------------------- /fireredasr/models/fireredasr_aed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/models/fireredasr_aed.py -------------------------------------------------------------------------------- /fireredasr/models/fireredasr_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/models/fireredasr_llm.py -------------------------------------------------------------------------------- /fireredasr/models/module/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/models/module/adapter.py -------------------------------------------------------------------------------- /fireredasr/models/module/conformer_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/models/module/conformer_encoder.py -------------------------------------------------------------------------------- /fireredasr/models/module/transformer_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/models/module/transformer_decoder.py -------------------------------------------------------------------------------- /fireredasr/speech2text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/speech2text.py -------------------------------------------------------------------------------- /fireredasr/tokenizer/aed_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/tokenizer/aed_tokenizer.py -------------------------------------------------------------------------------- /fireredasr/tokenizer/llm_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/tokenizer/llm_tokenizer.py -------------------------------------------------------------------------------- /fireredasr/utils/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/utils/param.py -------------------------------------------------------------------------------- /fireredasr/utils/wer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/fireredasr/utils/wer.py -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-AED-L/AED模型下载地址.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-AED-L/AED模型下载地址.txt -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-AED-L/cmvn.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-AED-L/cmvn.ark -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-AED-L/cmvn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-AED-L/cmvn.txt -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-AED-L/config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-AED-L/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-AED-L/dict.txt -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-AED-L/train_bpe1000.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-AED-L/train_bpe1000.model -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/LLM模型下载地址.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/LLM模型下载地址.txt -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/config.json -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/generation_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/generation_config.json -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/merges.txt -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/model.safetensors.index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/model.safetensors.index.json -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/tokenizer.json -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/tokenizer_config.json -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/Qwen2-7B-Instruct/vocab.json -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/cmvn.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/cmvn.ark -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/cmvn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/pretrained_models/FireRedASR-LLM-L/cmvn.txt -------------------------------------------------------------------------------- /pretrained_models/FireRedASR-LLM-L/config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pretrained_models/README.md: -------------------------------------------------------------------------------- 1 | Put pretrained models here. 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/static/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/static/bootstrap.min.css -------------------------------------------------------------------------------- /static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/static/jquery.min.js -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/static/script.js -------------------------------------------------------------------------------- /static/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/static/ui.png -------------------------------------------------------------------------------- /static/ui0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/static/ui0.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/fireredasr-ui/HEAD/templates/index.html -------------------------------------------------------------------------------- /启动.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | chcp 65001 3 | 4 | call .\runtime\python app.py 5 | 6 | pause --------------------------------------------------------------------------------