Soubarna Banik
Results
2
comments of
Soubarna Banik
@HHTseng Hi, I was getting error while extracting the data file. I came across this post later. Anyways, I ended up downloading the original UCF101 dataset and saving the frames...
Also in [models.py](https://github.com/Diego999/pyGAT/blob/master/models.py)/_forward_ dim should be changed to last dimension. Existing code: `x = torch.cat([att(x, adj) for att in self.attentions], dim=1)` Chnaged code: `x = torch.cat([att(x, adj) for att in...