use of org.deeplearning4j.ui.stats.impl.java.JavaStatsReport in project deeplearning4j by deeplearning4j.
the class TestStatsStorage method getReport.
private static StatsReport getReport(int sid, int tid, int wid, long time, boolean useJ7Storage) {
StatsReport rep;
if (useJ7Storage) {
rep = new JavaStatsReport();
} else {
rep = new SbeStatsReport();
}
rep.reportIDs("sid" + sid, "tid" + tid, "wid" + wid, time);
rep.reportScore(100.0);
rep.reportPerformance(1000, 1001, 1002, 1003.0, 1004.0);
return rep;
}
Aggregations