AnonymousSubmitt commited on
Commit
30dd49e
·
verified ·
1 Parent(s): 844ea73

Add realworld_subset/Composition/4

Browse files
realworld_subset/Composition/4/annotation.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ Environment: g=9.81, F_drag=!=0
2
+ Ground: e=0.5
3
+ Baseball: d = 0.07, e = 0.55, m = 0.14, h = 0.77, v_0 = 0.0
4
+ SteelBall: d = 0.04, e = 0.6, m = 0.26, h = 0.77, v_0 = 1.11
realworld_subset/Composition/4/annotation_config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "environment": {
3
+ "air_resistance": "!=0",
4
+ "gravity": 9.81
5
+ },
6
+ "ground": {
7
+ "dynamic_friction": "TODO",
8
+ "label": "Ground",
9
+ "restitution": 0.5,
10
+ "static_friction": "TODO"
11
+ },
12
+ "objects": [
13
+ {
14
+ "height": 0.77,
15
+ "id": 1,
16
+ "initial_velocity_u": 0,
17
+ "initial_velocity_v": 0,
18
+ "mass": 0.145,
19
+ "name": "Baseball",
20
+ "restitution": 0.55,
21
+ "size": 0.07,
22
+ "size_symbol": "d",
23
+ "static": true
24
+ },
25
+ {
26
+ "height": 0.77,
27
+ "id": 2,
28
+ "initial_velocity_u": -1.107686,
29
+ "initial_velocity_v": 0,
30
+ "mass": 0.26,
31
+ "name": "SteelBall",
32
+ "restitution": 0.6,
33
+ "size": 0.04,
34
+ "size_symbol": "d",
35
+ "static": false
36
+ }
37
+ ],
38
+ "render": {
39
+ "axes_arrow_head_width": 20,
40
+ "axes_arrow_length": 75,
41
+ "axes_arrow_width": 8,
42
+ "fontsize": 20,
43
+ "margin_axes_range": [
44
+ 5,
45
+ 50
46
+ ],
47
+ "margin_env_range": [
48
+ 5,
49
+ 50
50
+ ],
51
+ "margin_ground_range": [
52
+ 5,
53
+ 50
54
+ ],
55
+ "velocity_arrow_head_width": 30,
56
+ "velocity_arrow_length": 100,
57
+ "velocity_arrow_width": 10
58
+ },
59
+ "task_type": "composition"
60
+ }
realworld_subset/Composition/4/formula_info.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "correct_letter": "B",
3
+ "correct_formula": "y = h + x·tanθ - g·x² / (2·v_0²·cos²θ)",
4
+ "annotation": "Environment: g=9.81, F_drag=!=0\nGround: e=0.5\nBaseball: d = 0.07, e = 0.55, m = 0.14, h = 0.77, v_0 = 0.0\nSteelBall: d = 0.04, e = 0.6, m = 0.26, h = 0.77, v_0 = 1.11",
5
+ "choices": [
6
+ "B = μ_0·I / (2π·r)",
7
+ "y = h + x·tanθ - g·x² / (2·v_0²·cos²θ)",
8
+ "ΔE_loss = (1/2)·e²·(m_1·m_2)/(m_1+m_2)·(v_1i + v_2i)²",
9
+ "ΔE = (1/2)·[(m_1·m_2) / (m_1 + m_2)]·(v_1i - v_2i)²"
10
+ ],
11
+ "correct_index": 1,
12
+ "physics_type": "Composition",
13
+ "composition_sources": [
14
+ "InelasticCollision",
15
+ "Projectile"
16
+ ],
17
+ "choice_sources": [
18
+ "InelasticCollision",
19
+ "Projectile",
20
+ "InelasticCollision",
21
+ "InelasticCollision"
22
+ ],
23
+ "seed": "Composition|Composition/4",
24
+ "is_realworld": true,
25
+ "dropped_wrong_formulas": [
26
+ "InelasticCollision: W_f = ∫ μ_k·m·g·ds = ΔE_k",
27
+ "Projectile: F_drag = (1/2)·C_d·ρ·A·v² (A = π·(d/2)²)"
28
+ ]
29
+ }
realworld_subset/Composition/4/initial_state/initial_velocity.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "video_path": "data/processed/Composition/4/rgb/video.mp4",
3
+ "fps": 30.0,
4
+ "scale_px": 55.0364,
5
+ "scale_meters": 0.074,
6
+ "meters_per_pixel": 0.001345,
7
+ "velocities": {
8
+ "1": {
9
+ "u_ms": 0.0,
10
+ "v_ms": 0.0,
11
+ "speed_ms": 0.0,
12
+ "du_px": 0.0,
13
+ "dv_px": 0.0,
14
+ "static": true
15
+ },
16
+ "2": {
17
+ "u_ms": -1.107686,
18
+ "v_ms": -0.000934,
19
+ "speed_ms": 1.107686,
20
+ "du_px": -27.4608,
21
+ "dv_px": -0.0231,
22
+ "static": false
23
+ }
24
+ }
25
+ }
realworld_subset/Composition/4/initial_state/instance_segmentation_0000.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd94decafb5c5ddc58595196b5d102b19b4b4ba715ad64eefb5b89acf63f4fb6
3
+ size 2048128
realworld_subset/Composition/4/initial_state/mask_0000.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c030e7a520f5c5f9ebcde319062831a69bf76c80d76e519e3b7be06af7018ec
3
+ size 1024128
realworld_subset/Composition/4/initial_state/rgb_0000.png ADDED

Git LFS Details

  • SHA256: 31b3c54b451623e5de00d68bdc919fbd55fca2a0267e051f49e95970dfc6c4c1
  • Pointer size: 131 Bytes
  • Size of remote file: 221 kB
realworld_subset/Composition/4/initial_state/rgb_0000_white_bg.png ADDED

Git LFS Details

  • SHA256: 91971930f15f3b10bdf6fb7e718d638badfb794220ddfe30df1567ec5366556e
  • Pointer size: 130 Bytes
  • Size of remote file: 56.2 kB
realworld_subset/Composition/4/initial_state/rgb_0000_white_bg_obj.png ADDED

Git LFS Details

  • SHA256: 50d4956c7abdef9b3759b0f824d5ea82b6c70c354bbe788f4f8bb0dd3259a962
  • Pointer size: 130 Bytes
  • Size of remote file: 14.5 kB
realworld_subset/Composition/4/instance_segmentation/maps.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d4bfd09c72a5acc09bb526542897d5e8ec0bec35b8cc22218b674f61ee9c1e9
3
+ size 70827
realworld_subset/Composition/4/instantaneous_velocity/mask.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18a5b049df2f1bd7cdf244c791e884df5b0cd32ddd40c998179b9d9e2f1ef2da
3
+ size 1024128
realworld_subset/Composition/4/instantaneous_velocity/velocity.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "video_path": "/mnt/afs/fanweichen/yrm/VMEvalKit/preprocess/data/processed/Composition/4/rgb/video.mp4",
3
+ "fps": 30.0,
4
+ "time_seconds": 0.6,
5
+ "frame_index": 18,
6
+ "scale_px": 55.0364,
7
+ "scale_meters": 0.074,
8
+ "meters_per_pixel": 0.001345,
9
+ "velocities": {
10
+ "1": {
11
+ "u_ms": -0.858112,
12
+ "v_ms": 2.154632,
13
+ "speed_ms": 2.319223,
14
+ "du_px": -21.2667,
15
+ "dv_px": 53.3986,
16
+ "static": false
17
+ },
18
+ "2": {
19
+ "u_ms": -0.573156,
20
+ "v_ms": 1.236447,
21
+ "speed_ms": 1.362832,
22
+ "du_px": -14.2046,
23
+ "dv_px": 30.6431,
24
+ "static": false
25
+ }
26
+ }
27
+ }
realworld_subset/Composition/4/instantaneous_velocity/velocity_annotated.png ADDED

Git LFS Details

  • SHA256: 6a0d387281ac4edc1bbefaccd9bd7194c7b07b93a3bf35e0c7d94ce557d73fb8
  • Pointer size: 131 Bytes
  • Size of remote file: 578 kB
realworld_subset/Composition/4/mask/maps.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9adb2c316b7ed17104ffcfcc038720d0b9a27816e92d874680d4088be8b0597
3
+ size 39311
realworld_subset/Composition/4/physics_duration.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ 1.0
realworld_subset/Composition/4/rgb/video.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:761c3b7088d260813f3520ee665f8cc33317eb4fda5b415026b120e275bdf295
3
+ size 435169