Fix Pose val plotting bug (#3232)
This commit is contained in:
parent
1e5702a5b5
commit
d3ca3e4b9b
1 changed files with 1 additions and 1 deletions
|
|
@ -154,7 +154,7 @@ class PoseValidator(DetectionValidator):
|
||||||
|
|
||||||
def plot_predictions(self, batch, preds, ni):
|
def plot_predictions(self, batch, preds, ni):
|
||||||
"""Plots predictions for YOLO model."""
|
"""Plots predictions for YOLO model."""
|
||||||
pred_kpts = torch.cat([p[:, 6:].view(-1, *self.kpt_shape)[:15] for p in preds], 0)
|
pred_kpts = torch.cat([p[:, 6:].view(-1, *self.kpt_shape) for p in preds], 0)
|
||||||
plot_images(batch['img'],
|
plot_images(batch['img'],
|
||||||
*output_to_target(preds, max_det=self.args.max_det),
|
*output_to_target(preds, max_det=self.args.max_det),
|
||||||
kpts=pred_kpts,
|
kpts=pred_kpts,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue