Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- error
- 기타 연주
- pandas
- Numpy
- 핑거스타일
- paramiko
- SSH
- OpenCV
- Linux
- 채보
- VS Code
- mysql
- windows forms
- 오류
- pytorch
- JSON
- C#
- YOLO
- Python
- nvidia-smi
- pip
- 프로그래머스
- Visual Studio
- Selenium
- ubuntu
- label
- Docker
- C++
- 컨테이너
- C
Archives
- Today
- Total
목록VOC (1)
기계는 거짓말하지 않는다
torchvision VOC dataset download 문제
torchvision.datasets.VOCDetection를 상속받아 클래스를 만든 후 생성 시 download 매개변수를 True를 주면 VOC 데이터셋을 자동으로 다운로드 받을 수 있다. 상세한 매개변수는 voc.py의 class _VOCBase를 참조하면 된다. 기본값은 아래와 같다. class _VOCBase(VisionDataset): _SPLITS_DIR: str _TARGET_DIR: str _TARGET_FILE_EXT: str def __init__( self, root: str, year: str = "2012", image_set: str = "train", download: bool = False, transform: Optional[Callable] = None, target_t..
AI
2021. 8. 15. 15:14