Skip to content
Snippets Groups Projects
Commit 9fe3360b authored by Selim Lakhdar's avatar Selim Lakhdar
Browse files

runs

parent 92bc5daa
No related branches found
No related tags found
No related merge requests found
Showing
with 1964 additions and 2 deletions
No preview for this file type
This diff is collapsed.
This diff is collapsed.
import os
root_path = "./data/images/"
dirs = ["VID_20220208_150059", 'drones_labels']
train_file = "./data/train.txt"
with open(train_file, "w") as file:
for dd in dirs:
for root_dir, directories, files in os.walk(root_path + dd):
for f in files:
file_path = root_dir + "/" + f
file_path = file_path.replace('./data/', './')
if str(file_path).endswith('jpg'):
print(file_path)
file.writelines(file_path + '\n')
# Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..] # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
path: ../../data # dataset root dir path: ../../data # dataset root dir
train: images/VID_20220208_150059 # train images (relative to 'path') 118287 images train: train.txt # train images (relative to 'path') 118287 images
val: images/VID_20220208_150059 # train images (relative to 'path') 5000 images val: val.txt # train images (relative to 'path') 5000 images
test: #test-dev2017.txt # 20288 of 40670 images, submit to https://competitions.codalab.org/competitions/20794 test: #test-dev2017.txt # 20288 of 40670 images, submit to https://competitions.codalab.org/competitions/20794
# Classes # Classes
......
...@@ -20,7 +20,12 @@ _wandb: ...@@ -20,7 +20,12 @@ _wandb:
- 1 - 1
- 2 - 2
- 3 - 3
2:
- 1
- 2
- 3
3: 3:
- 2
- 16 - 16
4: 3.8.12 4: 3.8.12
5: 0.12.10 5: 0.12.10
......
wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_0.png

164 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_1.png

240 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_10.png

232 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_11.png

238 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_12.png

235 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_13.png

235 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_14.png

243 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_15.png

236 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_2.png

241 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_3.png

246 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_4.png

241 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_5.png

242 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_6.png

242 KiB

wandb/run-20220221_193329-32rw10gx/files/media/images/BoundingBoxDebugger_1_7.png

242 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment