File tree Expand file tree Collapse file tree 5 files changed +53
-5
lines changed Expand file tree Collapse file tree 5 files changed +53
-5
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ docker run -it --rm --platform=linux/amd64 automlai:v2.0
11
11
julia --project -- ./main.jl -t regression --predict_only -u http://mlflow.isiath.duckdns.org:8082 --runid 064fb7a188d34a3da87f2271b8d8d9c2 -o /tmp/reg.txt ./iris_reg.csv
12
12
julia --project -- ./main.jl -u http://mlflow.isiath.duckdns.org:8082 -t classification --predict_only --runid e33bbd5c12a54756b1333df1f23a8366 -o /tmp/class.txt ./iris.csv
13
13
14
- docker run -it --rm -v ` pwd` :/data/ localhost/automlai -u http://mlflow.isiath.duckdns.org:8082 -t classification --predict_only --runid e33bbd5c12a54756b1333df1f23a8366 /data/iris.csv
14
+ docker run -it --rm -v ` pwd` :/data/ localhost/automlai:v2.0 -u http://mlflow.isiath.duckdns.org:8082 -t classification --predict_only --runid e33bbd5c12a54756b1333df1f23a8366 /data/iris.csv
15
15
16
- docker run -it --rm -v ` pwd` :/data/ localhost/automlai -u http://mlflow.isiath.duckdns.org:8082 -t regression --predict_only --runid 064fb7a188d34a3da87f2271b8d8d9c2 /data/iris_reg.csv
16
+ docker run -it --rm -v ` pwd` :/data/ localhost/automlai:v2.0 -u http://mlflow.isiath.duckdns.org:8082 -t regression --predict_only --runid 064fb7a188d34a3da87f2271b8d8d9c2 /data/iris_reg.csv
Original file line number Diff line number Diff line change 1
1
apiVersion : argoproj.io/v1alpha1
2
2
kind : ClusterWorkflowTemplate
3
3
metadata :
4
- name : automlad-template
4
+ name : automlad
5
5
spec :
6
6
entrypoint : run-automlad
7
7
arguments :
Original file line number Diff line number Diff line change 83
83
s3 :
84
84
key : csv/
85
85
container :
86
- image : ppalmes/automlai:v1 .0
86
+ image : ppalmes/automlai:v2 .0
87
87
command :
88
88
args :
89
89
- " -t{{inputs.parameters.predictiontype}}"
Original file line number Diff line number Diff line change
1
+ apiVersion : argoproj.io/v1alpha1
2
+ kind : ClusterWorkflowTemplate
3
+ metadata :
4
+ name : automlai-prediction
5
+ spec :
6
+ entrypoint : run-amlp
7
+ arguments :
8
+ parameters :
9
+ - name : url
10
+ value : http://sunrise-mlflow-tracking.mlflow:5080
11
+ - name : input
12
+ value : iris_reg.csv
13
+ - name : predictiontype
14
+ value : regression
15
+ - name : outputloc
16
+ value : output.txt
17
+ - name : runid
18
+ value : NONE
19
+ templates :
20
+ - name : run-amlp
21
+ inputs :
22
+ parameters :
23
+ - name : url
24
+ - name : input
25
+ - name : predictiontype
26
+ - name : outputloc
27
+ - name : runid
28
+ artifacts :
29
+ - name : file
30
+ path : /inputfile
31
+ s3 :
32
+ key : csv/
33
+ container :
34
+ image : ppalmes/automlai:v2.0
35
+ command :
36
+ args :
37
+ - " -u{{inputs.parameters.url}}"
38
+ - " -t{{inputs.parameters.predictiontype}}"
39
+ - " -o/outputfile"
40
+ - " --predict_only"
41
+ - " --runid {{inputs.parameters.runid}}"
42
+ - " /inputfile/{{inputs.parameters.input}}"
43
+ outputs :
44
+ artifacts :
45
+ - name : ofile
46
+ path : /outputfile
47
+ s3 :
48
+ key : " output/{{inputs.parameters.predictiontype}}_{{inputs.parameters.input}}.tgz"
Original file line number Diff line number Diff line change 43
43
s3 :
44
44
key : csv/
45
45
container :
46
- image : ppalmes/automlai:v1 .0
46
+ image : ppalmes/automlai:v2 .0
47
47
command :
48
48
args :
49
49
- " -u{{inputs.parameters.url}}"
You can’t perform that action at this time.
0 commit comments