From 64cda54d95c013a6e1553c466ce0c996626fc380 Mon Sep 17 00:00:00 2001 From: nl <3210346136@qq.com> Date: Tue, 9 Nov 2021 18:32:07 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=AD=A3=E5=AE=9A=E4=B9=89?= 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 723f9ba..a83b4fc 100644 --- a/speech_model_zoo.py +++ b/speech_model_zoo.py @@ -34,7 +34,7 @@ class BaseModel: ''' def __init__(self): self.input_shape = None - self.output_size = None + self.output_shape = None def get_model(self) -> tuple: raise Exception("method not implemented")