Skip to content Skip to sidebar Skip to footer
Showing posts with the label Conv Neural Network

Incompatible Shapes On Tensorflow

I am new in CNN,I am trying to make a CNN to classify image data set of handwritten English alphabe… Read more Incompatible Shapes On Tensorflow

Error When Checking Target: Expected Softmax_1 To Have Shape (1,) But Got Array With Shape (2,)', Keras

I am using Keras for building Conv Net for the first time. My layers are as follows: layers = [ Con… Read more Error When Checking Target: Expected Softmax_1 To Have Shape (1,) But Got Array With Shape (2,)', Keras

Cnns On Keras Converge To The Same Value No Matter The Input

I've been learning Keras recently and I tried my hand at the CIFAR10 dataset with CNNs. However… Read more Cnns On Keras Converge To The Same Value No Matter The Input

Using Weights Initializer With Tf.nn.conv2d

When using tf.layers.conv2d, setting the initializer is easy, it can be done through its parameter.… Read more Using Weights Initializer With Tf.nn.conv2d

Uncaught Error: Error When Checking : Expected Conv2d_input To Have 4 Dimension(s), But Got Array With Shape [275,183,3]

I performed following operations on the images before training my keras model: for img in os.listdi… Read more Uncaught Error: Error When Checking : Expected Conv2d_input To Have 4 Dimension(s), But Got Array With Shape [275,183,3]

Multiple Images Input To The Same Cnn Using Conv3d In Keras

I want to enter 8 images at the same time to the same CNN structure using conv3d. my CNN model is a… Read more Multiple Images Input To The Same Cnn Using Conv3d In Keras