Top "Conv-neural-network" questions

A convolutional neural network (CNN, or ConvNet) is a class of deep, feed-forward artificial neural networks that has successfully been applied to analyzing visual imagery.

What are forward and backward passes in neural networks?

What is the meaning of forward pass and backward pass in neural networks? Everybody is mentioning these expressions when talking …

neural-network backpropagation conv-neural-network
ValueError: Input 0 is incompatible with layer conv1d_1: expected ndim=3, found ndim=4

I am building a prediction model for the sequence data using conv1d layer provided by Keras. This is how …

machine-learning neural-network deep-learning keras conv-neural-network
Convolutional neural network Conv1d input shape

I am trying to create a CNN to classify data. My Data is X[N_data, N_features] I want …

input machine-learning neural-network keras conv-neural-network
TypeError: Unexpected keyword argument passed to optimizer: learning_rate

I am trying to load a Keras model which was trained on an Azure VM (NC promo). But I am …

python tensorflow keras deep-learning conv-neural-network
ValueError: Tensor conversion requested dtype float32 for Tensor with dtype int32

I get following error ValueError: Tensor conversion requested dtype float32 for Tensor with dtype int32: 'Tensor("Placeholder_1:0", shape=TensorShape([Dimension(128), …

neural-network tensorflow conv-neural-network
Confusion matrix on images in CNN keras

I have trained my model(multiclass classification) of CNN using keras and now I want to evaluate the model on …

python scikit-learn keras conv-neural-network
Reshaping Keras layers

I have an input image 416x416. How can I create an output of 4 x 10, where 4 is number of columns and 10 …

python neural-network keras artificial-intelligence conv-neural-network
What is Depth of a convolutional neural network?

I was taking a look at Convolutional Neural Network from CS231n Convolutional Neural Networks for Visual Recognition. In Convolutional …

machine-learning neural-network deep-learning conv-neural-network
How to turn off dropout for testing in Tensorflow?

I am fairly new to Tensorflow and ML in general, so I hereby apologize for a (likely) trivial question. I …

python machine-learning tensorflow neural-network conv-neural-network
Merge 2 sequential models in Keras

I a trying to merge 2 sequential models in keras. Here is the code: model1 = Sequential(layers=[ # input layers and convolutional …

python machine-learning neural-network keras conv-neural-network