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 15:01:50 +0300
committerJan Buethe <jbuethe@amazon.de>2023-12-18 15:01:50 +0300
commitd950fd01ac5dcd230985e8adc2bb56c579d724c7 (patch)
treeba011fe6efc6856e275f0fd8fea3399140f056d5
parent74dea1246d68480a98beb63f62f66b7d07198323 (diff)
added tanh activation in osce.c
-rw-r--r--dnn/osce.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dnn/osce.c b/dnn/osce.c
index 8abff88b..fb0369f7 100644
--- a/dnn/osce.c
+++ b/dnn/osce.c
@@ -155,7 +155,7 @@ static void lace_feature_net(
&hLACE->layers.lace_feature_net_tconv,
output_buffer,
input_buffer,
- ACTIVATION_LINEAR,
+ ACTIVATION_TANH,
arch
);
@@ -426,7 +426,7 @@ static void nolace_feature_net(
&hNoLACE->layers.nolace_feature_net_tconv,
output_buffer,
input_buffer,
- ACTIVATION_LINEAR,
+ ACTIVATION_TANH,
arch
);