For any Keras layer (Layer class), can someone explain how to understand the difference between input_shape, units, dim, etc.? …
neural-network deep-learning keras keras-layer tensorI want to train a deep network starting with the following layer: model = Sequential() model.add(Conv2D(32, 3, 3, input_shape=(32, 32, 3))) …
deep-learning keras keras-layerI am using Windows 10, Python 3.5, and tensorflow 1.1.0. I have the following script: import tensorflow as tf import tensorflow.contrib.keras.…
python tensorflow deep-learning keras keras-layerI am trying to run some code to create an LSTM model but i get an error: AttributeError: module 'tensorflow' …
python tensorflow keras keras-layer tf.kerasI am trying to do a transfer learning; for that purpose I want to remove the last two layers of …
python theano keras keras-layerUsing ResNet50 pre-trained Weights I am trying to build a classifier. The code base is fully implemented in Keras high-level …
python tensorflow memory keras-layer resnetI have tried to build a CNN with one layer, but I have some problem with it. Indeed, the compilator …
python keras text-classification keras-layerI built a Sequential model with the VGG16 network at the initial base, for example: from keras.applications import VGG16 …
keras keras-layer convolutional-neural-networkI got this error message when declaring the input layer in Keras. ValueError: Negative dimension size caused by subtracting 3 from 1 …
python tensorflow neural-network keras keras-layerI'd like to reset (randomize) the weights of all layers in my Keras (deep learning) model. The reason is that …
python tensorflow machine-learning keras keras-layer