This file contains hidden or 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
| import matplotlib.pyplot as plt | |
| import multiprocessing | |
| import numpy as np | |
| import tensorflow as tf | |
| from keras.datasets import cifar10 | |
| # Set random seed (for reproducibility) | |
| np.random.seed(1000) | |
| tf.set_random_seed(1000) |