추론 run 수정
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user