Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
sherpaonnx
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Fangjun Kuang
2024-04-12 18:57:21 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2024-04-12 18:57:21 +0800
Commit
0f4705f775064da1711767e517eb49a5942d9506
0f4705f7
1 parent
be4a2488
Fix WASM for kws (#758)
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
3 行增加
和
3 行删除
wasm/kws/sherpa-onnx-kws.js
wasm/kws/sherpa-onnx-kws.js
查看文件 @
0f4705f
...
...
@@ -6,15 +6,15 @@ function freeConfig(config, Module) {
}
if
(
'transducer'
in
config
)
{
freeConfig
(
config
.
transducer
);
freeConfig
(
config
.
transducer
,
Module
);
}
if
(
'featConfig'
in
config
)
{
freeConfig
(
config
.
featConfig
);
freeConfig
(
config
.
featConfig
,
Module
);
}
if
(
'modelConfig'
in
config
)
{
freeConfig
(
config
.
modelConfig
);
freeConfig
(
config
.
modelConfig
,
Module
);
}
if
(
'keywordsBuffer'
in
config
)
{
...
...
请
注册
或
登录
后发表评论