π [Merge] branch 'SETUP' into TRAIN
Browse files- README.md +2 -0
- utils/dataloader.py +1 -1
- utils/get_dataset.py +1 -1
README.md
CHANGED
|
@@ -13,7 +13,9 @@ While the project's structure is still being finalized, we ask that potential co
|
|
| 13 |
|
| 14 |
If you are interested in contributing, please keep an eye on project updates or contact us directly at [henrytsui000@gmail.com](mailto:henrytsui000@gmail.com) for more information.
|
| 15 |
|
|
|
|
| 16 |
|
|
|
|
| 17 |
|
| 18 |
## To-Do Lists
|
| 19 |
- [ ] Project Setup
|
|
|
|
| 13 |
|
| 14 |
If you are interested in contributing, please keep an eye on project updates or contact us directly at [henrytsui000@gmail.com](mailto:henrytsui000@gmail.com) for more information.
|
| 15 |
|
| 16 |
+
## Star History
|
| 17 |
|
| 18 |
+
[](https://star-history.com/#WongKinYiu/yolov9mit&Date)
|
| 19 |
|
| 20 |
## To-Do Lists
|
| 21 |
- [ ] Project Setup
|
utils/dataloader.py
CHANGED
|
@@ -50,7 +50,7 @@ class YoloDataset(Dataset):
|
|
| 50 |
cache[phase_name] = data
|
| 51 |
|
| 52 |
cache.close()
|
| 53 |
-
logger.info("Loaded {} cache", phase_name)
|
| 54 |
data = cache[phase_name]
|
| 55 |
return data
|
| 56 |
|
|
|
|
| 50 |
cache[phase_name] = data
|
| 51 |
|
| 52 |
cache.close()
|
| 53 |
+
logger.info("π¦ Loaded {} cache", phase_name)
|
| 54 |
data = cache[phase_name]
|
| 55 |
return data
|
| 56 |
|
utils/get_dataset.py
CHANGED
|
@@ -60,7 +60,7 @@ def prepare_dataset(download_cfg):
|
|
| 60 |
|
| 61 |
# Check if the correct number of files exists
|
| 62 |
if check_files(extract_to, expected_files):
|
| 63 |
-
logger.info(f"Dataset {dataset_type} already verified.")
|
| 64 |
continue
|
| 65 |
|
| 66 |
if os.path.exists(local_zip_path):
|
|
|
|
| 60 |
|
| 61 |
# Check if the correct number of files exists
|
| 62 |
if check_files(extract_to, expected_files):
|
| 63 |
+
logger.info(f"β
Dataset {dataset_type: >4} already verified.")
|
| 64 |
continue
|
| 65 |
|
| 66 |
if os.path.exists(local_zip_path):
|