Maybe we should support wild backbones/models ?
See original GitHub issueDescribe the feature
Add a wild_backbones folders that stores the backbones directly copied from the original papers/repositories. They are just about to work and could be maintained by any contributors.
Motivation I personally have sucessfully run the I3D, X3D, MViT, MViT2, VideoMAE as the backbones with the mmaction2 by intergrating the codes from the original repos. I want to share my codes because I was once eager to these backbones. But my implementations is just about to work, and defitenly do NOT meet the mmaction code requirement.
Therefore, I think it would be very meaningful to have wild_backbones that allow contributors to easily share their implementations without the need of following the strict code requirement.
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:8 (4 by maintainers)
Top Results From Across the Web
backbone-fundamentals/backbone-fundamentals.md - GitHub
Backbone provides a minimal set of data-structuring (Models, Collections) and user interface (Views, URLs) primitives that are helpful when building dynamic ...
Read more >Controller in Backbone.js - Stack Overflow
The first one is pretty straightforward which is to have the model object included as a property to the view. The second one...
Read more >Cascading Select Boxes with Backbone.js - Shine Solutions
Simple tutorials abound that describe how to hook up a single view to a single model, but it's unclear what approach to use...
Read more >Debunking the North American Model of Wildlife Conservation
Depending on who you talk to, NAM is either an historical account of how wildlife has been conserved in North America, a prescriptive...
Read more >The Sad State of the Backbone Ecosystem | Hacker News
It's not sad at all, in fact it's the opposite - Backbone can be considered a stable, battle-tested framework with a "finished" API...
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

@hukkai I am in favor of the option1 because it’s simple. Furthermore, in some cases it may be NOT good to put a trhid party codes in a single py file. The dependency subfolder could also be put in the
contribfolder.For instance, we can implement ALL slowfast models by adding a
slowfastpackage under themodels/contrib. Thisslowfastpacakage only contains necessarypyfiles to build slowfast models, and the slowfast config files. After that, we can easily build any slow models with mmaction2.I will create a demo PR for this.
@makecent I think we can begin with the MViT model and make the inference available. I will work on this in the following two days.