From 5a3197796e2ac120d4d715330db7c4a73ef2f3a9 Mon Sep 17 00:00:00 2001 From: nl <3210346136@qq.com> Date: Mon, 22 Nov 2021 21:53:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D24=E6=A8=A1=E5=9E=8Bbu?= =?UTF-8?q?g?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- speech_model_zoo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speech_model_zoo.py b/speech_model_zoo.py index 5ded559..783bd69 100644 --- a/speech_model_zoo.py +++ b/speech_model_zoo.py @@ -332,7 +332,7 @@ class SpeechModel24(BaseModel): #test=Model(inputs = input_data, outputs = layer_h12) #test.summary() - layer_h10 = Reshape((self.output_shape[0], 3200))(layer_h19) #Reshape层 + layer_h10 = Reshape((self.output_shape[0], 3200))(layer_h9) #Reshape层 #layer_h6 = Dropout(0.2)(layer_h5) # 随机中断部分神经网络连接,防止过拟合 layer_h10 = Dropout(0.3)(layer_h10) layer_h11 = Dense(128, activation="relu", use_bias=True, kernel_initializer='he_normal')(layer_h10) # 全连接层