Browse Source

实验模型手动导出

dev-lhz
chenzhihang 1 year ago
parent
commit
63b01b0ef7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/ModelsServiceImpl.java

+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/ModelsServiceImpl.java View File

@@ -725,7 +725,7 @@ public class ModelsServiceImpl implements ModelsService {

if (Constant.Source_Hand_Export.equals(modelsVo.getModelSource())) {
String bucketName = sourcePath.split("/")[0];
String root_path = sourcePath.split("/")[1];
String root_path = sourcePath.substring(bucketName.length() + 1);
minioUtil.downloadFiles(bucketName, root_path, modelPath);

HashMap<String, TrainTaskDepency> map = new HashMap<>();


Loading…
Cancel
Save