Upload files to "/"
This commit is contained in:
parent
0ad38f5210
commit
9a13f3db0a
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user