warning when train TSN2D on UCF101
See original GitHub issueI am using pytorch1.2. It seems will fail if I change to 1.3.
When debug, it seems this warning comes out from SimpleConsensus, but I have no idea where to change it.
/pytorch/torch/csrc/autograd/python_function.cpp:638: UserWarning: Legacy autograd function with non-static forward method is deprecated and will be removed in 1.3. Please use new-style autograd function with static forward method. (Example: https://pytorch.org/docs/stable/autograd.html#torch.autograd.Function)
Looking for some help, thanks.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
1. Getting Started with Pre-trained TSN Models on UCF101
In this tutorial, we will demonstrate how to load a pre-trained TSN model from gluoncv-model-zoo and classify video frames from the Internet or...
Read more >UCF101 - Action Recognition Data Set - UCF CRCV
UCF101 is an action recognition data set of realistic action videos, collected from ... The Train/Test Splits for Action Detection on UCF101 data...
Read more >UCF101 Benchmark (Action Recognition) - Papers With Code
Rank Model 3‑fold Accuracy Year
1 SMART 98.64 2020
2 OmniSource (SlowOnly‑8x8‑R101‑RGB + I3D‑Flow) 98.6 2020
3 PERF‑Net (multi‑distilled S3D) 98.6 2020
Read more >UCF101 — Torchvision main documentation - PyTorch
UCF101 is an action recognition video dataset. This dataset consider every video as a collection of video clips of fixed size, specified by...
Read more >mmaction from open-mmlab - Giter Site Home
There's no extract_rgb_frames.bash file in data_tools/ucf101, ... 2019-07-05 18:28:14,206 - INFO - workflow: [('train', 1)], ... CMake Warning at ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I have a commit for this issue. It has been tested with PyTorch 1.4 and works.
We rewrote the SimpleConsensus as nn.Module, it should be OK now.