FireRedASR2S
A SOTA Industrial-Grade All-in-One ASR system with ASR, VAD, LID, and Punc modules. FireRedASR2 supports Chinese (Mandarin, 20+ dialects/accents), English, code-switching, and both speech and singing ASR. FireRedVAD supports speech/singing/music in 100+ langs. FireRedLID supports 100+ langs and 20+ zh dialects. FireRedPunc supports zh and en.
파일 탐색기
- event.wav
- FireRedASR2.png
- FireRedASR2S.png
- hello_en.wav
- hello_zh.wav
- fireredasr2
- inference_asr_aed.sh
- inference_asr_llm.sh
- pretrained_models
- wav
- wav4aed
- fireredasr2s
- inference_asr_system.sh
- pretrained_models
- wav
- wav4aed
- fireredlid
- inference_lid.sh
- pretrained_models
- wav
- wav4aed
- nopunc.txt
- fireredpunc
- inference_punc.sh
- pretrained_models
- wav.tar.gz
- wav.tar.gz
- fireredvad
- inference_aed.sh
- inference_stream_vad.sh
- inference_vad.sh
- pretrained_models
- asr_feat.py
- token_dict.py
- adapter.py
- conformer_encoder.py
- ctc.py
- transformer_decoder.py
- fireredasr_aed.py
- fireredasr_llm.py
- lstm_lm.py
- param.py
- aed_tokenizer.py
- llm_tokenizer.py
- io.py
- wer.py
- __init__.py
- asr.py
- speech2text.py
- feat.py
- token_dict.py
- conformer_encoder.py
- transformer_decoder.py
- fireredlid_aed.py
- param.py
- lid_tokenizer.py
- io.py
- __init__.py
- lid.py
- README.md
- speech2lang.py
- __init__.py
- hf_bert_tokenizer.py
- token_dict.py
- __init__.py
- fireredpunc_bert.py
- param.py
- __init__.py
- add_punc.py
- punc.py
- __init__.py
- aed.py
- fireredvad_cli.py
- stream_vad.py
- vad.py
- __init__.py
- audio_feat.py
- constants.py
- detect_model.py
- stream_vad_postprocessor.py
- vad_postprocessor.py
- __init__.py
- io.py
- __init__.py
- aed.py
- stream_vad.py
- vad.py
- __init__.py
- fireredasr2s-cli
- fireredasr2s_cli.py
- fireredasr2system.py
- aed_tokenizer.py
- asr_feat.py
- fireredasr_aed_tensorrt.py
- model.py
- config.pbtxt
- convert_checkpoint.py
- export_encoder_tensorrt.py
- export_tensorrt.sh
- ctc.py
- docker-compose.yml
- Dockerfile
- http_client.py
- infer.py
- pyproject.toml
- README.md
- run.sh
- uv.lock
- .gitignore
- LICENSE
- pyproject.toml
- README.md
- requirements.txt
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
conda activate
설명 보기 ▼
conda activate
Activate a conda environment.
See also: `conda deactivate`.
conda activate myenv
Activate an existing environment named `myenv`:
conda activate {{path/to/myenv}}
Activate an existing environment located at custom path:
conda activate --stack myenv
Stack `myenv` environment on top of a previous environment making libraries/commands/variables from both accessible:
conda create
설명 보기 ▼
conda create
Create new conda environments.
conda create {{[-y|--yes]}} {{[-n|--name]}} py39 python=3.9 "numpy>=1.11" scipy
Create a new environment named `py39`, install Python 3.9, NumPy v1.11 or above in it, and the latest stable version of SciPy. Say yes to all confirmations:
conda create {{[-n|--name]}} myenv --file {{file1.yml}} --file {{file2.yml}}
Create a new environment named `myenv` and install packages listed in files:
conda create {{[-p|--prefix]}} {{path/to/myenv}}
Create a new environment at a custom path (i.e. prefix):
ffmpeg
설명 보기 ▼
ffmpeg
비디오 변환 도구.
관련 항목: `gst-launch-1.0`.
더 많은 정보: <https://ffmpeg.org/ffmpeg.html#Options>.
ffmpeg -i {{path/to/video.mp4}} -vn {{path/to/sound.mp3}}
비디오에서 사운드를 추출하여 MP3로 저장:
ffmpeg -i {{path/to/input_audio.flac}} -ar 44100 -sample_fmt s16 {{path/to/output_audio.wav}}
FLAC 파일을 Red Book CD 형식 (44100kHz, 16bit)으로 트랜스코딩:
ffmpeg -i {{path/to/video.mp4}} {{[-vf|-filter:v]}} 'scale=-1:1000' -r 15 {{path/to/output.gif}}
비디오를 GIF로 저장하고, 높이를 1000px로 조정하고 프레임 속도를 15로 설정:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
huggingface-cli
설명 보기 ▼
huggingface-cli
이 명령은 `hf`의 별칭입니다.
tldr hf
자세한 내용은 원본 명령을 참고하세요:
pip install
설명 보기 ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python3
설명 보기 ▼
python3
이 명령은 `python`의 별칭입니다.
tldr python
자세한 내용은 원본 명령을 참고하세요:
