All Questions
1 question
0
votes
1
answer
22
views
Why keras accuracy and loss are not changing between epochs and how to fix
This is my code:
from tensorflow import keras
import numpy as np
import matplotlib.pyplot as plt
x_train, y_train), (x_test, y_test) = keras.datasets.cifar100.load_data()
num_of_class = 100
y_train =...