[PYTHON] Exécutez Keras sur Google Colaboratory TPU

Préparation

%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():
  #définition du modèle
  return model
with tpu_strategy.scope():
  model = create_model()

Partie d'apprentissage

Apprenez normalement

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

Recommended Posts

Exécutez Keras sur Google Colaboratory TPU
Utilisez TPU et Keras avec Google Colaboratory
Utilisez music21 sur Google Colaboratory
Pandas 100 coups sur Google Colaboratory
Collaboratoire Google
[Python] Exécutez Flask sur Google App Engine
Résumé de la configuration de Google Colaboratory
Exécutez Django sur PythonAnywhere
Exécutez mysqlclient sur Lambda
Exécutez OpenMVG sur Mac
"Deep Learning from scratch" Mémo d'auto-apprentissage (n ° 14) Exécutez le programme du chapitre 4 sur Google Colaboratory
Exécutez Jupyter sur Ubuntu sous Windows
Exécutez Openpose sur Python (Windows)
Présentation de l'inférence Google Edge TPU
ls -R sur Google Drive
Étudiez Python avec Google Colaboratory
Exécutez Tensorflow 2.x sur Python 3.7
Exécutez le CGI de Python sur CORESERVER
Exécutez la commande unix sur python
Exécutez IPython Notebook sur Docker
Exécutez YOLO v3 sur AWS v2
Essayez OpenCV avec Google Colaboratory
Exécutez Circuit Python sur Seeeduino XIAO
Exécutez Jupyter Notebook sous Windows
Organisation de l'outil: Google Colaboratory (mise à jour 2020.2.24)
[Keras] 75% de précision avec l'ensemble de données CIFAR10
Exécutez OpenVino sur macOS Catalina
Exécutez YOLO v3 sur AWS
Comment utiliser Google Colaboratory
Comment exécuter le code pratique du livre "Making Profitable AI with Python" sur Google Colaboratory