Skip to content

Instantly share code, notes, and snippets.

@eruffaldi
Created November 3, 2017 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eruffaldi/5e6178c9985a73fa634607c5a4bd9e3d to your computer and use it in GitHub Desktop.
Save eruffaldi/5e6178c9985a73fa634607c5a4bd9e3d to your computer and use it in GitHub Desktop.
Python plot to terminal
import sys
import numpy as np
import json
import base64
import StringIO
import matplotlib.pyplot as plt
import sys
#https://www.iterm2.com/utilities/imgls
def encode_iterm2_image(data,height=None):
if height is None:
height = "auto"
else:
height = "%spx" % height
return ("\x1B]1337;File=loss.jpg;width=auto;height=%s;inline=1;size=%dpreserveAspectRatio=1:" % (height,len(data))) + base64.b64encode(data) + "\a\033\\"
def main():
for x in sys.argv[1:]:
cmf = x+".loss.txt"
mat0 = np.loadtxt(cmf)
f = json.load(open(x,"rb"))
plt.figure()
if len(mat0.shape) == 1:
plt.plot(mat0, label = "loss");
else:
plt.plot(mat0[:,0],mat0[:,1], label = "loss");
plt.legend();
buf = StringIO.StringIO()
plt.savefig(buf,format="png")
print cmf,f["test"],"gpu" if f["gpu"] else "","singlecore" if f["single_core"] else ""
print encode_iterm2_image(buf.getvalue(),200)
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment