houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.iailab.module.model.command;
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.iailab.module.mcs.dto.StModelDTO;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年05月17日 11:50:00
 */
@Slf4j
@Component
public class PyCommand {
 
    public String[] getCommand(StModelDTO stModel, List<Object> params, Map<String, Object> settings) {
        String[] command = new String[2 + params.size() + 1];
        command[0] = "python";
        command[1] = stModel.getModelPath();
        for (int i = 0; i < params.size(); i++) {
            command[2 + i] = JSONArray.toJSONString(params.get(i));
        }
        command[command.length - 1] = JSONObject.toJSONString(settings).replace("\"", "'");
        return command;
    }
}