This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Distributed MNIST to demonstrate slow autographing of larger models when using a MirroredStrategy | |
Using the VGG16 model ~ 8 minutes to start iterating on 4 GPUs | |
Using the 2-CNN model ~ 1 minute to start iterating on 4 GPUs | |
""" | |
import tensorflow as tf | |
import numpy as np |