Top "Tensorflow" questions

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

What does tf.nn.conv2d do in tensorflow?

I was looking at the docs of tensorflow about tf.nn.conv2d here. But I can't understand what it …

neural-network tensorflow
How to export Keras .h5 to tensorflow .pb?

I have fine-tuned inception model with a new dataset and saved it as ".h5" model in Keras. now my goal …

python tensorflow keras
How do I check if keras is using gpu version of tensorflow?

When I run a keras script, I get the following output: Using TensorFlow backend. 2017-06-14 17:40:44.621761: W tensorflow/core/platform/…

python tensorflow neural-network keras
Ordering of batch normalization and dropout?

The original question was in regard to TensorFlow implementations specifically. However, the answers are for implementations in general. This general …

python neural-network tensorflow conv-neural-network
ImportError: Could not import the Python Imaging Library (PIL) required to load image files on tensorflow

I am doing a deep learning course on udacity. For the first assignment whenI tried to run the script which …

python python-2.7 tensorflow python-imaging-library pillow
Error when checking target: expected dense_3 to have shape (3,) but got array with shape (1,)

I am working on training a VGG16-like model in Keras, on a 3 classes subset from Places205, and encountered the …

python python-3.x tensorflow keras
List of tensor names in graph in Tensorflow

The graph object in Tensorflow has a method called "get_tensor_by_name(name)". Is there anyway to get a …

python tensorflow
Get the value of some weights in a model trained by TensorFlow

I have trained a ConvNet model with TensorFlow, and I want to get a particular weight in layer. For example …

tensorflow
Loading a trained Keras model and continue training

I was wondering if it was possible to save a partly trained Keras model and continue the training after loading …

python tensorflow neural-network keras resuming-training
Will scikit-learn utilize GPU?

Reading implementation of scikit-learn in tensroflow : http://learningtensorflow.com/lesson6/ and scikit-learn : http://scikit-learn.org/stable/modules/generated/sklearn.cluster.…

python tensorflow scikit-learn k-means neuraxle