forked from analogdevicesinc/ai8x-training
-
Notifications
You must be signed in to change notification settings - Fork 1
/
train_all_models.sh
executable file
·64 lines (64 loc) · 2.32 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/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 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_112 model"
scripts/train_faceid_112.sh "$@"
echo "-----------------------------"
echo "Training mobilefacenet_112 model"
scripts/train_mobilefacenet_112.sh "$@"
echo "-----------------------------"
echo "Training unet model"
scripts/train_camvid_unet.sh "$@"
echo "-----------------------------"
echo "Training unet model with AISegment"
scripts/train_aisegment_unet.sh "$@"
echo "-----------------------------"
echo "Training cifar100 efficient net v.2 model"
scripts/train_cifar100_qat8_effnet2.sh "$@"
echo "-----------------------------"
echo "Training Tiny SSD model with SVHN"
scripts/train_svhn_tinierssd.sh "$@"
echo "-----------------------------"
echo "Training Tiny SSD face detection model"
scripts/train_facedet_tinierssd.sh "$@"
echo "-----------------------------"
echo "Training Bayer2RGB debayerization model"
scripts/train_bayer2rgb_imagenet.sh "$@"
echo "-----------------------------"
echo "Training kws20_nas model"
scripts/train_kws20_nas.sh "$@"
echo "-----------------------------"
echo "Training Auto Encoder model"
scripts/train_autoencoder.sh "$@"