Add model card for Visual Chronometer
Browse filesThis PR improves the model card for the Visual Chronometer model. It adds:
- The `video-classification` pipeline tag.
- Links to the paper, project page, and GitHub repository.
- Installation and sample usage instructions for predicting PhyFPS.
README.md
CHANGED
|
@@ -1,3 +1,47 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pipeline_tag: video-classification
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Visual Chronometer
|
| 7 |
+
|
| 8 |
+
**Visual Chronometer** is a model that predicts the **Physical Frames Per Second (PhyFPS)** of a video — the true temporal scale implied by its visual motion, independent of container metadata.
|
| 9 |
+
|
| 10 |
+
- **Paper:** [The Pulse of Motion: Measuring Physical Frame Rate from Visual Dynamics](https://huggingface.co/papers/2603.14375)
|
| 11 |
+
- **Project Page:** [https://xiangbogaobarry.github.io/Pulse-of-Motion/](https://xiangbogaobarry.github.io/Pulse-of-Motion/)
|
| 12 |
+
- **Repository:** [https://github.com/taco-group/Pulse-of-Motion](https://github.com/taco-group/Pulse-of-Motion)
|
| 13 |
+
|
| 14 |
+
## Installation
|
| 15 |
+
|
| 16 |
+
```bash
|
| 17 |
+
git clone https://github.com/taco-group/Pulse-of-Motion.git
|
| 18 |
+
cd Pulse-of-Motion/inference
|
| 19 |
+
pip install -r requirements.txt
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
## Usage
|
| 23 |
+
|
| 24 |
+
### Predict PhyFPS for a single video
|
| 25 |
+
|
| 26 |
+
```bash
|
| 27 |
+
cd inference
|
| 28 |
+
python predict.py --video_path path/to/your_video.mp4
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
### Predict PhyFPS for a directory of videos
|
| 32 |
+
|
| 33 |
+
```bash
|
| 34 |
+
cd inference
|
| 35 |
+
python predict.py --video_dir path/to/videos/ --output_csv results.csv
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Citation
|
| 39 |
+
|
| 40 |
+
```bibtex
|
| 41 |
+
@article{gao2026pulse,
|
| 42 |
+
title={The Pulse of Motion: Measuring Physical Frame Rate from Visual Dynamics},
|
| 43 |
+
author={Gao, Xiangbo and Wu, Mingyang and Yang, Siyuan and Yu, Jiongze and Taghavi, Pardis and Lin, Fangzhou and Tu, Zhengzhong},
|
| 44 |
+
journal={arXiv preprint arXiv:2603.14375},
|
| 45 |
+
year={2026}
|
| 46 |
+
}
|
| 47 |
+
```
|