Fix Pose export from YAML (#3312)
This commit is contained in:
parent
9d1e5567de
commit
35c02c8319
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue