0

I wrote a resnet-based model with Keras, train on image data with augmentation. I intend to use google colab TPU, but all examples I could found do not work, can anyone show me an example?

Bob Smith
  • 36,107
  • 11
  • 98
  • 91

1 Answers1

0

Have you checked out this example? https://colab.research.google.com/notebooks/tpu.ipynb

The notebook has some augmentation (data_augment method) and to use some resnet you can replace the model with tf.keras.applications.ResNet50.

jysohn
  • 871
  • 6
  • 9