Skip to content

Commit 6498f2b

Browse files
committed
Merge branch 'master' of https://github.com/Dibbu-cell/Python
2 parents 3dda944 + ddbc86e commit 6498f2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

machine_learning/multilayer_perceptron_classifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def multilayer_perceptron_classifier(
8989
alpha=1e-5,
9090
hidden_layer_sizes=(5, 2),
9191
random_state=42, # Fixed for deterministic results
92-
max_iter=1000, # Ensure convergence
92+
max_iter=1000, # Ensure convergence
9393
)
9494
clf.fit(train_features, train_labels)
9595
predictions = clf.predict(test_features)

0 commit comments

Comments
 (0)