SST icon indicating copy to clipboard operation
SST copied to clipboard

SST: Single-Stream Temporal Action Proposal

Results 7 SST issues
Sort by recently updated
recently updated
newest added

Traceback (most recent call last): File "D:/paper_with_code/SST-master/train.py", line 283, in train(epoch, w1) File "D:/paper_with_code/SST-master/train.py", line 240, in train for batch_idx, (features, masks, labels) in enumerate(train_loader): File "D:\Anaconda3\lib\site-packages\torch\utils\data\dataloader.py", line 278, in...

Hi,ranjaykrishna: I think there's one problem in data.py. In line 218, the default setting of argument 'replace' in np.random.choice() is True, which will lead repeated sampling windows. So in my...

Hi ranjaykrishna, I love your excellent project, your code is really elegant. I'm trying to reuse your code, but I met some problems with the batch size(by default that is...

Hi , thanks very much for your efforts. I noticed that this is not the official repo. Could you please tell me what's the difference between them, such as implementation...

I have found in the train.py the iou function `start_i, end_i = interval[0], interval[1]` `intersection = max(0, min(end, end_i) - max(start, start_i))` `union = min(max(end, end_i) - min(start, start_i), end...

Hey, bro! THX your code! I am new for deep learning, and its my first time to use torch-dataset! Cool! Is there something bug in models.py ,line41 `rnn_output, _ =...

Hi ranjaykrishna! I am reading your code and I notice that in your code(train.py) you mentioned two arguments(labels & vid-ids). But I cannot find them in official dataset. Are they...