Divyanshudiv commited on
Commit
fccae00
·
verified ·
1 Parent(s): df7e06e

Upload folder using huggingface_hub

Browse files
code/hydra/config.yaml ADDED
The diff for this file is too large to render. See raw diff
 
code/hydra/hydra.yaml ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ hydra:
2
+ run:
3
+ dir: ${output_dir}
4
+ sweep:
5
+ dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S}
6
+ subdir: ${hydra.job.num}
7
+ launcher:
8
+ _target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher
9
+ sweeper:
10
+ _target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper
11
+ max_batch_size: null
12
+ params: null
13
+ help:
14
+ app_name: ${hydra.job.name}
15
+ header: '${hydra.help.app_name} is powered by Hydra.
16
+
17
+ '
18
+ footer: 'Powered by Hydra (https://hydra.cc)
19
+
20
+ Use --hydra-help to view Hydra specific help
21
+
22
+ '
23
+ template: '${hydra.help.header}
24
+
25
+ == Configuration groups ==
26
+
27
+ Compose your configuration from those groups (group=option)
28
+
29
+
30
+ $APP_CONFIG_GROUPS
31
+
32
+
33
+ == Config ==
34
+
35
+ Override anything in the config (foo.bar=value)
36
+
37
+
38
+ $CONFIG
39
+
40
+
41
+ ${hydra.help.footer}
42
+
43
+ '
44
+ hydra_help:
45
+ template: 'Hydra (${hydra.runtime.version})
46
+
47
+ See https://hydra.cc for more info.
48
+
49
+
50
+ == Flags ==
51
+
52
+ $FLAGS_HELP
53
+
54
+
55
+ == Configuration groups ==
56
+
57
+ Compose your configuration from those groups (For example, append hydra/job_logging=disabled
58
+ to command line)
59
+
60
+
61
+ $HYDRA_CONFIG_GROUPS
62
+
63
+
64
+ Use ''--cfg hydra'' to Show the Hydra config.
65
+
66
+ '
67
+ hydra_help: ???
68
+ hydra_logging:
69
+ version: 1
70
+ formatters:
71
+ simple:
72
+ format: '[%(asctime)s][HYDRA] %(message)s'
73
+ handlers:
74
+ console:
75
+ class: logging.StreamHandler
76
+ formatter: simple
77
+ stream: ext://sys.stdout
78
+ root:
79
+ level: INFO
80
+ handlers:
81
+ - console
82
+ loggers:
83
+ logging_example:
84
+ level: DEBUG
85
+ disable_existing_loggers: false
86
+ job_logging:
87
+ version: 1
88
+ formatters:
89
+ simple:
90
+ format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
91
+ handlers:
92
+ console:
93
+ class: logging.StreamHandler
94
+ formatter: simple
95
+ stream: ext://sys.stdout
96
+ file:
97
+ class: logging.FileHandler
98
+ formatter: simple
99
+ filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log
100
+ root:
101
+ level: INFO
102
+ handlers:
103
+ - console
104
+ - file
105
+ disable_existing_loggers: false
106
+ env: {}
107
+ mode: RUN
108
+ searchpath:
109
+ - pkg://navsim.planning.script.config.common
110
+ callbacks: {}
111
+ output_subdir: ${output_dir}/code/hydra
112
+ overrides:
113
+ hydra:
114
+ - hydra.mode=RUN
115
+ task:
116
+ - train_test_split=navtrain
117
+ - experiment_name=transfuser_training
118
+ job:
119
+ name: run_training
120
+ chdir: false
121
+ override_dirname: experiment_name=transfuser_training,train_test_split=navtrain
122
+ id: ???
123
+ num: ???
124
+ config_name: default_training
125
+ env_set: {}
126
+ env_copy: []
127
+ config:
128
+ override_dirname:
129
+ kv_sep: '='
130
+ item_sep: ','
131
+ exclude_keys: []
132
+ runtime:
133
+ version: 1.2.0
134
+ version_base: '1.2'
135
+ cwd: /home/shlok/navsim_workspace/navsim
136
+ config_sources:
137
+ - path: hydra.conf
138
+ schema: pkg
139
+ provider: hydra
140
+ - path: /home/shlok/navsim_workspace/navsim/navsim/planning/script/config/training
141
+ schema: file
142
+ provider: main
143
+ - path: navsim.planning.script.config.common
144
+ schema: pkg
145
+ provider: hydra.searchpath in main
146
+ - path: ''
147
+ schema: structured
148
+ provider: schema
149
+ output_dir: /home/shlok/navsim_workspace/exp/transfuser_training/2026.01.20.12.52.56
150
+ choices:
151
+ agent: transfuser_agent
152
+ worker: ray_distributed_no_torch
153
+ train_test_split: navtrain
154
+ train_test_split/scene_filter: navtrain
155
+ hydra/env: default
156
+ hydra/callbacks: null
157
+ hydra/job_logging: default
158
+ hydra/hydra_logging: default
159
+ hydra/hydra_help: default
160
+ hydra/help: default
161
+ hydra/sweeper: basic
162
+ hydra/launcher: basic
163
+ hydra/output: default
164
+ verbose: false
code/hydra/overrides.yaml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ - train_test_split=navtrain
2
+ - experiment_name=transfuser_training
lightning_logs/version_0/checkpoints/epoch=19-step=6660.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2e9b6e74d4bbcd38109f449c92468ffac98de46eb109d391fb17616ba6f4a85
3
+ size 667810300
lightning_logs/version_0/events.out.tfevents.1768913673.crgh100.3495397.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2889bf09cfde6ab07db74675ffdb35f8a7e14f5d9eb80f9eba45dc5ba8b0c3e6
3
+ size 65393563
lightning_logs/version_0/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
run_training.log ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [2026-01-20 12:53:04,838][__main__][INFO] - Global Seed set to 0
2
+ [2026-01-20 12:53:04,840][__main__][INFO] - Path where all results are stored: /home/shlok/navsim_workspace/exp/transfuser_training/2026.01.20.12.52.56
3
+ [2026-01-20 12:53:04,840][__main__][INFO] - Building Agent
4
+ [2026-01-20 12:53:05,951][timm.models._builder][INFO] - Loading pretrained weights from Hugging Face hub (timm/resnet34.a1_in1k)
5
+ [2026-01-20 12:53:06,274][httpx][INFO] - HTTP Request: HEAD https://huggingface.co/timm/resnet34.a1_in1k/resolve/main/model.safetensors "HTTP/1.1 302 Found"
6
+ [2026-01-20 12:53:06,276][timm.models._hub][INFO] - [timm/resnet34.a1_in1k] Safe alternative available for 'pytorch_model.bin' (as 'model.safetensors'). Loading weights using safetensors.
7
+ [2026-01-20 12:53:06,305][timm.models._builder][INFO] - Missing keys (fc.weight, fc.bias) discovered while loading pretrained weights. This is expected if model is being adapted.
8
+ [2026-01-20 12:53:06,698][__main__][INFO] - Building Lightning Module
9
+ [2026-01-20 12:53:06,698][__main__][INFO] - Building SceneLoader
10
+ [2026-01-20 12:54:32,648][__main__][INFO] - Building Datasets
11
+ [2026-01-20 12:54:32,660][__main__][INFO] - Num training samples: 85109
12
+ [2026-01-20 12:54:32,662][__main__][INFO] - Num validation samples: 18179
13
+ [2026-01-20 12:54:32,662][__main__][INFO] - Building Trainer
14
+ [2026-01-20 12:54:32,713][__main__][INFO] - Starting Training