ariG23498 HF staff commited on
Commit
adbb278
·
1 Parent(s): c51bec3

chore: attention only plot

Browse files
Files changed (1) hide show
  1. app.py +8 -11
app.py CHANGED
@@ -43,21 +43,18 @@ def plot_attention(image):
43
  index = 0
44
  selected_image = image[index]
45
  selected_weight = test_viz_weights[index]
46
-
47
- fig, ax = plt.subplots(nrows=1, ncols=2, figsize=(10, 5))
48
- ax[0].imshow(selected_image)
49
- ax[0].set_title(f"Original")
50
- ax[0].axis("off")
51
 
52
- img = ax[1].imshow(selected_image)
53
- ax[1].imshow(selected_weight, cmap='inferno', alpha=0.6, extent=img.get_extent())
54
- ax[1].set_title(f"Attended")
55
- ax[1].axis("off")
56
-
 
 
57
  plt.axis("off")
58
  return plt
59
 
60
  iface = gr.Interface(
61
  fn=plot_attention,
62
  inputs=[gr.inputs.Image(label="Input Image")],
63
- outputs="image").launch()
 
43
  index = 0
44
  selected_image = image[index]
45
  selected_weight = test_viz_weights[index]
 
 
 
 
 
46
 
47
+ img = plt.imshow(selected_image)
48
+ plt.imshow(
49
+ selected_weight,
50
+ cmap="inferno",
51
+ alpha=0.6,
52
+ extent=img.get_extent()
53
+ )
54
  plt.axis("off")
55
  return plt
56
 
57
  iface = gr.Interface(
58
  fn=plot_attention,
59
  inputs=[gr.inputs.Image(label="Input Image")],
60
+ outputs="Attention Map").launch()