All Questions
Tagged with cifar100 conv-neural-network
2 questions
0
votes
0
answers
46
views
Trained model on cifar10 performs poorly on real images
So I'm trying to train a model using the CIFAR10 dataset.
The problem is that while the performance of the model on validation and test sets are good (about 95-96%), the model fails to predict images ...
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 =...