feat/training_260202 #45

Merged
teddy merged 8 commits from feat/training_260202 into develop 2026-02-12 12:06:04 +09:00
Showing only changes of commit c56c0ca605 - Show all commits

View File

@@ -78,7 +78,7 @@ public class DockerTrainService {
logBuilder.append(line).append('\n');
}
// 2) 🔥 epoch 감지 + DB 업데이트
// 2) epoch 감지 + DB 업데이트
Matcher m = epochPattern.matcher(line);
if (m.find()) {
int currentEpoch = Integer.parseInt(m.group(1));