Fix dither binding in Pybind11 to ensure independence from high_freq in FeatureExtractorConfig (#1739)

This commit is contained in:
Jacklyn
2025-01-20 10:29:36 +02:00
committed by GitHub
parent a2650b7ddd
commit b943341fb1

View File

@@ -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);
}