|
- # Copyright 2020 Huawei Technologies Co., Ltd
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # ============================================================================
- """
- network config setting, will be used in main.py
- """
- from easydict import EasyDict as edict
-
- imagenet_cfg = edict({
- 'name': 'imagenet',
- 'pre_trained': False,
- 'num_classes': 1000,
- 'lr_init': 0.1,
- 'batch_size': 128,
- 'epoch_size': 500,
- 'momentum': 0.9,
- 'weight_decay': 1e-4,
- 'image_height': 224,
- 'image_width': 224,
- 'data_path': './dataset/imagenet_original/train/',
- 'val_data_path': './dataset/imagenet_original/val/',
- 'device_target': 'Ascend',
- 'keep_checkpoint_max': 1,
- 'checkpoint_path': './scripts/train_parallel4/ckpt_4/train_tinydarknet_imagenet-300_1251.ckpt',
- 'onnx_filename': 'tinydarknet.onnx',
- 'air_filename': 'tinydarknet.air',
-
- # optimizer and lr related
- 'lr_scheduler': 'exponential',
- 'lr_epochs': [70, 140, 210, 280],
- 'lr_gamma': 0.3,
- 'eta_min': 0.0,
- 'T_max': 150,
- 'warmup_epochs': 0,
-
- # loss related
- 'is_dynamic_loss_scale': False,
- 'loss_scale': 1024,
- 'label_smooth_factor': 0.1,
- 'use_label_smooth': True,
- })
|