YOLO V5 실습
·
알쓸신잡
1. 가상환경 생성 #가상환경 생성 conda create -n yolov5 python=3.8 #가상환경 실행 conda activate yolov5 2. pytorch 설치 자신의 gpu 세팅(cuda 11.3) 에 맞는 pytorch 버전 설치 ( gpu세팅을 아직 안한 상태라면 아래 링크에서 설정먼저 하고 오기) https://changsroad.tistory.com/342 PyTorch An open source machine learning framework that accelerates the path from research prototyping to production deployment. pytorch.org # CUDA 11.3 conda install pytorch==1.10.0 t..