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
In the paper (Section: Ablation on Simple-FFT-ReLU Stream), it is mentioned that different thresholds for ReLU can show better results. However, I cannot find the implementation of it in this repository.
I have two questions about the implementation.
Does ReLU affect the real/imaginary part of the feature map independently?
Does it zero out values under the threshold or does it "clamp" the values?
ex) Given a value 101+99j where the threshold of ReLU is 100(1+1j), which one is the correct value after the ReLU Layer?
0 + 0j (zero-out values, not independent)
0 + 99j (zero-out values, independent)
100 + 99j (clamp values, independent)
Thank you.
The text was updated successfully, but these errors were encountered:
First of all, thank you for your great work.
In the paper (Section: Ablation on Simple-FFT-ReLU Stream), it is mentioned that different thresholds for ReLU can show better results. However, I cannot find the implementation of it in this repository.
I have two questions about the implementation.
ex) Given a value 101+99j where the threshold of ReLU is 100(1+1j), which one is the correct value after the ReLU Layer?
Thank you.
The text was updated successfully, but these errors were encountered: