From 6bf9d29d2dd6f069ce978236f4ce6de7a883bf23 Mon Sep 17 00:00:00 2001 From: 46135621 <985579956@qq.com> Date: Thu, 20 Apr 2023 02:13:49 +0800 Subject: [PATCH] =?UTF-8?q?fix(4.2):=E4=BB=A3=E7=A0=81=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../4.2机器学习(AI)快速入门(quick start).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4.人工智能/4.2机器学习(AI)快速入门(quick start).md b/4.人工智能/4.2机器学习(AI)快速入门(quick start).md index 4d167c6..213c34d 100644 --- a/4.人工智能/4.2机器学习(AI)快速入门(quick start).md +++ b/4.人工智能/4.2机器学习(AI)快速入门(quick start).md @@ -334,7 +334,7 @@ print('y_pred=',y_test.data) ```python model = Sequential([Dense(32, input_shape=(784,)), -Activation('relu'),Dense(10),Activation('softmax')]) + Activation('relu'),Dense(10),Activation('softmax')]) # 你也可以通过 .add() 方法简单地添加层: model = Sequential() model.add(Dense(32, input_dim=784))