File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ function check_torch_validation() {
8787 fail_name=()
8888 for model_path in ${MODIFIED_MODEL_PATHS[@]}
8989 do
90- python -m graph_net.torch.validate --model-path ${GRAPH_NET_EXTRACT_WORKSPACE} /${model_path} --graph-net-samples-path ${GRAPH_NET_EXTRACT_WORKSPACE} /samples >&2
90+ python -m graph_net.torch.validate --model-path ${GRAPH_NET_EXTRACT_WORKSPACE} /${model_path} >&2
9191 [ $? -ne 0 ] && fail_name[${# fail_name[@]} ]=" ${model_path} "
9292 done
9393 local failed_cnt=${# fail_name[@]}
@@ -121,7 +121,7 @@ function check_paddle_validation() {
121121 fail_name=()
122122 for model_path in ${MODIFIED_MODEL_PATHS[@]}
123123 do
124- python -m graph_net.paddle.validate --model-path ${GRAPH_NET_EXTRACT_WORKSPACE} /${model_path} --graph-net-samples-path ${GRAPH_NET_EXTRACT_WORKSPACE} /samples >&2
124+ python -m graph_net.paddle.validate --model-path ${GRAPH_NET_EXTRACT_WORKSPACE} /${model_path} >&2
125125 [ $? -ne 0 ] && fail_name[${# fail_name[@]} ]=" ${model_path} "
126126 done
127127 local failed_cnt=${# fail_name[@]}
@@ -165,4 +165,4 @@ function main() {
165165 LOG " [INFO] check_validation run success and no error!"
166166}
167167
168- main
168+ main
You can’t perform that action at this time.
0 commit comments