Fix Pose export from YAML (#3312)

single_channel
Glenn Jocher 1 year ago committed by GitHub
parent 9d1e5567de
commit 35c02c8319
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -224,7 +224,7 @@ class Exporter:
'imgsz': self.imgsz, 'imgsz': self.imgsz,
'names': model.names} # model metadata 'names': model.names} # model metadata
if model.task == 'pose': if model.task == 'pose':
self.metadata['kpt_shape'] = model.kpt_shape self.metadata['kpt_shape'] = model.model[-1].kpt_shape
LOGGER.info(f"\n{colorstr('PyTorch:')} starting from {file} with input shape {tuple(im.shape)} BCHW and " LOGGER.info(f"\n{colorstr('PyTorch:')} starting from {file} with input shape {tuple(im.shape)} BCHW and "
f'output shape(s) {self.output_shape} ({file_size(file):.1f} MB)') f'output shape(s) {self.output_shape} ({file_size(file):.1f} MB)')

Loading…
Cancel
Save