Video Classification
nielsr HF Staff commited on
Commit
efffedd
·
verified ·
1 Parent(s): 3743e73

Link model to paper and improve description

Browse files

Hi! I'm Niels from the Hugging Face community team.

I've updated the model card for this repository to include:
- A link to the paper "Go Beyond Earth: Understanding Human Actions and Scenes in Microgravity Environments" on the Hugging Face Hub to improve discoverability.
- Links to the official GitHub repository and dataset.
- A brief introduction to the MicroG-4M benchmark.
- The official BibTeX citation for the work.

This structure helps users find the associated research and code more easily while maintaining your original performance comparisons.

Files changed (1) hide show
  1. README.md +24 -22
README.md CHANGED
@@ -1,8 +1,8 @@
1
  ---
2
- license: cc-by-4.0
3
  datasets:
4
  - LEI-QI-233/MicroG-4M
5
  - LEI-QI-233/MicroG-HAR-train-ready
 
6
  metrics:
7
  - mAP
8
  - F1-score
@@ -11,27 +11,16 @@ metrics:
11
  pipeline_tag: video-classification
12
  ---
13
 
14
- # This directory stores all fine-tuned weights and related raw data from our dataset.
15
 
16
- ## Please view our paper, GitHub and dataset firstly:
17
 
 
18
 
19
- <div align="left">
20
- <a href="https://arxiv.org/abs/2506.02845"
21
- style="display: inline-block; margin: 0 4px;">
22
- <img src="https://img.shields.io/badge/arXiv-Paper-b31b1b?logo=arxiv" alt="arXiv Paper"/>
23
- </a>
24
- <a href="https://github.com/LEI-QI-233/MicroG-4M"
25
- style="display: inline-block; margin: 0 4px;">
26
- <img src="https://img.shields.io/badge/GitHub-GitHub Repo-white?logo=github"
27
- alt="GitHub"/>
28
- </a>
29
- <a href="https://huggingface.co/datasets/LEI-QI-233/MicroG-4M"
30
- style="display: inline-block; margin: 0 4px;">
31
- <img src="https://img.shields.io/badge/Hugging%20Face-Dataset-orange?logo=huggingface"
32
- alt="Hugging Face Dataset"/>
33
- </a>
34
- </div>
35
 
36
  ---
37
 
@@ -52,12 +41,25 @@ pipeline_tag: video-classification
52
  | X3D | 13×6 | S | 2.02 | 14.07 | 5.77 | 4.52 | 78.23 |
53
  | X3D | 16×5 | L | 4.37 | 18.70 | 9.15 | 7.47 | 78.27 |
54
 
55
-
56
  **Note:**
57
- - All models has been pretrained on Kinetics400 dataset and continually trained on MicroG-4M.
58
  - `TC` denotes the temporal configuration (frame length × sampling rate).
59
  - `#Params` indicates the number of parameters (in millions, M).
60
 
61
  ## Contents of this repository:
62
  - **models** folder contains all fine-tuned weights of MicroG-4M
63
- - **MicroG-4M_results** folder contains all raw data generated by fine-tuning
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
2
  datasets:
3
  - LEI-QI-233/MicroG-4M
4
  - LEI-QI-233/MicroG-HAR-train-ready
5
+ license: cc-by-4.0
6
  metrics:
7
  - mAP
8
  - F1-score
 
11
  pipeline_tag: video-classification
12
  ---
13
 
14
+ # MicroG-4M: Human Action Recognition in Microgravity
15
 
16
+ This repository contains fine-tuned weights for the Human Action Recognition (HAR) task, as presented in the paper [Go Beyond Earth: Understanding Human Actions and Scenes in Microgravity Environments](https://huggingface.co/papers/2506.02845).
17
 
18
+ MicroG-4M is the first benchmark for spatio-temporal and semantic understanding of human activities in microgravity. It covers 4,759 clips across 50 action categories from real-world space missions and simulations, addressing the gap in domain-robust video understanding for safety-critical space applications.
19
 
20
+ ## Resources
21
+ - **Paper:** [Go Beyond Earth: Understanding Human Actions and Scenes in Microgravity Environments](https://huggingface.co/papers/2506.02845)
22
+ - **GitHub:** [HAR-in-Space](https://github.com/LEI-QI-233/HAR-in-Space)
23
+ - **Dataset:** [MicroG-4M on Hugging Face](https://huggingface.co/datasets/LEI-QI-233/MicroG-4M)
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  ---
26
 
 
41
  | X3D | 13×6 | S | 2.02 | 14.07 | 5.77 | 4.52 | 78.23 |
42
  | X3D | 16×5 | L | 4.37 | 18.70 | 9.15 | 7.47 | 78.27 |
43
 
 
44
  **Note:**
45
+ - All models have been pretrained on the Kinetics400 dataset and continually trained on MicroG-4M.
46
  - `TC` denotes the temporal configuration (frame length × sampling rate).
47
  - `#Params` indicates the number of parameters (in millions, M).
48
 
49
  ## Contents of this repository:
50
  - **models** folder contains all fine-tuned weights of MicroG-4M
51
+ - **MicroG-4M_results** folder contains all raw data generated by fine-tuning
52
+
53
+ ## Citation
54
+ If you find this work useful, please cite the following paper:
55
+ ```bibtex
56
+ @misc{wen2025earthunderstandinghumanactions,
57
+ title={Go Beyond Earth: Understanding Human Actions and Scenes in Microgravity Environments},
58
+ author={Di Wen and Lei Qi and Kunyu Peng and Kailun Yang and Fei Teng and Ao Luo and Jia Fu and Yufan Chen and Ruiping Liu and Yitian Shi and M. Saquib Sarfraz and Rainer Stiefelhagen},
59
+ year={2025},
60
+ eprint={2506.02845},
61
+ archivePrefix={arXiv},
62
+ primaryClass={cs.CV},
63
+ url={https://arxiv.org/abs/2506.02845},
64
+ }
65
+ ```