-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathANET.py
More file actions
84 lines (70 loc) · 2.08 KB
/
ANET.py
File metadata and controls
84 lines (70 loc) · 2.08 KB
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
from keras.losses import mean_squared_error
from tensorflow import keras
class ANET:
def initialize_model(self, input_shape, num_actions, optimizer, loss, num_of_hidden_layers, num_of_neurons_per_layer):
anet = keras.models.Sequential()
anet.add(
keras.layers.InputLayer(
input_shape=input_shape
)
)
anet.add(
keras.layers.Conv2D(
num_of_neurons_per_layer,
(3, 3),
input_shape=input_shape,
activation='relu',
padding='same',
kernel_initializer="normal"
)
)
anet.add(
keras.layers.Conv2D(
num_of_neurons_per_layer,
(3, 3),
input_shape=input_shape,
activation='relu',
padding='same',
kernel_initializer="normal"
)
)
anet.add(
keras.layers.Conv2D(
num_of_neurons_per_layer,
(3, 3),
input_shape=input_shape,
activation='relu',
padding='same',
kernel_initializer="normal"
#kernel_regularizer='l1'
)
)
anet.add(
keras.layers.Flatten()
)
anet.add(
keras.layers.Dense(
num_actions,
activation='softmax'
)
)
anet.compile(
optimizer=optimizer,
loss=loss,
metrics=['accuracy']
)
return anet
def train_model(self, anet, num_epochs, batch_size, X_train, y_train, learning_rate):
# Set learning rate
keras.backend.set_value(anet.optimizer.learning_rate, learning_rate)
# Train network
history = anet.fit(
X_train,
y_train,
batch_size=batch_size,
epochs=num_epochs,
verbose=1,
shuffle=True
)
# return history for accuracy and loss data
return history