s452108-mlworkshops/plotwer.py
2020-04-05 19:56:33 +02:00

21 lines
388 B
Python

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:
x.append(float(round(row[0], 2)))
y.append(int(i))
i=i+1
plt.plot(x,y, label='WER')
plt.xlabel('WER')
plt.ylabel('Numer')
plt.title('Average plot WER')
plt.legend()
plt.savefig('plotwer.png')