update dockerfile
This commit is contained in:
parent
f235c786ce
commit
fc24b19266
@ -1,20 +1,20 @@
|
||||
import matplotlib
|
||||
matplotlib.use('Agg')
|
||||
import matplotlib.pyplot as plt
|
||||
import csv
|
||||
|
||||
matplotlib.use('Agg')
|
||||
axe_x = []
|
||||
axe_y = []
|
||||
builds_iterator = 1
|
||||
it = 1
|
||||
|
||||
with open('srr.txt','r') as file:
|
||||
plots = csv.reader(file)
|
||||
for row in plots:
|
||||
y.append(float(row[0]))
|
||||
x.append(int(i))
|
||||
i+=1
|
||||
axe_y.append(float(row[0]))
|
||||
axe_x.append(int(it))
|
||||
it+=1
|
||||
|
||||
plt.plot(x,y)
|
||||
plt.plot(axe_x,axe_y)
|
||||
plt.ylabel('Percentage SRR')
|
||||
plt.xlabel('Build')
|
||||
plt.title('SRR over several builds')
|
||||
|
@ -1,20 +1,20 @@
|
||||
import matplotlib
|
||||
matplotlib.use('Agg')
|
||||
import matplotlib.pyplot as plt
|
||||
import csv
|
||||
|
||||
matplotlib.use('Agg')
|
||||
axe_x = []
|
||||
axe_y = []
|
||||
builds_iterator = 1
|
||||
it = 1
|
||||
|
||||
with open('wer.txt','r') as file:
|
||||
plots = csv.reader(file)
|
||||
for row in plots:
|
||||
y.append(float(row[0]))
|
||||
x.append(int(i))
|
||||
i=i+1
|
||||
axe_y.append(float(row[0]))
|
||||
axe_x.append(int(it))
|
||||
it+=1
|
||||
|
||||
plt.plot(x,y)
|
||||
plt.plot(axe_x,axe_y)
|
||||
plt.ylabel('Percentage Word Error Rate')
|
||||
plt.xlabel('Build')
|
||||
plt.title('WER over several builds')
|
||||
|
Loading…
Reference in New Issue
Block a user