dcrey7 commited on
Commit
32c58e7
·
verified ·
1 Parent(s): e45fd18

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -775,7 +775,7 @@ def process_images(input_image=None, input_tiff=None, gt_mask_file=None):
775
  ax_idx += 1
776
 
777
  # Ensure pred_mask is suitable for imshow (e.g., scale if needed, but should be 0/1)
778
- axes[ax_idx].imshow(pred_mask, cmap='plasma') # Use plasma for Prediction
779
  axes[ax_idx].set_title("Predicted Wetlands (128x128)")
780
  axes[ax_idx].axis('off')
781
 
 
775
  ax_idx += 1
776
 
777
  # Ensure pred_mask is suitable for imshow (e.g., scale if needed, but should be 0/1)
778
+ axes[ax_idx].imshow(pred_mask, cmap='viridis') # Use plasma for Prediction
779
  axes[ax_idx].set_title("Predicted Wetlands (128x128)")
780
  axes[ax_idx].axis('off')
781