You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have converted your model to tensorflow, but I want to use it for image denoising.
Do you have an idea of how could I use/change this model so it is viable for image denosing?
One thing that I did is to replace this line:
x = tf.math.reduce_mean(x, axis=-1)
with this line:
x = rearrange(x, 'b (x z) (y dz) -> b x y (z dz)', x = axis[0], y = axis[1], z = self.num_classes)
at the end of Perceiver model.
The text was updated successfully, but these errors were encountered:
I have converted your model to tensorflow, but I want to use it for image denoising.
Do you have an idea of how could I use/change this model so it is viable for image denosing?
One thing that I did is to replace this line:
x = tf.math.reduce_mean(x, axis=-1)
with this line:
x = rearrange(x, 'b (x z) (y dz) -> b x y (z dz)', x = axis[0], y = axis[1], z = self.num_classes)
at the end of Perceiver model.
The text was updated successfully, but these errors were encountered: