-
Notifications
You must be signed in to change notification settings - Fork 22
/
utils.py
49 lines (37 loc) · 1.33 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""utils.py"""
import argparse
import subprocess
class DataGather(object):
def __init__(self):
self.data = self.get_empty_data_dict()
def get_empty_data_dict(self):
return dict(iter=[],
D_z=[],
D_z_tilde=[],
recon_loss=[],
Q_loss=[],
D_loss=[],
mmd_loss=[],
mu=[],
var=[],
images=[],)
def insert(self, **kwargs):
for key in kwargs:
self.data[key].append(kwargs[key])
def flush(self):
self.data = self.get_empty_data_dict()
def str2bool(v):
# codes from: https://stackoverflow.com/questions/15008758/parsing-boolean-values-with-argparse
if v.lower() in ('yes', 'true', 't', 'y', '1'):
return True
elif v.lower() in ('no', 'false', 'f', 'n', '0'):
return False
else:
raise argparse.ArgumentTypeError('Boolean value expected.')
def grid2gif(image_str, output_gif, delay=100):
"""Make GIF from images.
code from:
https://stackoverflow.com/questions/753190/programmatically-generate-video-or-animated-gif-in-python/34555939#34555939
"""
str1 = 'convert -delay '+str(delay)+' -loop 0 ' + image_str + ' ' + output_gif
subprocess.call(str1, shell=True)