Top "Tensorflow" questions

TensorFlow is an open-source library and API designed for deep learning, written and maintained by Google.

Keras: How to get layer shapes in a Sequential model

I would like to access the layer size of all the layers in a Sequential Keras model. My code: model = …

python tensorflow deep-learning keras theano
TensorFlow on Windows: "Couldn't open CUDA library cudnn64_5.dll"

Tensorflow just released windows support. I installed the gpu version and CUDA 8.0 and python 3.5. However, after I import the tensorflow …

windows tensorflow cudnn
How to *actually* read CSV data in TensorFlow?

I'm relatively new to the world of TensorFlow, and pretty perplexed by how you'd actually read CSV data into a …

python csv tensorflow
Negative dimension size caused by subtracting 3 from 1 for 'conv2d_2/convolution'

I 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-layer
The added layer must be an instance of class Layer. Found: <tensorflow.python.keras.engine.input_layer.InputLayer>

I am new to machine learning. I was following this tutorial on fine-tuning VGG16 models. The model loaded fine with …

python tensorflow keras transfer-learning vgg-net
TensorFlow: training on my own image

I am new to TensorFlow. I am looking for the help on the image recognition where I can train my …

python tensorflow conv-neural-network tensorflow-datasets
Unable to open Tensorboard in browser

I am following google cloud machine learning tutorial and I am unable to Launch TensorBoard I've followed the steps in …

machine-learning tensorflow google-cloud-platform tensorboard
Should we do learning rate decay for adam optimizer

I'm training a network for image localization with Adam optimizer, and someone suggest me to use exponential decay. I don't …

neural-network tensorflow
TensorFlow: questions regarding tf.argmax() and tf.equal()

I am learning the TensorFlow, building a multilayer_perceptron model. I am looking into some examples like the one at: …

tensorflow neural-network deep-learning
Simple way to visualize a TensorFlow graph in Jupyter?

The official way to visualize a TensorFlow graph is with TensorBoard, but sometimes I just want a quick look at …

tensorflow jupyter graph-visualization tensorboard