Update README.md
Browse files
README.md
CHANGED
|
@@ -26,4 +26,60 @@ For further details, please refer to the following resources:
|
|
| 26 |
**Project Page**: https://mukil07.github.io/VCBM.github.io/ \
|
| 27 |
**Paper**: https://arxiv.org/pdf/2510.09200 \
|
| 28 |
**Code**: https://github.com/Mukil07/DIP-Explainability/tree/main \
|
| 29 |
-
**Checkpoint**: https://huggingface.co/Skyrmion/VCBM/tree/main
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
**Project Page**: https://mukil07.github.io/VCBM.github.io/ \
|
| 27 |
**Paper**: https://arxiv.org/pdf/2510.09200 \
|
| 28 |
**Code**: https://github.com/Mukil07/DIP-Explainability/tree/main \
|
| 29 |
+
**Checkpoint**: https://huggingface.co/Skyrmion/VCBM/tree/main
|
| 30 |
+
|
| 31 |
+
The train/val/test csv contains multiple rows, where each row corresponds to the particular video capture. The values in each row contains comma separated entires.
|
| 32 |
+
They are `video id, manuever class (7 classes), gaze explanations (15 classes), one hot encoded ego explanations (17 entries)`.
|
| 33 |
+
|
| 34 |
+
The maneuver class mapping is as follows:
|
| 35 |
+
```shell
|
| 36 |
+
0: Straight
|
| 37 |
+
1: Stop
|
| 38 |
+
2: Left Turn
|
| 39 |
+
3: Left Lane Change
|
| 40 |
+
4: Right Turn
|
| 41 |
+
5: Right Lane Change
|
| 42 |
+
6: U Turn
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
The gaze explanation (**gaze_eX**) class mapping is as follows:
|
| 46 |
+
```shell
|
| 47 |
+
0: The Gaze is mostly towards the forward direction
|
| 48 |
+
1: The Gaze is mostly towards the traffic ahead
|
| 49 |
+
2: The Gaze is towards the action inducing objects
|
| 50 |
+
3: The Gaze is towards the right side mirror
|
| 51 |
+
4: The Gaze is on the left side and slowly changes to right side
|
| 52 |
+
5: The Gaze is mostly towards the front right side
|
| 53 |
+
6: The Gaze is initially towards left side and then moves to the right side
|
| 54 |
+
7: The Gaze is mostly towards the right side
|
| 55 |
+
8: The Gaze is mostly towards the right side mirror
|
| 56 |
+
9: The Gaze is towards the front right side
|
| 57 |
+
10: The Gaze is mostly towards the front left side
|
| 58 |
+
11: The Gaze is initially towards the right side and then moves to left side
|
| 59 |
+
12: The Gaze is mostly to the left side
|
| 60 |
+
13: The Gaze is mostly towards the left side mirror
|
| 61 |
+
14: The Gaze is towards the front left side
|
| 62 |
+
```
|
| 63 |
+
The order of explanations in the one hot encoded ego explanations (**ego_eX**) vector is as follows:
|
| 64 |
+
```shell
|
| 65 |
+
0: The Ego vehicle is nearing an intersection and theres no traffic light
|
| 66 |
+
1: The Ego vehicle is nearing an intersection and traffic light is green
|
| 67 |
+
2: The Ego vehicle follows the traffic ahead
|
| 68 |
+
3: The road is clear ahead
|
| 69 |
+
4: The Ego vehicle deviates to avoid slow vehicle/obstacles and moves straight
|
| 70 |
+
5: The vehicle ahead slows down
|
| 71 |
+
6: Pedestrian or Vehicle cutting in the path ahead
|
| 72 |
+
7: The Ego vehicle is nearing an intersection and traffic light is red
|
| 73 |
+
8: The Ego vehicle joins the traffic moving to the right
|
| 74 |
+
9: A right turn coming ahead
|
| 75 |
+
10: The traffic moves from the left to right side at the intersection
|
| 76 |
+
11: The traffic moves from the right to left side at the intersection
|
| 77 |
+
12: The road is clear ahead on the right lane
|
| 78 |
+
13: No Speeding vehicle on the right lane is coming from the rear right side
|
| 79 |
+
14: A left turn coming ahead
|
| 80 |
+
15: The road is clear ahead on the left lane
|
| 81 |
+
16: No Speeding vehicle on the left lane is coming from the rear left side
|
| 82 |
+
```
|
| 83 |
+
|
| 84 |
+
**Note:** The video name is common across all the video folders, i.e. lets say 2b69bf02-f20a-4ea4-8100-aeac205c6e17.mp4 will be available in front, rear, right, left, driver and ariagaze folders.
|
| 85 |
+
They are time synced videos captured at the particular manuever.
|