PhysInOneP02 commited on
Commit
cd0010a
·
verified ·
1 Parent(s): d65682d

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -10
README.md CHANGED
@@ -124,13 +124,15 @@ The dataset is designed to support research on physics-aware video generation, f
124
 
125
  ### Filtering and Search
126
 
127
- The viewer should support filtering by:
 
 
128
 
129
  - **Activity complexity:** `single`, `double`, `triple`
 
130
  - **Physical domain:** `mechanics`, `fluid_dynamics`, `optics`, `magnetism`
131
- - **Keyword search:** scene name, physical phenomenon, caption keyword, object keyword, or material keyword
132
- - **Split:** `train`, `val`, `test`
133
- - **Availability:** rendered data, 3D assets, annotations, benchmark subset
134
 
135
  ### Install Dependencies
136
 
@@ -154,7 +156,18 @@ python scripts/download.py \
154
  --activity_type double \
155
  --domain mechanics \
156
  --phenomena P01 P03 \
157
- --modalities rgb depth seg \
 
 
 
 
 
 
 
 
 
 
 
158
  --output_dir ./PhysInOne
159
  ```
160
 
@@ -163,10 +176,11 @@ python scripts/download.py \
163
  ```bash
164
  python scripts/filter_cases.py \
165
  --split train \
166
- --domain mechanics \
167
  --activity_type double \
 
168
  --phenomena P01 P03 \
169
- --output selected_cases.json
 
170
  ```
171
 
172
  ```bash
@@ -183,8 +197,6 @@ python scripts/download.py \
183
 
184
  # 📦 Dataset Structure
185
 
186
- The exact released structure may vary depending on the hosted version. A recommended structure is shown below.
187
-
188
  ```text
189
  PhysInOne/
190
  ├── README.md
@@ -442,7 +454,7 @@ If you use PhysInOne in your research, please cite:
442
  ```bibtex
443
  @article{zhou2026physinone,
444
  title={PhysInOne: Visual Physics Learning and Reasoning in One Suite},
445
- author={Zhou, Siyuan and Wang, Hejun and Cheng, Hu and Li, Jinxi and Wang, Dongsheng and Jiang, Junwei and Jin, Yixiao and Huang, Jiayue and Mao, Shiwei and Liu, Shangjia and Yang, Yafei and Song, Hongkang and Wei, Shenxing and Zhang, Zihui and Wang, Bing and Wang, Zhihua and Zou, Chuhang and Yang, Bo},
446
  journal={arXiv preprint arXiv:2604.09415},
447
  year={2026}
448
  }
 
124
 
125
  ### Filtering and Search
126
 
127
+ The dataset should support filtering by:
128
+
129
+ - **Split**: `train`, `val`, `test`
130
 
131
  - **Activity complexity:** `single`, `double`, `triple`
132
+
133
  - **Physical domain:** `mechanics`, `fluid_dynamics`, `optics`, `magnetism`
134
+
135
+ - **Phenomena ID:** `P01`, `P02`, `P03`, ... , `P71`
 
136
 
137
  ### Install Dependencies
138
 
 
156
  --activity_type double \
157
  --domain mechanics \
158
  --phenomena P01 P03 \
159
+ --output_dir ./PhysInOne
160
+ ```
161
+
162
+ ### Download a certain number of cases (random sampling) via Filters
163
+
164
+ ```bash
165
+ python scripts/download.py \
166
+ --split train \
167
+ --activity_type double \
168
+ --domain mechanics \
169
+ --phenomena P01 P03 \
170
+ --num 3000 \
171
  --output_dir ./PhysInOne
172
  ```
173
 
 
176
  ```bash
177
  python scripts/filter_cases.py \
178
  --split train \
 
179
  --activity_type double \
180
+ --domain mechanics \
181
  --phenomena P01 P03 \
182
+ --num 3000 \
183
+ --output_dir selected_cases.json
184
  ```
185
 
186
  ```bash
 
197
 
198
  # 📦 Dataset Structure
199
 
 
 
200
  ```text
201
  PhysInOne/
202
  ├── README.md
 
454
  ```bibtex
455
  @article{zhou2026physinone,
456
  title={PhysInOne: Visual Physics Learning and Reasoning in One Suite},
457
+ author={Zhou, Siyuan and Wang, Hejun and Cheng, Hu and Li, Jinxi and Wang, Dongsheng and Jiang, Junwei and Jin, Yixiao and Huang, Jiayue and Mao, Shiwei and Liu, Shangjia and others},
458
  journal={arXiv preprint arXiv:2604.09415},
459
  year={2026}
460
  }