Top "Tensorflow" questions

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

How to check if keras tensorflow backend is GPU or CPU version?

I understand that when installing tensorflow, you either install the GPU or CPU version. How can I check which one …

tensorflow keras
Can Keras with Tensorflow backend be forced to use CPU or GPU at will?

I have Keras installed with the Tensorflow backend and CUDA. I'd like to sometimes on demand force Keras to use …

python machine-learning tensorflow keras
What is the meaning of the word logits in TensorFlow?

In the following TensorFlow function, we must feed the activation of artificial neurons in the final layer. That I understand. …

tensorflow machine-learning neural-network deep-learning cross-entropy
Installing tensorflow with anaconda in windows

I have installed Anaconda on Windows 64 bit. I have downloaded PyCharm for creating a project and in the terminal of …

python windows anaconda tensorflow conda
Tensorflow installation error: not a supported wheel on this platform

when I try to install tensorflow by cloning from git, I run into the error "no module named copyreg," so …

installation pip python-wheel tensorflow
In TensorFlow, what is the difference between Session.run() and Tensor.eval()?

TensorFlow has two ways to evaluate part of graph: Session.run on a list of variables and Tensor.eval. Is …

python tensorflow
How to get the dimensions of a tensor (in TensorFlow) at graph construction time?

I am trying an Op that is not behaving as expected. graph = tf.Graph() with graph.as_default(): train_dataset = …

python tensorflow deep-learning tensor
How to get Tensorflow tensor dimensions (shape) as int values?

Suppose I have a Tensorflow tensor. How do I get the dimensions (shape) of the tensor as integer values? I …

python tensorflow machine-learning artificial-intelligence
How can I run Tensorboard on a remote server?

I'm new to Tensorflow and would greatly benefit from some visualizations of what I'm doing. I understand that Tensorboard is …

tensorflow machine-learning data-visualization remote-access tensorboard