[segment-anything] Print IOU values to help with debugging (#999)

This commit is contained in:
GeauxEric
2023-09-29 21:44:42 -07:00
committed by GitHub
parent d188d6a764
commit 34842fb234

View File

@ -126,7 +126,7 @@ pub fn main() -> anyhow::Result<()> {
start_time.elapsed().as_secs_f32()
);
println!("mask:\n{mask}");
println!("iou_predictions: {iou_predictions:?}");
println!("iou_predictions: {iou_predictions}");
let mask = (mask.ge(args.threshold)? * 255.)?;
let (_one, h, w) = mask.dims3()?;