mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
* add hotword for deploy_tools * Support wfst decoder and contextual biasing (#1039) * Support wfst decoder and contextual biasing * Turn on fstbin compilation --------- Co-authored-by: gongbo.gb <gongbo.gb@alibaba-inc.com> * mv funasr/runtime runtime * Fix crash caused by OOV in hotwords list * funasr infer * funasr infer * funasr infer * funasr infer * funasr infer * fix some bugs about fst hotword; support wfst for websocket server and clients; mv runtime out of funasr; modify relative docs * del onnxruntime/include/gflags * update tensor.h * update run_server.sh * update deploy tools * update deploy tools * update websocket-server * update funasr-wss-server * Remove self loop propagation * Update websocket_protocol_zh.md * Update websocket_protocol_zh.md * update hotword protocol * author zhaomingwork: change hotwords for h5 and java * update hotword protocol * catch exception for json_fst_hws * update hotword on message * update onnx benchmark for ngram&hotword * update docs * update funasr-wss-serve * add NONE for LM_DIR * update docs * update run_server.sh * add whats-new * modify whats-new * update whats-new * update whats-new * Support decoder option for beam searching * update benchmark_onnx_cpp * Support decoder option for websocket * fix bug of CompileHotwordEmbedding * update html client * update docs --------- Co-authored-by: gongbo.gb <35997837+aibulamusi@users.noreply.github.com> Co-authored-by: gongbo.gb <gongbo.gb@alibaba-inc.com> Co-authored-by: 游雁 <zhifu.gzf@alibaba-inc.com>
51 lines
1.7 KiB
Batchfile
51 lines
1.7 KiB
Batchfile
@echo off
|
|
setlocal enableextensions
|
|
|
|
:: Locate winrar.exe
|
|
set winrar="%ProgramFiles%\winrar\winrar.exe"
|
|
if not exist %winrar% set winrar="%ProgramFiles(x86)%\winrar\winrar.exe"
|
|
if not exist %winrar% (
|
|
echo ERROR: Cannot find winrar.exe 1>&2
|
|
exit /b 1
|
|
)
|
|
|
|
:: Get head tag and make sure it is sane.
|
|
for /f %%i in ('git describe --long --dirty') do set longtag=%%i
|
|
set insane=0
|
|
if not %longtag:-dirty=%.==%longtag%. set insane=1
|
|
if %longtag:-0-g=%.==%longtag%. set insane=1
|
|
if %longtag:win/=%.==%longtag%. set insane=1
|
|
if %insane%==1 (
|
|
echo ERROR: Best HEAD description '%longtag%' is not at a clean tag on winport branch 1>&2
|
|
exit /b 1
|
|
)
|
|
|
|
:: Get short description now, strip "win/" for version only
|
|
for /f %%i in ('git describe') do set tag=%%i
|
|
set tag=%tag:win/=%
|
|
|
|
:: Create archive with a comment
|
|
set cmtfile=%TEMP%\openfst-package-comment.txt
|
|
del /q %cmtfile% 2>nul
|
|
echo OpenFST binaries for Windows x64, optimized build. >>%cmtfile%
|
|
echo Copyright 2005-2019 Google, Inc. (Original source). >>%cmtfile%
|
|
echo Copyright 2016-2019 SmartAction LLC (Windows port). >>%cmtfile%
|
|
echo Copyright 2016-2019 Johns Hopkins Uni (Windows port). >>%cmtfile%
|
|
echo.>>%cmtfile%
|
|
echo OpenFST home page: http://www.openfst.org/ >>%cmtfile%
|
|
echo Git Repository: https://github.com/kkm000/openfst/ >>%cmtfile%
|
|
echo Build tag: %longtag% >>%cmtfile%
|
|
|
|
set zipfile=openfst-bin-win-x64-%tag%.zip
|
|
del /q %zipfile% 2>nul
|
|
%winrar% a -ep -m5 -z%cmtfile% %zipfile% NEWS COPYING build_output\x64\Release\bin\*.exe
|
|
if errorlevel 1 (
|
|
echo "ERROR: Cannot create archive '%zipfile%' 1>&2
|
|
del /q %cmtfile% 2>nul
|
|
exit /b 1
|
|
)
|
|
|
|
echo SUCCESS: Created archive '%zipfile%' 1>&2
|
|
del /q %cmtfile% 2>nul
|
|
exit /b 0
|