ResNeXt50_vd_32x4d.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
  save_interval: 1
  eval_during_train: True
  eval_interval: 1
  epochs: 200
  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: ResNeXt50_vd_32x4d
littletomatodonkey's avatar
littletomatodonkey 已提交
32
  class_num: 1000
33 34 35 36
 
# loss function config for traing/eval process
Loss:
  Train:
G
gaotingquan 已提交
37
    - CELoss:
38
        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: 0.1
51 52 53 54 55 56 57 58 59
  regularizer:
    name: 'L2'
    coeff: 0.0001


# 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 78
      batch_transform_ops:
        - MixupOperator:
            alpha: 0.2
79 80

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

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

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

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