diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 4fe6e84..3e5b2a3 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -19,11 +19,9 @@
-
-
+
-
@@ -244,7 +242,7 @@
-
+
1589815443652
@@ -302,7 +300,14 @@
1589964526485
-
+
+ 1589967955430
+
+
+
+ 1589967955430
+
+
@@ -330,7 +335,8 @@
-
+
+
diff --git a/coder/image.py b/coder/image.py
index a53eda7..3622f99 100644
--- a/coder/image.py
+++ b/coder/image.py
@@ -13,11 +13,12 @@ digits = datasets.load_digits()
y = digits.target
x = digits.images.reshape((len(digits.images), -1))
+#ogarnac zbior, zwiekszyc warstwy
x_train = x[:1000000]
y_train = y[:1000000]
-x_test = x[1000:]
-y_test = y[1000:]
+x_test = x[1000000:]
+y_test = y[1000000:]
mlp = MLPClassifier(hidden_layer_sizes=(15,), activation='logistic', alpha=1e-4,
solver='sgd', tol=1e-4, random_state=1,