You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
339 B
25 lines
339 B
#!/bin/bash
|
|
|
|
source path.sh
|
|
|
|
# prepare data
|
|
bash ./local/run_data.sh
|
|
|
|
# test pretrain model
|
|
bash ./local/run_test_golden.sh
|
|
|
|
# test pretain model
|
|
bash ./local/run_infer_golden.sh
|
|
|
|
# train model
|
|
bash ./local/run_train.sh
|
|
|
|
# test model
|
|
bash ./local/run_test.sh
|
|
|
|
# infer model
|
|
bash ./local/run_infer.sh
|
|
|
|
# tune model
|
|
bash ./local/run_tune.sh
|