-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathAnimator.java
59 lines (51 loc) · 1.77 KB
/
Animator.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import tech.tablesaw.api.FloatColumn;
import tech.tablesaw.api.Row;
import tech.tablesaw.api.StringColumn;
import tech.tablesaw.api.Table;
import tech.tablesaw.plotly.api.LinePlot;
/**
* Animates a graph with real-time data.
*
* <p>Defined in Ch 3.6 Softmax Reg. from Scratch
*/
public class Animator {
private String id; // Id reference of graph(for updating graph)
private Table data; // Data Points
public Animator() {
id = "";
// Incrementally plot data
data =
Table.create("Data")
.addColumns(
FloatColumn.create("epoch", new float[] {}),
FloatColumn.create("value", new float[] {}),
StringColumn.create("metric", new String[] {}));
}
// Add a single metric to the table
public void add(float epoch, float value, String metric) {
Row newRow = data.appendRow();
newRow.setFloat("epoch", epoch);
newRow.setFloat("value", value);
newRow.setString("metric", metric);
}
// Add accuracy, train accuracy, and train loss metrics for a given epoch
// Then plot it on the graph
public void add(float epoch, float accuracy, float trainAcc, float trainLoss) {
add(epoch, trainLoss, "train loss");
add(epoch, trainAcc, "train accuracy");
add(epoch, accuracy, "test accuracy");
show();
}
// Display the graph
public void show() {
if (id.equals("")) {
id = display(LinePlot.create("", data, "epoch", "value", "metric"));
return;
}
update();
}
// Update the graph
public void update() {
updateDisplay(id, LinePlot.create("", data, "epoch", "value", "metric"));
}
}