[PYTHON] Führen Sie Keras auf Google Colaboratory TPU aus

Vorbereitung

%tensorflow_version 2.x
import tensorflow as tf
print("Tensorflow version " + tf.__version__)

try:
  tpu = tf.distribute.cluster_resolver.TPUClusterResolver()  # TPU detection
  print('Running on TPU ', tpu.cluster_spec().as_dict()['worker'])
except ValueError:
  raise BaseException('ERROR: Not connected to a TPU runtime; please see the previous cell in this notebook for instructions!')

tf.config.experimental_connect_to_cluster(tpu)
tf.tpu.experimental.initialize_tpu_system(tpu)
tpu_strategy = tf.distribute.TPUStrategy(tpu)
def create_model():
  #Modelldefinition
  return model
with tpu_strategy.scope():
  model = create_model()

Lernteil

Lerne normal

history = model.fit( x_train, y_train, epochs = 50, batch_size = 2048, validation_data=(x_test, y_test))

Recommended Posts

Führen Sie Keras auf Google Colaboratory TPU aus
Verwenden Sie TPU und Keras mit Google Colaboratory
Verwenden Sie music21 in Google Colaboratory
Pandas 100 klopft an Google Colaboratory
Google-Labor
[Python] Führen Sie Flask in Google App Engine aus
Zusammenfassung der Einrichtung von Google Colaboratory
Führen Sie Django auf PythonAnywhere aus
Führen Sie mysqlclient auf Lambda aus
Führen Sie OpenMVG auf einem Mac aus
"Deep Learning from Grund" Memo zum Selbststudium (Nr. 14) Führen Sie das Programm in Kapitel 4 in Google Colaboratory aus
Führen Sie Jupyter unter Ubuntu unter Windows aus
Führen Sie Openpose unter Python (Windows) aus.
Google Edge TPU-Inferenzübersicht
ls -R auf Google Drive
Lernen Sie Python mit Google Colaboratory
Führen Sie Tensorflow 2.x unter Python 3.7 aus
Führen Sie Pythons CGI auf CORESERVER aus
Führen Sie den Unix-Befehl auf Python aus
Führen Sie IPython Notebook auf Docker aus
Führen Sie YOLO v3 unter AWS v2 aus
Probieren Sie OpenCV mit Google Colaboratory aus
Führen Sie Circuit Python auf Seeeduino XIAO aus
Führen Sie Jupyter Notebook unter Windows aus
Tool-Organisation: Google Colaboratory (aktualisiert 2020.2.24)
[Keras] 75% Genauigkeit mit CIFAR10-Datensatz
Führen Sie OpenVino unter macOS Catalina aus
Führen Sie YOLO v3 unter AWS aus
So verwenden Sie Google Colaboratory
So führen Sie den Übungscode des Buches "Profitable KI mit Python erstellen" in Google Colaboratory aus