ium_434804/tensor-plot.py
Dawid f1af6da7f1
Some checks failed
s434804-evaluation/pipeline/head There was a failure building this commit
added plot and new parameters;change mail handling
2021-05-13 22:27:41 +02:00

6 lines
156 B
Python

import pandas as pd
from matplotlib import pyplot as plt
df = pd.read_csv("evaluation.csv")
df.plot(x="build", y="rmse")
plt.savefig("evaluation_plot.png")