From 45faf7a4a01d5bab781b45a96b160d9f6122ca52 Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 10 Feb 2021 13:15:34 +0800 Subject: [PATCH] fix a typo --- chapter04-neural_network/chapter4.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter04-neural_network/chapter4.ipynb b/chapter04-neural_network/chapter4.ipynb index c1c59674..c1c312f8 100644 --- a/chapter04-neural_network/chapter4.ipynb +++ b/chapter04-neural_network/chapter4.ipynb @@ -558,7 +558,7 @@ "for model in modellist:\n", " input = model(input)\n", "# 下面会报错,因为modellist没有实现forward方法\n", - "# output = modelist(input)" + "# output = modellist(input)" ] }, {