하이퍼파라미터 기능 추가

This commit is contained in:
2026-02-03 15:09:03 +09:00
parent 335e9d33d6
commit 15aa2fa041
5 changed files with 4 additions and 202 deletions

View File

@@ -66,27 +66,6 @@ public class ModelTrainService {
.build();
}
/**
* 하이퍼파라미터 단건 조회
*
* @param hyperVer 하이퍼파라미터 버전
* @return 하이퍼파라미터 정보
*/
public ModelMngDto.HyperParamInfo getHyperParam(String hyperVer) {
return hyperParamCoreService.findByHyperVer(hyperVer);
}
/**
* 하이퍼파라미터 삭제
*
* @param hyperVer 하이퍼파라미터 버전
*/
@Transactional
public void deleteHyperParam(String hyperVer) {
hyperParamCoreService.deleteHyperParam(hyperVer);
log.info("하이퍼파라미터 삭제 완료: {}", hyperVer);
}
/**
* 학습 시작
*