Upload files to "/"

This commit is contained in:
s452487 2024-05-04 16:36:19 +02:00
parent 0ad38f5210
commit 9a13f3db0a
1 changed files with 4 additions and 4 deletions

View File

@ -69,10 +69,10 @@ true_negatives_history = [x["true_negatives"] for x in history]
false_positives_history = [x["false_positives"] for x in history]
false_negatives_history = [x["false_negatives"] for x in history]
plt.plot(true_positives_history)
plt.plot(true_negatives_history)
plt.plot(false_positives_history)
plt.plot(false_negatives_history)
plt.plot(true_positives_history, "-go")
plt.plot(true_negatives_history, "-bo")
plt.plot(false_positives_history, "-ro")
plt.plot(false_negatives_history, "-mo")
plt.legend(["True positives", "True negatives", "False positives", "False negatives"])
plt.xlabel("Build number")