Skip to content

Commit 1841029

Browse files
committed
Trained Model
1 parent ea7ea3d commit 1841029

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

model.pkl

5.83 MB
Binary file not shown.

train.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sklearn.externals import joblib
88
from sklearn import datasets
99
import numpy as np
10-
10+
from sklearn.metrics import classification_report
1111
#for creating Neural Network I am using MLPClassifier from sklearn
1212

1313
from sklearn.neural_network.multilayer_perceptron import MLPClassifier
@@ -38,6 +38,11 @@
3838
#fitting our model
3939
mlp.fit(X_train, y_train)
4040

41+
'''
42+
Final Output:
43+
Iteration 33, loss = 0.00299869
44+
'''
45+
4146
print("Training set score: %f" % mlp.score(X_train, y_train))
4247
print("Test set score: %f" % mlp.score(X_test, y_test))
4348

0 commit comments

Comments
 (0)