forked from analogdevicesinc/ai8x-training
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain_all_models.sh
executable file
·41 lines (40 loc) · 1.35 KB
/
train_all_models.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
#!/bin/sh
echo "-----------------------------"
echo "Training cats&dogs model"
scripts/train_catsdogs.sh
echo "-----------------------------"
echo "Training mnist model"
scripts/train_mnist.sh
echo "-----------------------------"
echo "Training mnist_extrasmall model"
scripts/train_mnist_extrasmall.sh
echo "-----------------------------"
echo "Training cifar10 model"
scripts/train_cifar10.sh
echo "-----------------------------"
echo "Training cifar100 model without QAT"
scripts/train_cifar100.sh
echo "-----------------------------"
echo "Training cifar100 model with 8-bit QAT"
scripts/train_cifar100_qat8.sh
echo "-----------------------------"
echo "Training cifar100 model with mixed bit width QAT"
scripts/train_cifar100_qat_mixed.sh
echo "-----------------------------"
echo "Training cifar100_residual model"
scripts/train_cifar100_ressimplenet.sh
echo "-----------------------------"
echo "Training cifar100_simplenetwide2x model with mixed width QAT"
scripts/train_cifar100_simplenetwide2x_qat_mixed.sh
echo "-----------------------------"
echo "Training kws20 model"
scripts/train_kws20.sh
echo "-----------------------------"
echo "Training kws20_v2 model"
scripts/train_kws20_v2.sh
echo "-----------------------------"
echo "Training kws20_v3 model"
scripts/train_kws20_v3.sh
echo "-----------------------------"
echo "Training faceid model"
scripts/train_faceid.sh