ariG23498 HF staff commited on
Commit
0469f00
·
1 Parent(s): 532e265

fix: change the call method signature

Browse files
Files changed (1) hide show
  1. utilities/visualization.py +1 -1
utilities/visualization.py CHANGED
@@ -8,7 +8,7 @@ class PlotAttention(object):
8
  def __init__(self, model):
9
  self.model = model
10
 
11
- def __call__(self, image):
12
  # resize the image to a 224, 224 dim
13
  image = tf.image.convert_image_dtype(image, tf.float32)
14
  image = tf.image.resize(image, (224, 224))
 
8
  def __init__(self, model):
9
  self.model = model
10
 
11
+ def __call__(self, image):
12
  # resize the image to a 224, 224 dim
13
  image = tf.image.convert_image_dtype(image, tf.float32)
14
  image = tf.image.resize(image, (224, 224))