s452108-mlworkshops/plotwer.py
2020-04-05 18:31:32 +02:00

21 lines
378 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(round(row[0], 2))
y.append(i)
i=i+1
plt.plot(x,y, label='WER')
plt.xlabel('WER')
plt.ylabel('Numer')
plt.title('Wykres średni WER')
plt.legend()
plt.savefig('plotwer.png')