-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mnist - Binary Cross-Entropy.py
97 lines (73 loc) · 3.07 KB
/
Mnist - Binary Cross-Entropy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# -*- coding: utf-8 -*-
"""
@author: john-
"""
from __future__ import print_function
import keras
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
from keras.datasets import mnist
from keras.models import Sequential
from keras.layers import Dense
##Όλα τα δεδομένα σε πίνακες train και test
(x_train, y_train), (x_test, y_test) = mnist.load_data()
##Training sets
##Φίλτρο για να απομονώσουμε τα 0 και τα 8
filter_08_train = np.where((y_train == 0 ) | (y_train == 8))
##Εφαρμογή φίλτρου
binary_x_train = x_train[filter_08_train]
binary_y_train = y_train[filter_08_train]
##Διαίρεση με το 255 γιατι τα επίπεδα είναι μεταξύ οτυ [0,255]
binary_x_train = binary_x_train / 255
##Απόδοση της τιμής 1, όπου ο πίνακας πιθανοτήτων έχει 8
for i in range(len(binary_y_train)):
if (binary_y_train[i] == 8): binary_y_train[i] = 1
##Μετασχηματισμός φωτογραφιών σε ένα διάνυσμα μεγέθους 784
binary_x_train = binary_x_train.reshape((-1, 784))
##Test sets
##Φίλτρο για να απομονώσουμε τα 0 και τα 8
filter_08_test = np.where((y_test == 0) | (y_test == 8))
binary_x_test = x_test[filter_08_test]
binary_y_test = y_test[filter_08_test]
binary_x_test = binary_x_test / 255
##Απόδοση της τιμής 1, όπου ο πίνακας πιθανοτήτων έχει 8
for i in range(len(binary_y_test)):
if (binary_y_test[i] == 8): binary_y_test[i] = 1
##Μετασχηματισμός φωτογραφιών σε ένα διάνυσμα μεγέθους 784
binary_x_test = binary_x_test.reshape((-1, 784))
#Κατασκευή νευρωνικού
model = Sequential()
model.add(Dense(300, input_shape=(784,), activation = 'relu'))
model.add(Dense(1, activation='sigmoid'))
##Παράμετροι
keras.optimizers.SGD(learning_rate = 0.0002)
model.compile(loss='binary_crossentropy', optimizer='sgd', metrics=['accuracy'])
##Εκπαίδευση
history = model.fit(binary_x_train, binary_y_train,
batch_size=128, epochs=50, verbose=2,
validation_data=(binary_x_test, binary_y_test))
##Αξιολόγηση
loss, accuracy = model.evaluate(binary_x_test, binary_y_test, verbose=0)
print('Test loss:', loss)
print('Test accuracy:', accuracy)
##Αποθήκευση όλων των απωλειών
loss_log = history.history["loss"]
loss_data={"loss": loss_log}
frame = pd.DataFrame(loss_data)
last_20 = frame.rolling(window=20).mean()
##plots
plt.plot(history.history['accuracy'])
plt.plot(history.history['val_accuracy'])
plt.title('Model accuracy')
plt.ylabel('Accuracy')
plt.xlabel('Epoch')
plt.legend(['Train', 'Test'], loc='upper left')
plt.show()
plt.plot(history.history['loss'])
plt.plot(history.history['val_loss'])
plt.title('Model loss')
plt.ylabel('Loss')
plt.xlabel('Epoch')
plt.legend(['Train', 'Test'], loc='upper left')
plt.show()