추론 run 수정

This commit is contained in:
2026-02-25 22:39:49 +09:00
parent f2500c33e6
commit 9197819340
2 changed files with 96 additions and 109 deletions

View File

@@ -24,11 +24,11 @@ public class InferenceSendDto {
private Double priority;
public String getCd_model_path() {
return cd_model_path==null?null:cd_model_path.replace("kamcd-nfs", "data");
return cd_model_path == null ? null : cd_model_path.replace("kamcd-nfs", "data");
}
public String getCls_model_path() {
return cls_model_path==null?null:cls_model_path.replace("kamcd-nfs", "data");
return cls_model_path == null ? null : cls_model_path.replace("kamcd-nfs", "data");
}
@Getter
@@ -45,11 +45,11 @@ public class InferenceSendDto {
public String getInput1_scene_path() {
return input1_scene_path==null?null:input1_scene_path.replace("kamcd-nfs", "data");
return input1_scene_path == null ? null : input1_scene_path.replace("kamcd-nfs", "data");
}
public String getInput2_scene_path() {
return input2_scene_path==null?null:input2_scene_path.replace("kamcd-nfs", "data");
return input2_scene_path == null ? null : input2_scene_path.replace("kamcd-nfs", "data");
}
}
}