2 Commits

Author SHA1 Message Date
3916b13876 Merge pull request '이어하기 수정' (#102) from feat/training_260202 into develop
Reviewed-on: #102
2026-02-13 14:04:52 +09:00
4f24e09c57 이어하기 수정 2026-02-13 14:04:33 +09:00

View File

@@ -207,7 +207,9 @@ public class TrainJobService {
try { try {
String ckptFile = Files.readString(last).trim(); // epoch_10.pth String ckptFile = Files.readString(last).trim(); // epoch_10.pth
ckptFile = ckptFile.replace("/checkpoints", responseDir);
log.info("resume ckptFile: {}", ckptFile); log.info("resume ckptFile: {}", ckptFile);
if (ckptFile.isEmpty()) return null; if (ckptFile.isEmpty()) return null;
Path ckptHost = outDir.resolve(ckptFile); Path ckptHost = outDir.resolve(ckptFile);