Y. F.
Y. F.
`scripts/run_ECOLite_finetune_UCF101.sh: 65: scripts/run_ECOLite_finetune_UCF101.sh: Syntax error: end of file unexpected (expecting "then")` thanks for your attenation
I noticed that in section 4.1 of the paper, the center frame is referred to as 1 4 9. This is causing confusion due to its asymmetry, particularly with the...
```python class Scale(nn.Module): def __init__(self, init_value=1e-3): super().__init__() self.scale = nn.Parameter(torch.FloatTensor([init_value])) def forward(self, input): return input * self.scale ``` When the self.scale=1, does this option does nothing? Why do we need...