I have uninstalled Keras and Tensorflow and installed them both using
JavaScript
x
5
1
pip install tensorflow == 2.6
2
3
4
pip install keras == 2.6
5
But even after, I still have this strange thing that it’s only 5 epochs that are running:
I cannot track when this situation occurred, but it used to run all of the epochs. Here is my code:
JavaScript
1
46
46
1
train_datagen = ImageDataGenerator(rescale = 1.0/255.)
2
test_datagen = ImageDataGenerator(rescale = 1.0/255.)
3
4
train_generator = tf.keras.utils.image_dataset_from_directory(base_dir,
5
batch_size=20,
6
label_mode='categorical',
7
validation_split = 0.2,
8
subset='training',
9
seed=123,
10
image_size=(200, 200))
11
12
validation_generator = tf.keras.utils.image_dataset_from_directory(base_dir,
13
batch_size=20,
14
label_mode='categorical',
15
validation_split = 0.2,
16
subset='validation',
17
seed=123,
18
image_size=(200, 200))
19
model = Sequential([
20
Conv2D(32, (3, 3), activation='relu', input_shape=(200, 200, 3)),
21
MaxPooling2D((2, 2)),
22
Conv2D(64, (3, 3), activation='relu'),
23
MaxPooling2D((2, 2)),
24
Conv2D(128, (3, 3), activation='relu'),
25
tf.keras.layers.Dropout(0.2),
26
Flatten(),
27
Dense(256, activation='relu'),
28
Dense(4, activation='softmax')
29
])
30
31
model.compile(optimizer='Adam',
32
loss='categorical_crossentropy',
33
metrics=['accuracy']
34
)
35
36
history = model.fit(
37
train_generator,
38
steps_per_epoch = 25,
39
epochs = 25,
40
validation_data = validation_generator,
41
validation_steps = 25,
42
verbose = 1
43
)
44
45
plot_loss(history)
46
I also use
JavaScript
1
3
1
import logging
2
logging.getLogger("tensorflow").setLevel(logging.ERROR)
3
Please direct me.
Advertisement
Answer
Try replacing the steps_per_epoch = 25
and the steps_per_epoch = 25
with just batch_size = 25
.