feat/training_260202 #111

Merged
gina merged 2 commits from feat/training_260202 into develop 2026-02-18 15:29:25 +09:00
Showing only changes of commit 99a4597b5f - Show all commits

View File

@@ -70,7 +70,7 @@ public class ModelTrainMetricsJobService {
for (CSVRecord record : parser) {
int epoch = Integer.parseInt(record.get("Epoch")) + 1; // TODO : 나중에 AI 개발 완료되면 -1 하기
int epoch = Integer.parseInt(record.get("Epoch"));
long iteration = Long.parseLong(record.get("Iteration"));
double Loss = Double.parseDouble(record.get("Loss"));
double LR = Double.parseDouble(record.get("LR"));