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
Jacklyn
2025-01-20 10:29:36 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2025-01-20 16:29:36 +0800
Commit
b943341fb1d059196d91adfbe4bc27f5fc024044
b943341f
1 parent
a2650b7d
Fix `dither` binding in Pybind11 to ensure independence from `high_freq` in `Fea…
…tureExtractorConfig` (#1739)
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
1 行增加
和
1 行删除
sherpa-onnx/python/csrc/features.cc
sherpa-onnx/python/csrc/features.cc
查看文件 @
b943341
...
...
@@ -19,7 +19,7 @@ static void PybindFeatureExtractorConfig(py::module *m) {
.
def_readwrite
(
"feature_dim"
,
&
PyClass
::
feature_dim
)
.
def_readwrite
(
"low_freq"
,
&
PyClass
::
low_freq
)
.
def_readwrite
(
"high_freq"
,
&
PyClass
::
high_freq
)
.
def_readwrite
(
"dither"
,
&
PyClass
::
high_freq
)
.
def_readwrite
(
"dither"
,
&
PyClass
::
dither
)
.
def
(
"__str__"
,
&
PyClass
::
ToString
);
}
...
...
请
注册
或
登录
后发表评论