DrGil commited on
Commit
e18afcf
·
verified ·
1 Parent(s): 255779e

Updated readme.md

Browse files
Files changed (1) hide show
  1. README.md +35 -32
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
- datasets:
14
- - DrGil/k600_test_ds
15
  ---
16
 
17
- # GRW-smoothing (MoViNet) — NeurIPS 2025 checkpoints
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
- ## What is GRW-smoothing?
26
 
27
- **GRW-smoothing** is a regularization technique for video recognition models that encourages **temporal smoothness** in intermediate feature embeddings. Consecutive frame embeddings are modeled as a **Gaussian Random Walk (GRW)**, and training penalizes high “acceleration” in embedding space while preserving the correct temporal ordering.
 
 
28
 
29
- The method targets improved accuracy–efficiency trade-offs, particularly for lightweight video architectures.
30
-
31
- ## Provided checkpoints
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
- ## Intended use
41
-
42
- These checkpoints are intended for:
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
- Not intended for:
48
- - Safety-critical deployments without extensive validation
49
- - Use cases requiring strict robustness guarantees under domain shift
50
-
51
- ## How to reproduce paper results
52
-
53
- For **specific, step-by-step instructions** (environment setup, data layout, evaluation commands, and exact settings) to reproduce the paper’s results, please follow the upstream GitHub repository:
54
-
55
- https://github.com/cmusatyalab/grw-smoothing
 
 
 
 
 
 
 
 
 
 
 
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
+ }