From 1f2ec4dfb1612636c0273d3c618df54876de18d0 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sat, 13 Mar 2021 13:09:31 +0100 Subject: [PATCH] Fix network specification for NT_SYMCLIP Signed-off-by: Stefan Weil --- src/lstm/fullyconnected.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lstm/fullyconnected.h b/src/lstm/fullyconnected.h index 3199617c7f..5bb0f83fc5 100644 --- a/src/lstm/fullyconnected.h +++ b/src/lstm/fullyconnected.h @@ -47,7 +47,7 @@ class FullyConnected : public Network { else if (type_ == NT_POSCLIP) spec.add_str_int("Fp", no_); else if (type_ == NT_SYMCLIP) - spec.add_str_int("Fs", no_); + spec.add_str_int("Fn", no_); else if (type_ == NT_SOFTMAX) spec.add_str_int("Fc", no_); else