We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd72454 commit 79f1347Copy full SHA for 79f1347
charpter8_neural_networks/perceptron.py
@@ -18,6 +18,7 @@ def train(self, X_train, y_train, learning_rate):
18
for i in range(len(X_train)):
19
X = X_train[i]
20
y = y_train[i]
21
+
22
# 如果存在误分类点
23
# 更新参数
24
# 直到没有误分类点
0 commit comments