forked from intel/neural-compressor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_quant.sh
53 lines (44 loc) · 1.03 KB
/
run_quant.sh
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
set -x
function main {
init_params "$@"
run_tuning
}
# init params
function init_params {
for var in "$@"
do
case $var in
--input_model=*)
input_model=$(echo $var |cut -f2 -d=)
;;
--output_model=*)
output_model=$(echo $var |cut -f2 -d=)
;;
--dataset_location=*)
dataset_location=$(echo $var |cut -f2 -d=)
;;
--quant_format=*)
quant_format=$(echo $var |cut -f2 -d=)
;;
esac
done
}
# run_tuning
function run_tuning {
model_name_or_path="distilbert-base-uncased"
batch_size=8
task_name="mrpc"
model_type="distilbert"
python main.py \
--model_path ${input_model} \
--output_model ${output_model} \
--model_name_or_path ${model_name_or_path} \
--data_path ${dataset_location} \
--task ${task_name} \
--batch_size ${batch_size} \
--quant_format ${quant_format} \
--model_type ${model_type} \
--tune
}
main "$@"