Qinhong Yang

Results 2 issues of Qinhong Yang

In model.py at 475 line(flops of LeFF), ``` def flops(self, H, W): flops = 0 # fc1 flops += H*W*self.dim*self.hidden_dim # dwconv flops += H*W*self.hidden_dim*3*3 # fc2 flops += H*W*self.hidden_dim*self.dim...

Thanks for your excellent work ARIS. There is some questions about the implementation details of the results in paper. In the Table 1, ARIS choose the IPT, SwinIR, HAT as...