Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Buethe <jbuethe@amazon.de>2023-12-18 14:33:11 +0300
committerJan Buethe <jbuethe@amazon.de>2023-12-18 14:33:11 +0300
commit74dea1246d68480a98beb63f62f66b7d07198323 (patch)
treeeb7d7f5e8904eb082bc93298e43b78fb827e2b0c
parent2412bc3f7d734d74533669fabb18b51272518afa (diff)
bugfix
-rw-r--r--dnn/torch/osce/utils/layers/td_shaper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dnn/torch/osce/utils/layers/td_shaper.py b/dnn/torch/osce/utils/layers/td_shaper.py
index 7080a1b3..0d2052ee 100644
--- a/dnn/torch/osce/utils/layers/td_shaper.py
+++ b/dnn/torch/osce/utils/layers/td_shaper.py
@@ -52,7 +52,7 @@ class TDShaper(nn.Module):
self.feature_alpha1_t = nn.Conv1d(self.env_dim, frame_size, 2)
self.feature_alpha2 = nn.Conv1d(frame_size, frame_size, 2)
- if soft_quant:
+ if softquant:
self.feature_alpha1_f = soft_quant(self.feature_alpha1_f)
if self.innovate: