2020-04-05 18:31:32 +02:00
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
import csv
|
|
|
|
|
|
|
|
x = []
|
|
|
|
y = []
|
|
|
|
i = 0
|
|
|
|
|
|
|
|
with open('averagewer.txt','r') as csvfile:
|
|
|
|
plots = csv.reader(csvfile, delimiter=' ')
|
|
|
|
for row in plots:
|
2020-04-05 19:58:09 +02:00
|
|
|
x.append(float(row[0]))
|
2020-04-05 19:56:33 +02:00
|
|
|
y.append(int(i))
|
2020-04-05 18:31:32 +02:00
|
|
|
i=i+1
|
|
|
|
|
|
|
|
plt.plot(x,y, label='WER')
|
|
|
|
plt.xlabel('WER')
|
|
|
|
plt.ylabel('Numer')
|
2020-04-05 19:55:01 +02:00
|
|
|
plt.title('Average plot WER')
|
2020-04-05 18:31:32 +02:00
|
|
|
plt.legend()
|
|
|
|
plt.savefig('plotwer.png')
|