TUM
/

Zhexiao0 commited on
Commit
7827447
·
verified ·
1 Parent(s): 5d116f7

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. PIWM/config/agent/piwm.yaml +72 -0
  2. PIWM/config/env/piwm.yaml +9 -0
  3. PIWM/model/piwm.pt +3 -0
  4. PIWM/spwan/0/act.npy +3 -0
  5. PIWM/spwan/0/full_res.npy +3 -0
  6. PIWM/spwan/0/info.json +1 -0
  7. PIWM/spwan/0/low_res.npy +3 -0
  8. PIWM/spwan/0/next_act.npy +3 -0
  9. PIWM/spwan/1/act.npy +3 -0
  10. PIWM/spwan/1/full_res.npy +3 -0
  11. PIWM/spwan/1/info.json +1 -0
  12. PIWM/spwan/1/low_res.npy +3 -0
  13. PIWM/spwan/1/next_act.npy +3 -0
  14. PIWM/spwan/10/act.npy +3 -0
  15. PIWM/spwan/10/full_res.npy +3 -0
  16. PIWM/spwan/10/info.json +1 -0
  17. PIWM/spwan/10/low_res.npy +3 -0
  18. PIWM/spwan/10/next_act.npy +3 -0
  19. PIWM/spwan/2/act.npy +3 -0
  20. PIWM/spwan/2/full_res.npy +3 -0
  21. PIWM/spwan/2/info.json +1 -0
  22. PIWM/spwan/2/low_res.npy +3 -0
  23. PIWM/spwan/2/next_act.npy +3 -0
  24. PIWM/spwan/3/act.npy +3 -0
  25. PIWM/spwan/3/full_res.npy +3 -0
  26. PIWM/spwan/3/info.json +1 -0
  27. PIWM/spwan/3/low_res.npy +3 -0
  28. PIWM/spwan/3/next_act.npy +3 -0
  29. PIWM/spwan/4/act.npy +3 -0
  30. PIWM/spwan/4/full_res.npy +3 -0
  31. PIWM/spwan/4/info.json +1 -0
  32. PIWM/spwan/4/low_res.npy +3 -0
  33. PIWM/spwan/4/next_act.npy +3 -0
  34. PIWM/spwan/5/act.npy +3 -0
  35. PIWM/spwan/5/full_res.npy +3 -0
  36. PIWM/spwan/5/info.json +1 -0
  37. PIWM/spwan/5/low_res.npy +3 -0
  38. PIWM/spwan/5/next_act.npy +3 -0
  39. PIWM/spwan/6/act.npy +3 -0
  40. PIWM/spwan/6/full_res.npy +3 -0
  41. PIWM/spwan/6/info.json +1 -0
  42. PIWM/spwan/6/low_res.npy +3 -0
  43. PIWM/spwan/6/next_act.npy +3 -0
  44. PIWM/spwan/7/act.npy +3 -0
  45. PIWM/spwan/7/full_res.npy +3 -0
  46. PIWM/spwan/7/info.json +1 -0
  47. PIWM/spwan/7/low_res.npy +3 -0
  48. PIWM/spwan/7/next_act.npy +3 -0
  49. PIWM/spwan/8/act.npy +3 -0
  50. PIWM/spwan/8/full_res.npy +3 -0
PIWM/config/agent/piwm.yaml ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ _target_: agent.AgentConfig
2
+
3
+ denoiser:
4
+ _target_: models.diffusion.DenoiserConfig
5
+ sigma_data: 0.5
6
+ sigma_offset_noise: 0.1
7
+ noise_previous_obs: true
8
+ upsampling_factor: null
9
+
10
+ # mask params
11
+ mask_gain_train: 1.0
12
+
13
+ mask_gain_infer: 0.45
14
+ mask_w_blue: 0.55 # surrounding vehicles
15
+ mask_w_green: 0.45 # ego vehicle
16
+
17
+ mask_sigma_global_ratio: 0.35 # global Gaussian sigma ratio
18
+ mask_sigma_ego_scale: 0.50 # ego radial sigma scale
19
+ mask_sigma_min_px: 2.0
20
+ mask_downsample_mode: bicubic
21
+
22
+ mask_dropout_train: 0.30
23
+
24
+ inner_model:
25
+ _target_: models.diffusion.InnerModelConfig
26
+ img_channels: 3
27
+ num_steps_conditioning: 4
28
+ cond_channels: 2048
29
+ extra_cond_channels: 1
30
+ depths:
31
+ - 2
32
+ - 2
33
+ - 2
34
+ - 2
35
+ channels:
36
+ - 128
37
+ - 256
38
+ - 512
39
+ - 1024
40
+ attn_depths:
41
+ - 0
42
+ - 0
43
+ - 1
44
+ - 1
45
+
46
+ upsampler:
47
+ _target_: models.diffusion.DenoiserConfig
48
+ sigma_data: 0.5
49
+ sigma_offset_noise: 0.1
50
+ noise_previous_obs: false
51
+ upsampling_factor: 5
52
+ inner_model:
53
+ _target_: models.diffusion.InnerModelConfig
54
+ img_channels: 3
55
+ num_steps_conditioning: 1
56
+ cond_channels: 2048
57
+ depths:
58
+ - 2
59
+ - 2
60
+ - 2
61
+ - 2
62
+ channels:
63
+ - 64
64
+ - 64
65
+ - 128
66
+ - 256
67
+ attn_depths:
68
+ - 0
69
+ - 0
70
+ - 0
71
+ - 1
72
+
PIWM/config/env/piwm.yaml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ train:
2
+ id: piwm
3
+ size: [150, 600]
4
+ num_actions: 51
5
+
6
+ path_data_low_res: /home/zhexiao/Documents/old_highway_dataset_preprocessed/low_res
7
+ path_data_full_res: /home/zhexiao/Documents/old_highway_dataset_preprocessed/full_res
8
+
9
+ keymap: piwm
PIWM/model/piwm.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff80ef260c847a87b37e89ce38d8f9ab90780565633c5f6ad24b757f7077e161
3
+ size 1526820802
PIWM/spwan/0/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83bc4e104e3185236986223766e7ca7348f0ee3cae05f994415d57786f1595d1
3
+ size 332
PIWM/spwan/0/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dc062f289e2b6299dcc598395b464264abf64d1791b9689ff15775bc040f20e
3
+ size 1080128
PIWM/spwan/0/info.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"original_file_id": "highway_hdf5_dataset/highway_record_1037.hdf5", "timestep_start": 300}
PIWM/spwan/0/low_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6547b0064219566d96ca64a5c0706cd42b3a073c7259889947917a6e6d35f6f3
3
+ size 43328
PIWM/spwan/0/next_act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6de41fc6b2328d66913d0791dbe8fca0561807fa4d4011abf08d2ba26fb2a0a3
3
+ size 10328
PIWM/spwan/1/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa336863b99221fb3c05fad349b775c9d0c365ad1b67a23d8bebcf7962aea8ad
3
+ size 332
PIWM/spwan/1/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81840a7f6fd45a78ef8a6603f36d26e2b6c85e859643477f3bbde7d659b6ec0a
3
+ size 1080128
PIWM/spwan/1/info.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"original_file_id": "highway_hdf5_dataset/highway_record_32.hdf5", "timestep_start": 0}
PIWM/spwan/1/low_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ede29be88697360d0e789aa3c9280b6e1a52ca46f5e6520669e8972fa351d04a
3
+ size 43328
PIWM/spwan/1/next_act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6de41fc6b2328d66913d0791dbe8fca0561807fa4d4011abf08d2ba26fb2a0a3
3
+ size 10328
PIWM/spwan/10/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73902e408d9cd3f98c7d650cd3b90bf9a355f2f915cac76bd2392723599b0149
3
+ size 332
PIWM/spwan/10/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e74156ebd15f9276ba82fba0380a0a41ed1cd85e1172637fe9a4ec66fd696537
3
+ size 1080128
PIWM/spwan/10/info.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"original_file_id": "highway_hdf5_dataset/highway_record_106.hdf5", "timestep_start": 0}
PIWM/spwan/10/low_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d463ce682eba223512c20125bdd3b52295ce803b7ae37c4f59b0dce6ad955127
3
+ size 43328
PIWM/spwan/10/next_act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38616df7b300d020e3b320281cdefba11f0d297ca70e417fc15899396f19bb1c
3
+ size 10328
PIWM/spwan/2/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa336863b99221fb3c05fad349b775c9d0c365ad1b67a23d8bebcf7962aea8ad
3
+ size 332
PIWM/spwan/2/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00653ba0f3bf02548a0fc37cd8921c24aee394dc5b48559fa3346c0fc8caf85d
3
+ size 1080128
PIWM/spwan/2/info.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"original_file_id": "highway_hdf5_dataset/highway_record_1147.hdf5", "timestep_start": 0}
PIWM/spwan/2/low_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:840b8d101ff00c67a17b3ae74ece0014b3c000258b00935baa6b6c34cd39cdde
3
+ size 43328
PIWM/spwan/2/next_act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6de41fc6b2328d66913d0791dbe8fca0561807fa4d4011abf08d2ba26fb2a0a3
3
+ size 10328
PIWM/spwan/3/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa336863b99221fb3c05fad349b775c9d0c365ad1b67a23d8bebcf7962aea8ad
3
+ size 332
PIWM/spwan/3/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae4081bb6150a788edcd2db055ae3991e6fe5b8de5207f3fefc6c22f84626652
3
+ size 1080128
PIWM/spwan/3/info.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"original_file_id": "highway_hdf5_dataset/highway_record_406.hdf5", "timestep_start": 0}
PIWM/spwan/3/low_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c7851f39132f2e87259b77422cd020c4cdea06a631c78fbdaec3105fbb618c5
3
+ size 43328
PIWM/spwan/3/next_act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6de41fc6b2328d66913d0791dbe8fca0561807fa4d4011abf08d2ba26fb2a0a3
3
+ size 10328
PIWM/spwan/4/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:817c89792562e402eed74f25a55751ebe46b3b511e774f00e7178640cebf1eb2
3
+ size 332
PIWM/spwan/4/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:494ae3c31b48bd64ec41a43c0f98e24270415a58dcdaffbd088ba042b9fb8f6a
3
+ size 1080128
PIWM/spwan/4/info.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"original_file_id": "highway_hdf5_dataset/highway_record_1910.hdf5", "timestep_start": 300}
PIWM/spwan/4/low_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b63005790534a5c10e816d4160e8dc225e2d0f2ae031bf6590fd937f8a349299
3
+ size 43328
PIWM/spwan/4/next_act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6de41fc6b2328d66913d0791dbe8fca0561807fa4d4011abf08d2ba26fb2a0a3
3
+ size 10328
PIWM/spwan/5/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa336863b99221fb3c05fad349b775c9d0c365ad1b67a23d8bebcf7962aea8ad
3
+ size 332
PIWM/spwan/5/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af9d8ad7724b20da5df2ddcc46a97f13fe4e1eb21f481a2e602224358ff71db3
3
+ size 1080128
PIWM/spwan/5/info.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"original_file_id": "highway_hdf5_dataset/highway_record_11.hdf5", "timestep_start": 0}
PIWM/spwan/5/low_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e4029cc246620c2f261abfd610106ffe163a285cf5b1065dcb916096a4b7b9f
3
+ size 43328
PIWM/spwan/5/next_act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6de41fc6b2328d66913d0791dbe8fca0561807fa4d4011abf08d2ba26fb2a0a3
3
+ size 10328
PIWM/spwan/6/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bbf0f2879b468f59b233af866f0bcca7b039d79816a4fb05cf088ece672f9ef
3
+ size 332
PIWM/spwan/6/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b59b9cee220a21ffec312bfcb37153ba951365a397e6337201c04a309d53bd03
3
+ size 1080128
PIWM/spwan/6/info.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"original_file_id": "highway_hdf5_dataset/highway_record_276.hdf5", "timestep_start": 0}
PIWM/spwan/6/low_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb026ddb3157086029fc80079fbf2f87a0272d5c124c4ef5eab1e959da454f78
3
+ size 43328
PIWM/spwan/6/next_act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a3ae4557287c76f288213bd269aa576003f5fdf61af5f926dcafd8552413a52
3
+ size 10328
PIWM/spwan/7/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9b76003fd3dc57a49418b904d35062de94ac130c93e108fda028e753974b1b6
3
+ size 332
PIWM/spwan/7/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c641a1bda249f5a6cd555ee70ffac8dab0c99d9c2e4896532dfbc8ca1ae94541
3
+ size 1080128
PIWM/spwan/7/info.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"original_file_id": "highway_hdf5_dataset/highway_record_792.hdf5", "timestep_start": 0}
PIWM/spwan/7/low_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8202b365c02ebe267296dacad8c7435d239716cc7dfd0dedaa61a99d7c55722
3
+ size 43328
PIWM/spwan/7/next_act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:455144a8ded5d4cb4f4bc48e806dda8eda168abe4db79bd8f9b36287753d2c77
3
+ size 10328
PIWM/spwan/8/act.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1e28f4d5cdbedac365d949ae324c181d723f97f00777285de5b407f77f75cf9
3
+ size 332
PIWM/spwan/8/full_res.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d409d3bfaa170980ab81cedb73f81e7afb4c71906c50b9b39fcd6a5a2fedcf9
3
+ size 1080128