s452108-mlworkshops/plotwer.py
2020-04-05 20:00:38 +02:00

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