ShuffleNetV2_x1_5.yaml 2.8 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
  save_interval: 1
  eval_during_train: True
  eval_interval: 1
10
  epochs: 240
11 12 13
  print_batch_step: 10
  use_visualdl: False
  # used for static mode and model export
14
  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:
31
  name: ShuffleNetV2_x1_5
littletomatodonkey's avatar
littletomatodonkey 已提交
32
  class_num: 1000
33 34 35 36 37 38 39 40 41 42 43 44
 
# loss function config for traing/eval process
Loss:
  Train:
    - CELoss:
        weight: 1.0
  Eval:
    - CELoss:
        weight: 1.0


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


# data loader for train and eval
DataLoader:
  Train:
    dataset:
C
cuicheng01 已提交
60 61 62
      name: ImageNetDataset
      image_root: ./dataset/ILSVRC2012/
      cls_label_path: ./dataset/ILSVRC2012/train_list.txt
C
cuicheng01 已提交
63
      transform_ops:
64 65 66
        - DecodeImage:
            to_rgb: True
            channel_first: False
C
cuicheng01 已提交
67
        - RandCropImage:
68
            size: 224
C
cuicheng01 已提交
69 70 71 72 73 74 75
        - 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: ''
76 77

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

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

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

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