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
STEPS = 1000 | |
print("Gap: Flow") | |
start_mem = psutil.virtual_memory().used | |
start_time = time.time() | |
dataset.minibatch = 32 | |
train_generator = dataset.minibatch | |
print("PRE-TIME", time.time() - start_time) |
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
STEPS = 1000 | |
print("Keras: Flow") | |
datagen = ImageDataGenerator() | |
start_time = time.time() | |
datagen.fit(X_train) | |
train_generator = datagen.flow(X_train, Y_train, batch_size=32) |
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
# Image Preprocessing | |
start_time = time.time() | |
dataset = Images('flowers', 'flowers', config=['resize=(128,128)', 'store']) | |
print("Preprocessing: ", int(time.time() - start_time), "secs") | |
print("Classes", dataset.classes, "Images:", dataset.count) | |
curr_mem = psutil.virtual_memory().used |
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
MB = (1024 * 1024) | |
GB = (MB * 1024) | |
start_mem = psutil.virtual_memory().used | |
print("Start Memory: %.2f GB" % (start_mem / GB)) |
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 os | |
import gc | |
import time | |
import psutil | |
from keras.preprocessing.image import ImageDataGenerator | |
from gapcv.vision import Images |
NewerOlder