All Questions
6 questions
0
votes
1
answer
50
views
ValueError: Dimension 2 in both shapes must be equal, but are 128 and 32. Shapes are [3,3,128,32] and [3,3,32,9]
I'm trying to build a model to perform reconstruction of speech by feeding image frames from a video. But during the prediction, I got the error. Please help me resolve the error.
ValueError: ...
0
votes
1
answer
1k
views
Making a Convolutional Neural Network from a flow diagram
I am trying to make a neural network from a flow diagram. It is necessary for my analysis to translate this network into a code. Could you help me if I'm doing anything wrong. Here is the diagram. The ...
1
vote
1
answer
951
views
What's the easiest way to add CLAHE to Data Augmentation?
I am new to deep learning and currently attempting to train a classifier with CT-Scans. I am using the Keras ImageDataGenerator to perform on-the-fly augmentation on my images and enable a more robust ...
0
votes
2
answers
733
views
Predicting a class of a an image from google images(bag) using a model that is trained using fashion mnist dataset
I am trying to do Image Recognition in Python with TensorFlow and Keras.I'm only beginning with keras and machine learning. I have trained the model using fashion MNIST dataset. I am now trying to ...
0
votes
0
answers
82
views
ValueError: Error when checking input: expected simple_rnn_1_input to have 3 dimensions, but got array with shape (32, 813, 701, 3)
I'm having some trouble getting a SimpleRNN to run. I'm attempting to create a image classifier RNN using Keras using tensorflow. I read the images using the Keras ImageDataGenerator FlowFromDirectory ...
1
vote
1
answer
712
views
"unknown node" error in Keras convolutional neural network
I have the following (2D) convolutional neural network in Keras for image classification with binary labels:
model = keras.Sequential()
model.add(Conv2D(32, kernel_size=5, activation='relu', ...