vLAR commited on
Commit
761a0d8
ยท
verified ยท
1 Parent(s): dc81226

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -6
README.md CHANGED
@@ -111,7 +111,7 @@ homepage: https://vlar-group.github.io/PhysInOne.html
111
 
112
  <div style="display: flex; align-items: flex-start; gap: 24px;">
113
 
114
- <aside style="min-width: 220px; max-width: 240px; position: sticky; top: 16px; padding: 16px; border: 1px solid #e5e7eb; border-radius: 12px; background: #f9fafb; font-size: 14px; line-height: 1.9;">
115
  <strong>๐Ÿงญ Navigation</strong><br><br>
116
  <a href="#summary">๐Ÿ“Œ Summary</a><br>
117
  <a href="#release-timetable">๐Ÿš€ Release Timetable</a><br>
@@ -127,7 +127,7 @@ homepage: https://vlar-group.github.io/PhysInOne.html
127
  <a href="#contact">๐Ÿ“ฎ Contact</a><br>
128
  </aside>
129
 
130
- <main style="min-width: 0; flex: 1;">
131
 
132
  <a id="summary"></a>
133
 
@@ -139,6 +139,31 @@ Each scene may contain multi-object and multi-physics interactions in complex 3D
139
 
140
  The dataset is designed to support research on physics-aware video generation, future frame prediction, physical property estimation, motion transfer, physical reasoning, and world models.
141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  <a id="release-timetable"></a>
143
 
144
  ## ๐Ÿš€ Release Timetable
@@ -217,7 +242,7 @@ pip install huggingface_hub tqdm
217
 
218
  ## 3. Filter Cases
219
 
220
- ### Filter by split
221
 
222
  ```bash
223
  python scripts/filter_cases.py \
@@ -225,7 +250,7 @@ python scripts/filter_cases.py \
225
  --output selected_cases.json
226
  ```
227
 
228
- ### Filter by split and activity complexity
229
 
230
  ```bash
231
  python scripts/filter_cases.py \
@@ -234,7 +259,7 @@ python scripts/filter_cases.py \
234
  --output selected_cases.json
235
  ```
236
 
237
- ### Filter by physical phenomenon abbreviation
238
 
239
  By default, phenomenon matching uses `contains` mode. For example, the following command selects all double-physics cases that contain `FrictionStop`:
240
 
@@ -258,7 +283,7 @@ python scripts/filter_cases.py \
258
  --output selected_cases.json
259
  ```
260
 
261
- ### Randomly sample a fixed number of cases
262
 
263
  `--num` is the global number of cases sampled after filtering. The default random seed is `42`.
264
 
 
111
 
112
  <div style="display: flex; align-items: flex-start; gap: 24px;">
113
 
114
+ <aside style="min-width: 220px; max-width: 240px; position: sticky; top: 16px; padding: 16px; border: 1px solid #e5e7eb; border-radius: 12px; background: #f9fafb; font-size: 14px; line-height: 1.55;">
115
  <strong>๐Ÿงญ Navigation</strong><br><br>
116
  <a href="#summary">๐Ÿ“Œ Summary</a><br>
117
  <a href="#release-timetable">๐Ÿš€ Release Timetable</a><br>
 
127
  <a href="#contact">๐Ÿ“ฎ Contact</a><br>
128
  </aside>
129
 
130
+ <main style="min-width: 0; flex: 1; line-height: 1.45; font-size: 15px;">
131
 
132
  <a id="summary"></a>
133
 
 
139
 
140
  The dataset is designed to support research on physics-aware video generation, future frame prediction, physical property estimation, motion transfer, physical reasoning, and world models.
141
 
142
+
143
+ <div style="display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 18px 0;">
144
+
145
+ <div style="padding: 12px; border: 1px solid #e5e7eb; border-radius: 10px; background: #fafafa;">
146
+ <strong>153,810</strong><br>
147
+ <span style="font-size: 13px;">Dynamic 3D scenes</span>
148
+ </div>
149
+
150
+ <div style="padding: 12px; border: 1px solid #e5e7eb; border-radius: 10px; background: #fafafa;">
151
+ <strong>2M</strong><br>
152
+ <span style="font-size: 13px;">Annotated videos</span>
153
+ </div>
154
+
155
+ <div style="padding: 12px; border: 1px solid #e5e7eb; border-radius: 10px; background: #fafafa;">
156
+ <strong>71</strong><br>
157
+ <span style="font-size: 13px;">Physical phenomena</span>
158
+ </div>
159
+
160
+ <div style="padding: 12px; border: 1px solid #e5e7eb; border-radius: 10px; background: #fafafa;">
161
+ <strong>4</strong><br>
162
+ <span style="font-size: 13px;">Physics domains</span>
163
+ </div>
164
+
165
+ </div>
166
+
167
  <a id="release-timetable"></a>
168
 
169
  ## ๐Ÿš€ Release Timetable
 
242
 
243
  ## 3. Filter Cases
244
 
245
+ ### 3.1 Filter by split
246
 
247
  ```bash
248
  python scripts/filter_cases.py \
 
250
  --output selected_cases.json
251
  ```
252
 
253
+ ### 3.2 Filter by split and activity complexity
254
 
255
  ```bash
256
  python scripts/filter_cases.py \
 
259
  --output selected_cases.json
260
  ```
261
 
262
+ ### 3.3 Filter by physical phenomenon abbreviation
263
 
264
  By default, phenomenon matching uses `contains` mode. For example, the following command selects all double-physics cases that contain `FrictionStop`:
265
 
 
283
  --output selected_cases.json
284
  ```
285
 
286
+ ### 3.4 Randomly sample a fixed number of cases
287
 
288
  `--num` is the global number of cases sampled after filtering. The default random seed is `42`.
289