Sfoglia il codice sorgente

Add `check_requirements(('pycocotools>=2.0',))` (#7295)

Add  `check_requirements(('pycocotools>=2.0',))`
modifyDataloader
Glenn Jocher GitHub 2 anni fa
parent
commit
c759bbdf19
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 5 aggiunte e 4 eliminazioni
  1. +5
    -4
      data/Objects365.yaml

+ 5
- 4
data/Objects365.yaml Vedi File

@@ -60,11 +60,12 @@ names: ['Person', 'Sneakers', 'Chair', 'Other Shoes', 'Hat', 'Car', 'Lamp', 'Gla

# Download script/URL (optional) ---------------------------------------------------------------------------------------
download: |
from pycocotools.coco import COCO
from tqdm import tqdm

from utils.general import Path, download, np, xyxy2xywhn

from utils.general import Path, check_requirements, download, np, xyxy2xywhn
check_requirements(('pycocotools>=2.0',))
from pycocotools.coco import COCO

# Make Directories
dir = Path(yaml['path']) # dataset root dir

Loading…
Annulla
Salva