mirror of
https://github.com/ultralytics/yolov5.git
synced 2025-06-03 14:49:29 +08:00
Earlier assert
for cpu and half option (#3508)
* early assert for cpu and half option early assert for cpu and half option * Modified comment Modified comment
This commit is contained in:
parent
90b7895d65
commit
8d1ddc93c7
@ -44,15 +44,13 @@ if __name__ == '__main__':
|
||||
|
||||
# Load PyTorch model
|
||||
device = select_device(opt.device)
|
||||
assert not (opt.device.lower() == 'cpu' and opt.half), '--half only compatible with GPU export, i.e. use --device 0'
|
||||
model = attempt_load(opt.weights, map_location=device) # load FP32 model
|
||||
labels = model.names
|
||||
|
||||
# Checks
|
||||
# Input
|
||||
gs = int(max(model.stride)) # grid size (max stride)
|
||||
opt.img_size = [check_img_size(x, gs) for x in opt.img_size] # verify img_size are gs-multiples
|
||||
assert not (opt.device.lower() == 'cpu' and opt.half), '--half only compatible with GPU export, i.e. use --device 0'
|
||||
|
||||
# Input
|
||||
img = torch.zeros(opt.batch_size, 3, *opt.img_size).to(device) # image size(1,3,320,192) iDetection
|
||||
|
||||
# Update model
|
||||
|
Loading…
x
Reference in New Issue
Block a user