2017-01-20 19:51:20 +04:00
|
|
|
import time
|
|
|
|
import matplotlib.pyplot as plt
|
2017-02-08 19:23:41 +04:00
|
|
|
import dill
|
2017-01-20 19:51:20 +04:00
|
|
|
|
|
|
|
|
|
|
|
current_milli_time = lambda: int(round(time.time() * 1000))
|
|
|
|
|
|
|
|
|
|
|
|
def uniquefilename(name):
|
|
|
|
if '.' in name:
|
|
|
|
tmp = name.split('.')
|
|
|
|
return tmp[0] + str(current_milli_time()) + '.' + tmp[1]
|
|
|
|
else:
|
|
|
|
return name + str(current_milli_time())
|
|
|
|
|
|
|
|
|
2017-01-27 14:26:47 +04:00
|
|
|
def showAndSaveImage(fig,file,flag,lgd=None):
|
2017-01-20 19:51:20 +04:00
|
|
|
if flag:
|
|
|
|
plt.show()
|
2017-01-27 14:26:47 +04:00
|
|
|
if lgd is not None:
|
|
|
|
fig.savefig(uniquefilename(file), additional_artists=lgd,bbox_inches='tight') #bbox_extra_artists=(lgd,), )
|
|
|
|
else:
|
|
|
|
fig.savefig(uniquefilename(file))
|
2017-01-30 03:59:50 +04:00
|
|
|
plt.close(fig)
|
|
|
|
|
|
|
|
|
|
|
|
def enumerate2(xs, start=0, step=1):
|
|
|
|
for x in xs:
|
|
|
|
yield (start, x)
|
2017-02-08 19:23:41 +04:00
|
|
|
start += step
|
|
|
|
|
|
|
|
|
|
|
|
def persist_obj(obj, file):
|
|
|
|
with open(file, 'wb') as _file:
|
|
|
|
dill.dump(obj, _file)
|
|
|
|
|
|
|
|
def load_obj(file):
|
|
|
|
with open(file, 'rb') as _file:
|
|
|
|
obj = dill.load(_file)
|
|
|
|
return obj
|
|
|
|
|
|
|
|
def persist_env(file):
|
|
|
|
dill.dump_session(file)
|
|
|
|
|
|
|
|
def load_env(file):
|
|
|
|
dill.load_session(file)
|