4 import matplotlib.cm
as cm
5 import matplotlib.colors
as colors
6 import matplotlib.pyplot
as plt
7 from mpl_toolkits.axes_grid1
import make_axes_locatable
8 import matplotlib.axes
as maxes
19 │ ├── 3denvar_2stream_bumploc_unsinterp.run
22 │ ├── plot_cost_grad.py
26 VAR1=os.getenv(
'VAR1',
'Quadratic cost function')
28 VAR2=os.getenv(
'VAR2',
'Norm reduction')
29 file_name =
'costgrad.txt'
32 return list(range(a, b+1))
37 for files
in os.listdir(
'../testoutput/'):
38 if fnmatch.fnmatch(files,
'?d*.run'):
39 dalogfiles.append(
'../testoutput/'+files)
42 for dalogfile
in dalogfiles:
43 print(
'check dalogfile=',dalogfile,dalogfile[14:][:-4])
44 file_name =
'costgrad_'+dalogfile[14:][:-4]+
'.txt'
46 exists = os.path.isfile(file_name)
48 os.system(
'rm '+ file_name)
51 cmd =
'grep "'+VAR1+
': J " '+ dalogfile +
' \
52 | grep -o -P "(\(\K[^\)]+)|(=\K.+)" |paste -d " " - - > cost.txt'
55 cmd =
'grep "'+VAR2+
'" '+ dalogfile +
' \
56 | grep -o -P "=\K.+" > gradorig.txt'
59 nLineCost = int(os.popen(
'wc -l < cost.txt').read())
60 nLineGrad = int(os.popen(
'wc -l < gradorig.txt').read())
63 if nLineCost != nLineGrad:
64 cmd =
'head -n '+str(nLineCost)+
' gradorig.txt > grad.txt'
66 cmd =
'cp gradorig.txt grad.txt'
69 cmd =
'paste cost.txt grad.txt > '+ file_name +
' ; rm cost.txt grad.txt gradorig.txt'
72 alist = open(file_name).read().split()
73 iters = numpy.asarray(alist[0::3])
74 cost = numpy.asarray(alist[1::3]).astype(np.float)
75 grad = numpy.asarray(alist[2::3]).astype(np.float)
77 plot(forx,cost,iters,VAR1,dalogfile[14:])
78 plot(forx,grad,iters,VAR2,dalogfile[14:])
80 def plot(forx,value,iters,VAR,expname):
81 fig, ax1 = plt.subplots()
83 ax1.set_xlabel(
'Iterations',fontsize=16)
84 ax1.set_xticks(forx[::2])
85 ax1.set_xticklabels(iters.astype(np.int)[::2])
86 ax1.set_ylabel(
'%s'%VAR,fontsize=16)
87 plt.plot(forx,value,
'r.-')
88 plt.ticklabel_format(style=
'sci', axis=
'y', scilimits=(0,4))
90 plt.savefig(
'%s_%s.png'%(VAR[:4],expname[:-4]),dpi=200,bbox_inches=
'tight')
96 if __name__ ==
'__main__':
main()
def plot(forx, value, iters, VAR, expname)