mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 01:12:59 +00:00
dlr: fix predictions
This commit is contained in:
parent
2591cbe6bc
commit
0e3de8f5fc
1 changed files with 2 additions and 2 deletions
|
@ -252,10 +252,10 @@ def plot_predictions(filepath, input_items, colormap, model):
|
||||||
for input_tensor in input_items:
|
for input_tensor in input_items:
|
||||||
prediction_mask = infer(image_tensor=input_tensor, model=model)
|
prediction_mask = infer(image_tensor=input_tensor, model=model)
|
||||||
prediction_colormap = decode_segmentation_masks(prediction_mask, colormap, 20)
|
prediction_colormap = decode_segmentation_masks(prediction_mask, colormap, 20)
|
||||||
overlay = get_overlay(input_tensor, prediction_colormap)
|
|
||||||
plot_samples_matplotlib(
|
plot_samples_matplotlib(
|
||||||
filepath,
|
filepath,
|
||||||
[input_tensor, overlay, prediction_colormap],
|
[input_tensor, prediction_colormap],
|
||||||
figsize=(18, 14)
|
figsize=(18, 14)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue