test 선택한 에폭 log 확인 추가

This commit is contained in:
2026-02-20 14:13:22 +09:00
parent 832e1b5681
commit 901ea83fb7
2 changed files with 2 additions and 4 deletions

View File

@@ -26,10 +26,9 @@ public class TmpDatasetService {
* @param uid 임시폴더 uuid
* @param type train, val, test
* @param links tif pull path
* @return
* @throws IOException
*/
public String buildTmpDatasetHardlink(String uid, String type, List<ModelTrainLinkDto> links)
public void buildTmpDatasetHardlink(String uid, String type, List<ModelTrainLinkDto> links)
throws IOException {
if (links == null || links.isEmpty()) {
@@ -71,7 +70,6 @@ public class TmpDatasetService {
}
log.info("tmp dataset created: {}, hardlinksMade={}", tmp, hardlinksMade);
return uid;
}
private long link(Path tmp, String type, String part, String fullPath) throws IOException {

View File

@@ -79,7 +79,7 @@ public class TrainJobWorker {
evalReq.setTimeoutSeconds(null);
evalReq.setDatasetFolder(datasetFolder);
evalReq.setOutputFolder(outputFolder);
log.info("[JOB] test epoch={}", epoch);
result = dockerTrainService.runEvalSync(evalReq, containerName);
} else {