Updated readme.md
Browse files
README.md
CHANGED
|
@@ -3,53 +3,56 @@ license: apache-2.0
|
|
| 3 |
language: en
|
| 4 |
pipeline_tag: video-classification
|
| 5 |
library_name: pytorch
|
|
|
|
|
|
|
| 6 |
tags:
|
| 7 |
- video-classification
|
| 8 |
- movinet
|
| 9 |
- kinetics-600
|
| 10 |
- efficient-video
|
| 11 |
-
- regularization
|
| 12 |
- temporal-smoothing
|
| 13 |
-
|
| 14 |
-
- DrGil/k600_test_ds
|
| 15 |
---
|
| 16 |
|
| 17 |
-
# GRW
|
| 18 |
-
|
| 19 |
-
This repository provides **PyTorch checkpoint weights** for **MoViNet** video classification models trained with **GRW-smoothing**, introduced in:
|
| 20 |
-
|
| 21 |
-
- Paper page: https://huggingface.co/papers/2511.20928
|
| 22 |
-
- arXiv: https://arxiv.org/abs/2511.20928
|
| 23 |
-
- Code / reproduction guide: https://github.com/cmusatyalab/grw-smoothing
|
| 24 |
|
| 25 |
-
|
| 26 |
|
| 27 |
-
|
|
|
|
|
|
|
| 28 |
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
This repo contains the following checkpoints:
|
| 34 |
|
|
|
|
|
|
|
| 35 |
- `a0s_grw.pt`
|
| 36 |
- `a1s_grw.pt`
|
| 37 |
- `a2s_grw.pt`
|
| 38 |
- `a3b_grw.pt`
|
| 39 |
|
| 40 |
-
##
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
- Video classification research and benchmarking
|
| 44 |
-
- Reproducing and extending results from the GRW-smoothing paper
|
| 45 |
-
- Studying the effect of temporal smoothness regularization on compact video backbones
|
| 46 |
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
language: en
|
| 4 |
pipeline_tag: video-classification
|
| 5 |
library_name: pytorch
|
| 6 |
+
datasets:
|
| 7 |
+
- DrGil/k600_test_ds
|
| 8 |
tags:
|
| 9 |
- video-classification
|
| 10 |
- movinet
|
| 11 |
- kinetics-600
|
| 12 |
- efficient-video
|
|
|
|
| 13 |
- temporal-smoothing
|
| 14 |
+
- regularization
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
+
# GRW Smoothing (MoViNet) — Model Weights
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
+
This repository contains **MoViNet** checkpoint weights trained with **GRW-smoothing** from the paper:
|
| 20 |
|
| 21 |
+
## Paper
|
| 22 |
+
- https://huggingface.co/papers/2511.20928
|
| 23 |
+
- https://arxiv.org/abs/2511.20928
|
| 24 |
|
| 25 |
+
## Code (reproduction instructions)
|
| 26 |
+
For **step-by-step instructions** to reproduce results (environment setup, data prep, evaluation commands, exact settings), please refer to:
|
| 27 |
+
- https://github.com/cmusatyalab/grw-smoothing
|
|
|
|
|
|
|
| 28 |
|
| 29 |
+
## Files (checkpoints)
|
| 30 |
+
This repo provides the following checkpoint files:
|
| 31 |
- `a0s_grw.pt`
|
| 32 |
- `a1s_grw.pt`
|
| 33 |
- `a2s_grw.pt`
|
| 34 |
- `a3b_grw.pt`
|
| 35 |
|
| 36 |
+
## Associated dataset
|
| 37 |
+
A frozen evaluation dataset used for reproducible testing is provided here:
|
| 38 |
+
- https://huggingface.co/datasets/DrGil/k600_test_ds
|
|
|
|
|
|
|
|
|
|
| 39 |
|
| 40 |
+
## Intended use
|
| 41 |
+
These weights are intended for research and benchmarking in **video classification**, especially when studying efficiency/accuracy trade-offs and temporal smoothness regularization.
|
| 42 |
+
|
| 43 |
+
## Limitations
|
| 44 |
+
- Performance and behavior depend on the training/evaluation setup described in the paper and code.
|
| 45 |
+
- Models may not generalize well outside the evaluation distribution.
|
| 46 |
+
- If used on real-world or sensitive video content, apply appropriate privacy and governance practices.
|
| 47 |
+
|
| 48 |
+
## Citation
|
| 49 |
+
If you use this model, please cite:
|
| 50 |
+
|
| 51 |
+
```bibtex
|
| 52 |
+
@inproceedings{goldman2025grwsmoothing,
|
| 53 |
+
title = {Smooth Regularization for Efficient Video Recognition},
|
| 54 |
+
author = {Gil Goldman and Raja Giryes and Mahadev Satyanarayanan},
|
| 55 |
+
booktitle = {Advances in Neural Information Processing Systems (NeurIPS)},
|
| 56 |
+
year = {2025},
|
| 57 |
+
url = {https://arxiv.org/abs/2511.20928}
|
| 58 |
+
}
|