poissonfish commited on
Commit
5a9604c
1 Parent(s): aa2d9ad

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -408,3 +408,36 @@ configs:
408
  - split: test
409
  path: c_external/test-*
410
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
408
  - split: test
409
  path: c_external/test-*
410
  ---
411
+
412
+ # COw LOcalization (COLO) Dataset
413
+
414
+ ## Download the Dataset
415
+
416
+ To download the dataset, you need to have the required Python dependencies installed. You can install them using either of the following commands:
417
+
418
+ ```sh
419
+ python -m pip install pyniche
420
+ ```
421
+ or
422
+
423
+ ```sh
424
+ pip install pyniche
425
+ ```
426
+
427
+ Once the dependencies are installed, use the Python console to provide the download destination folder in the `root` parameter and specify the export data format in the `format` parameter:
428
+
429
+ ```python
430
+ from pyniche.data.download import COLO
431
+
432
+ # Example: Download COLO in the YOLO format
433
+ COLO(
434
+ root="download/yolo", # Destination folder
435
+ format="yolo", # Data format
436
+ )
437
+
438
+ # Example: Download COLO in the COCO format
439
+ COLO(
440
+ root="download/coco", # Destination folder
441
+ format="coco", # Data format
442
+ )
443
+ ```