“Tensorflow -Check -GPU” Code-Antworten

Überprüfen Sie, ob die Tensorflow -GPU installiert ist

import tensorflow as tf
print(tf.test.gpu_device_name())
CBT fan club

Tensorflow GPU -Test

# As it's written in Tensorflow documentatoin: 

import tensorflow as tf
print("Num GPUs Available: ", len(tf.config.experimental.list_physical_devices('GPU')))
Ugly Unicorn

Tensorflow -Check -GPU

tf.config.list_physical_devices('GPU')
Splendid Scarab

Überprüfen Sie die GPU in TensorFlow

# For tensorflow 2:
print("Num GPUs Available: ", len(tf.config.list_physical_devices('GPU')))

# For tensorflow 1:
sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))
Lazy Lizard

Tensorflow GPU -Test

tf.test.is_gpu_available(
  cuda_only=False, min_cuda_compute_capability=None
)
Witty Whale

Tensorflow kann GPU nicht sehen

$ pip uninstall tensorflow
$ pip install tensorflow-gpu
Relieved Reindeer

Ähnliche Antworten wie “Tensorflow -Check -GPU”

Fragen ähnlich wie “Tensorflow -Check -GPU”

Weitere verwandte Antworten zu “Tensorflow -Check -GPU” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen