carrie
Results
1
comments of
carrie
```python #####build the network model if not cfg.RESUME_EPOCH: print('****** Training {} ****** '.format(cfg.model_name)) print('****** loading the Imagenet pretrained weights ****** ') if not cfg.model_name.startswith('efficientnet'): model = cfg.MODEL_NAMES[cfg.model_name](num_classes=cfg.NUM_CLASSES) # #冻结前边一部分层不训练 ct...