| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #!/usr/bin/env python3
- # -*- coding:utf-8 -*-
- import torch
- from .yolov1.build import build_yolov1
- from .yolov2.build import build_yolov2
- from .yolov3.build import build_yolov3
- from .yolov4.build import build_yolov4
- from .yolov5.build import build_yolov5
- from .yolov7.build import build_yolov7
- from .yolox.build import build_yolox
- # build object detector
- def build_model(args,
- model_cfg,
- device,
- num_classes=80,
- trainable=False):
- # YOLOv1
- if args.model == 'yolov1':
- model, criterion = build_yolov1(
- args, model_cfg, device, num_classes, trainable)
- # YOLOv2
- elif args.model == 'yolov2':
- model, criterion = build_yolov2(
- args, model_cfg, device, num_classes, trainable)
- # YOLOv3
- elif args.model == 'yolov3':
- model, criterion = build_yolov3(
- args, model_cfg, device, num_classes, trainable)
- # YOLOv4
- elif args.model == 'yolov4':
- model, criterion = build_yolov4(
- args, model_cfg, device, num_classes, trainable)
- # YOLOv5
- elif args.model == 'yolov5':
- model, criterion = build_yolov5(
- args, model_cfg, device, num_classes, trainable)
- # YOLOv5
- elif args.model == 'yolov7':
- model, criterion = build_yolov7(
- args, model_cfg, device, num_classes, trainable)
- # YOLOX
- elif args.model == 'yolox':
- model, criterion = build_yolox(
- args, model_cfg, device, num_classes, trainable)
- if trainable:
- # Load pretrained weight
- if args.pretrained is not None:
- print('Loading COCO pretrained weight ...')
- checkpoint = torch.load(args.pretrained, map_location='cpu')
- # checkpoint state dict
- checkpoint_state_dict = checkpoint.pop("model")
- # model state dict
- model_state_dict = model.state_dict()
- # check
- for k in list(checkpoint_state_dict.keys()):
- if k in model_state_dict:
- shape_model = tuple(model_state_dict[k].shape)
- shape_checkpoint = tuple(checkpoint_state_dict[k].shape)
- if shape_model != shape_checkpoint:
- checkpoint_state_dict.pop(k)
- print(k)
- else:
- checkpoint_state_dict.pop(k)
- print(k)
- model.load_state_dict(checkpoint_state_dict, strict=False)
- # keep training
- if args.resume is not None:
- print('keep training: ', args.resume)
- checkpoint = torch.load(args.resume, map_location='cpu')
- # checkpoint state dict
- checkpoint_state_dict = checkpoint.pop("model")
- model.load_state_dict(checkpoint_state_dict)
- return model, criterion
- else:
- return model
|