mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
* actions demo * add unittest * add info for test * fix yml * fix yml * test log * remove demo action * change logger * readme * add unittest * add info for test * fix yml * fix yml * test log * remove demo action * change logger * readme * Update asr_utils.py * readme * infer with tag 1.1.6 * readme * onnxruntime * onnxruntime * timestamp func bug fix * support grpc+onnxruntime * onnxruntime * Add code of generating whl about rapid_paraformer * Fix README path error * onnxruntime * onnxruntime * add transformerLM egs(aishell2) * onnxruntime * onnxruntime * support hotword parameter passing in the pipeline forward * onnxruntime * modify onnxruntime environment dependencies * onnxruntime * 0.2.1 * fbank online * fbank online * fbank online * fbank online * fbank online * Add sentence timestamp support Added support for statement event timestamp, which is particularly useful for applications such as lyrics and subtitles. * fbank online * bugfix * readme * update docs * update docs * update docs * fix uniasr decoding bug * modify contextual hotword parameter * onnx * onnx * onnx * onnx * onnx export * onnx export * fix data dir filter bug * in_cache & support soundfile read * v0.2.2 * egs recipe asr vad punc * egs recipe asr vad punc * add training related code for sond * add scripts for simu data * add scripts for simu data * add scripts for simu data * add scripts for simu data * add scripts for simu data * add scripts for simu data * add scripts for simu data * add scripts for simu data * add scripts for simu data * simu data * simu data * simu data * sond pipeline * sond pipeline * sond pipeline * sond pipeline * sond pipeline * sond pipeline * sond pipeline * sond pipeline * sond pipeline * sond pipeline * sond pipeline * sond pipeline * sond pipeline * fixbug for sd and sv * fixbug for sd and sv * fixbug for sd and sv * fixbug sond initial * fixbug sond initial * fixbug sond initial * unit test modelscope for sd * unit test modelscope for sd * unit test modelscope for sd * unit test modelscope for sd * update cif onnx * onnx supports tiny and bicif paraformer * add triton * add README * torch version * Update README.md * Update README.md * gpu bug fix * update vad inference --------- Co-authored-by: xiaozy <xiaozy@xiaozy-MacBook.local> Co-authored-by: 游雁 <zhifu.gzf@alibaba-inc.com> Co-authored-by: hnluo <haoneng.lhn@alibaba-inc.com> Co-authored-by: 九耳 <mengzhe.cmz@alibaba-inc.com> Co-authored-by: shixian.shi <shixian.shi@alibaba-inc.com> Co-authored-by: 北念 <lzr265946@alibaba-inc.com> Co-authored-by: SWHL <liekkaskono@163.com> Co-authored-by: wucong.lyb <wucong.lyb@alibaba-inc.com> Co-authored-by: dingbig <dingbig@gmail.com> Co-authored-by: speech_asr <wangjiaming.wjm@alibaba-inc.com> Co-authored-by: 凌匀 <ailsa.zly@alibaba-inc.com> Co-authored-by: 志浩 <neo.dzh@alibaba-inc.com> Co-authored-by: root <zhangyuekai@foxmail.com> Co-authored-by: jiangyu.xzy <jiangyu.xzy@alibaba-inc.com>
36 lines
970 B
YAML
36 lines
970 B
YAML
name: FunASR Unit Test
|
|
run-name: ${{ github.actor }} is testing out FunASR Unit Test 🚀
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- dev_wjm
|
|
- dev_jy
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.7"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install torch torchvision torchaudio
|
|
pip install "modelscope[audio_asr]" --upgrade -f \
|
|
https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
|
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
pip install -e ./
|
|
- name: Testing
|
|
run:
|
|
python tests/run_test.py |