kaggle에서 진행하는 'Lyft 3D Object Detection for Autonomous Vehicles'에 대한 project을 진행중이다.
https://www.kaggle.com/competitions/3d-object-detection-for-autonomous-vehicles
autonomous vehicles
- $IoU(A, B) = \frac{A \cap B}{A \cup B}$
97ce3ab08ccbc0baae0267cbf8d4da947e1f11ae1dbcb80c3f4408784cd9170c,1.0 2742.15 673.16 -18.65 1.834 4.609 1.648 2.619 car
token, confidence(뭔지 모르겠음), center_x, center_y, center_z, width, length, height, yaw, class_name
project_directory/
├── test_data/
│ ├── attribute.json
│ ├── calibrated_sensor.json
│ ├── category.json
│ ├── ego_pose.json
│ ├── log.json
│ ├── map.json
│ ├── sample.json
│ ├── sample_data.json
│ ├── scene.json
│ ├── sensor.json
│ └── visibility.json
├── test_images/
│ ├── host-a004_cam0_1231810077351067006.jpeg
│ ├── host-a004_cam0_1231810077551067006.jpeg
│ └── ...
├── test_lidar/
│ ├── host-a004_lidar1_1231810077401389686.bin
│ ├── host-a004_lidar1_1231810077601325926.bin
│ └── ...
├── test_maps/
│ └── map_raster_palo_alto.png
├── train_data/
│ ├── attribute.json
│ ├── calibrated_sensor.json
│ ├── category.json
│ ├── ego_pose.json
│ ├── log.json
│ ├── map.json
│ ├── sample.json
│ ├── sample_data.json
│ ├── scene.json
│ ├── sensor.json
│ └── visibility.json
├── train_images/
│ ├── host-a004_cam0_1232815252251064006.jpeg
│ ├── host-a004_cam0_1232815252451064006.jpeg
│ └── ...
├── train_lidar/
│ ├── host-a004_lidar1_1232815252301696606.bin
│ ├── host-a004_lidar1_1232815252501972246.bin
│ └── ...
├── train_maps/
│ └── map_raster_palo_alto.png
├── sample_submission.csv
└── train.csv