Last active
January 15, 2019 19:21
-
-
Save virtualdvid/4abb2520a75f45cfba31a63f738f5c62 to your computer and use it in GitHub Desktop.
Gap: flow from directory
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
print("Gap: flow from directory") | |
start_mem = psutil.virtual_memory().used | |
start_time = time.time() | |
dataset = Images(config=['stream']) | |
dataset.load('flowers') | |
dataset.minibatch = 32 | |
train_generator = dataset.minibatch | |
print("PRE-TIME", time.time() - start_time) | |
start_time = time.time() | |
step = 0 | |
for x_batch, y_batch in train_generator: | |
step += 1 | |
if step > STEPS: break | |
print("TIME", time.time() - start_time) | |
curr_mem = psutil.virtual_memory().used | |
print("Memory Used: %.2f GB" % ((curr_mem - start_mem) / GB)) | |
# Release unused memory | |
gc.collect() | |
time.sleep(5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment