mirror of
https://github.com/open-mmlab/mmpretrain.git
synced 2025-06-03 14:59:18 +08:00
* init add densenet implementation * Add config and converted models * update meta * add test for memory efficient * Add docs * add doc for jit * Update checkpoint path * Update readthedocs Co-authored-by: mzr1996 <mzr1996@163.com>
11 lines
274 B
Python
11 lines
274 B
Python
_base_ = [
|
|
'../_base_/models/densenet/densenet121.py',
|
|
'../_base_/datasets/imagenet_bs64.py',
|
|
'../_base_/schedules/imagenet_bs256.py',
|
|
'../_base_/default_runtime.py',
|
|
]
|
|
|
|
data = dict(samples_per_gpu=256)
|
|
|
|
runner = dict(type='EpochBasedRunner', max_epochs=90)
|