MobileNetV3_small_x0_5.yaml 2.9 KB
Newer Older
1 2 3 4
# global configs
Global:
  checkpoints: null
  pretrained_model: null
C
cuicheng01 已提交
5 6
  output_dir: ./output/
  device: gpu
7 8 9 10 11 12 13 14
  save_interval: 1
  eval_during_train: True
  eval_interval: 1
  epochs: 360
  print_batch_step: 10
  use_visualdl: False
  # used for static mode and model export
  image_shape: [3, 224, 224]
C
cuicheng01 已提交
15
  save_inference_dir: ./inference
16

G
gaotingquan 已提交
17 18 19 20 21 22 23 24 25 26 27 28

# mixed precision
AMP:
  use_amp: False
  use_fp16_test: False
  scale_loss: 128.0
  use_dynamic_loss_scaling: True
  use_promote: False
  # O1: mixed fp16, O2: pure fp16
  level: O1


29 30
# model architecture
Arch:
C
cuicheng01 已提交
31
  name: MobileNetV3_small_x0_5
littletomatodonkey's avatar
littletomatodonkey 已提交
32
  class_num: 1000
33 34 35 36 37 38
 
# loss function config for traing/eval process
Loss:
  Train:
    - CELoss:
        weight: 1.0
C
cuicheng01 已提交
39
        epsilon: 0.1
40 41 42 43 44 45
  Eval:
    - CELoss:
        weight: 1.0


Optimizer:
C
cuicheng01 已提交
46
  name: Momentum
47 48
  momentum: 0.9
  lr:
C
cuicheng01 已提交
49
    name: Cosine
50
    learning_rate: 1.3
C
cuicheng01 已提交
51
    warmup_epoch: 5
52 53
  regularizer:
    name: 'L2'
C
cuicheng01 已提交
54
    coeff: 0.00001
55 56 57 58 59 60


# data loader for train and eval
DataLoader:
  Train:
    dataset:
C
cuicheng01 已提交
61 62 63
      name: ImageNetDataset
      image_root: ./dataset/ILSVRC2012/
      cls_label_path: ./dataset/ILSVRC2012/train_list.txt
C
cuicheng01 已提交
64
      transform_ops:
C
cuicheng01 已提交
65 66 67
        - DecodeImage:
            to_rgb: True
            channel_first: False
C
cuicheng01 已提交
68 69 70 71 72 73 74 75 76
        - RandCropImage:
            size: 224
        - RandFlipImage:
            flip_code: 1
        - NormalizeImage:
            scale: 1.0/255.0
            mean: [0.485, 0.456, 0.406]
            std: [0.229, 0.224, 0.225]
            order: ''
77 78

    sampler:
C
cuicheng01 已提交
79
      name: DistributedBatchSampler
C
cuicheng01 已提交
80 81 82
      batch_size: 512
      drop_last: False
      shuffle: True
83
    loader:
C
cuicheng01 已提交
84 85
      num_workers: 4
      use_shared_memory: True
86 87 88

  Eval:
    dataset: 
C
cuicheng01 已提交
89 90 91
      name: ImageNetDataset
      image_root: ./dataset/ILSVRC2012/
      cls_label_path: ./dataset/ILSVRC2012/val_list.txt
C
cuicheng01 已提交
92
      transform_ops:
C
cuicheng01 已提交
93 94 95
        - DecodeImage:
            to_rgb: True
            channel_first: False
C
cuicheng01 已提交
96 97 98 99 100 101 102 103 104
        - ResizeImage:
            resize_short: 256
        - CropImage:
            size: 224
        - NormalizeImage:
            scale: 1.0/255.0
            mean: [0.485, 0.456, 0.406]
            std: [0.229, 0.224, 0.225]
            order: ''
105
    sampler:
C
cuicheng01 已提交
106
      name: DistributedBatchSampler
C
cuicheng01 已提交
107 108 109
      batch_size: 64
      drop_last: False
      shuffle: False
110
    loader:
C
cuicheng01 已提交
111 112
      num_workers: 4
      use_shared_memory: True
113 114

Infer:
T
Tingquan Gao 已提交
115
  infer_imgs: docs/images/inference_deployment/whl_demo.jpg
116 117
  batch_size: 10
  transforms:
C
cuicheng01 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130
    - DecodeImage:
        to_rgb: True
        channel_first: False
    - ResizeImage:
        resize_short: 256
    - CropImage:
        size: 224
    - NormalizeImage:
        scale: 1.0/255.0
        mean: [0.485, 0.456, 0.406]
        std: [0.229, 0.224, 0.225]
        order: ''
    - ToCHWImage:
131
  PostProcess:
C
cuicheng01 已提交
132
    name: Topk
133
    topk: 5
C
cuicheng01 已提交
134
    class_id_map_file: ppcls/utils/imagenet1k_label_list.txt
135 136

Metric:
C
cuicheng01 已提交
137
  Train:
C
cuicheng01 已提交
138 139
    - TopkAcc:
        topk: [1, 5]
C
cuicheng01 已提交
140
  Eval:
C
cuicheng01 已提交
141 142
    - TopkAcc:
        topk: [1, 5]