File tree 3 files changed +31
-1
lines changed
3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,10 @@ $ wget -P ~/autoware_data/tensorrt_yolox/ \
66
66
https://awf.ml.dev.web.auto/perception/models/yolox-sPlus-opt.EntropyV2-calibration.table \
67
67
https://awf.ml.dev.web.auto/perception/models/object_detection_yolox_s/v1/yolox-sPlus-T4-960x960-pseudo-finetune.onnx \
68
68
https://awf.ml.dev.web.auto/perception/models/object_detection_yolox_s/v1/yolox-sPlus-T4-960x960-pseudo-finetune.EntropyV2-calibration.table \
69
- https://awf.ml.dev.web.auto/perception/models/label.txt
69
+ https://awf.ml.dev.web.auto/perception/models/label.txt \
70
+ https://awf.ml.dev.web.auto/perception/models/semantic_segmentation_yolox_s/v1/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.onnx \
71
+ https://awf.ml.dev.web.auto/perception/models/semantic_segmentation_yolox_s/v1/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.EntropyV2-calibration.table \
72
+ https://awf.ml.dev.web.auto/perception/models/semantic_segmentation_yolox_s/v1/semseg_color_map.csv
70
73
71
74
72
75
# traffic_light_classifier
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ f5054e8a890c3be86dc1b4b89a5a36fb2279d4f6110b0159e793be062641bf65 ./tensorrt_yol
24
24
b9e9d7da33342262ccaea4469b4d02b8abb32b6d7bf737f9e0883fece1b8f580 ./tensorrt_yolox/yolox-sPlus-opt.EntropyV2-calibration.table
25
25
36b0832177b01e6b278e00c7369f1de71e616c36261cbae50f0753d41289da01 ./tensorrt_yolox/yolox-sPlus-opt.onnx
26
26
471a665f4243e654dff62578394e508db22ee29fe65d9e389dfc3b0f2dee1255 ./tensorrt_yolox/yolox-tiny.onnx
27
+ 4973da72e8c6420fca86ab8d61926df43776ffca3d3e3e39dc2a0297b3f83801 ./tensorrt_yolox/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.onnx
28
+ fcd1a3535cad763af792b281b8d753a5bc0f18298af34f9b455fc56294228034 ./tensorrt_yolox/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.EntropyV2-calibration.table
29
+ 305224094e71feb74412a863e21ce4f870365d514284b691cba163eca22cf580 ./tensorrt_yolox/semseg_color_map.csv
27
30
1a5a49eeec5593963eab8d70f48b8a01bfb07e753e9688eb1510ad26e803579d ./traffic_light_classifier/lamp_labels.txt
28
31
55ebb0d117a5e8943f8d1c6769f1d856b533079d4d871d8e923255cc992ad48a ./traffic_light_classifier/traffic_light_classifier_efficientNet_b1_batch_1.onnx
29
32
684e29843e3128eadb774018730644b3ab9b0a06dc4cdaeed579c2f3fa5d5265 ./traffic_light_classifier/traffic_light_classifier_efficientNet_b1_batch_4.onnx
Original file line number Diff line number Diff line change 237
237
mode : " 644"
238
238
checksum : sha256:3540a365bfd6d8afb1b5d8df4ec47f82cb984760d3270c9b41dbbb3422d09a0c
239
239
240
+ - name : Download tensorrt_yolox/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.onnx
241
+ become : true
242
+ ansible.builtin.get_url :
243
+ url : https://awf.ml.dev.web.auto/perception/models/semantic_segmentation_yolox_s/v1/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.onnx
244
+ dest : " {{ data_dir }}/tensorrt_yolox/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.onnx"
245
+ mode : " 644"
246
+ checksum : sha256:4973da72e8c6420fca86ab8d61926df43776ffca3d3e3e39dc2a0297b3f83801
247
+
248
+ - name : Download tensorrt_yolox/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.EntropyV2-calibration.table
249
+ become : true
250
+ ansible.builtin.get_url :
251
+ url : https://awf.ml.dev.web.auto/perception/models/semantic_segmentation_yolox_s/v1/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.EntropyV2-calibration.table
252
+ dest : " {{ data_dir }}/tensorrt_yolox/yoloXP-sPlus-T4-960x960-pseudo-finetune-semseg.EntropyV2-calibration.table"
253
+ mode : " 644"
254
+ checksum : sha256:fcd1a3535cad763af792b281b8d753a5bc0f18298af34f9b455fc56294228034
255
+
256
+ - name : Download tensorrt_yolox/semseg_color_map.csv
257
+ become : true
258
+ ansible.builtin.get_url :
259
+ url : https://awf.ml.dev.web.auto/perception/models/semantic_segmentation_yolox_s/v1/semseg_color_map.csv
260
+ dest : " {{ data_dir }}/tensorrt_yolox/semseg_color_map.csv"
261
+ mode : " 644"
262
+ checksum : sha256:305224094e71feb74412a863e21ce4f870365d514284b691cba163eca22cf580
263
+
240
264
# traffic_light_classifier
241
265
- name : Create traffic_light_classifier directory inside {{ data_dir }}
242
266
ansible.builtin.file :
You can’t perform that action at this time.
0 commit comments