MMDETECTION 설치 및 MMCV 설치 수행 문의
4206
작성자 없음
안녕하세요 이번 강의를 듣게 된 이오규입니다
코랩을 통해 교육을 듣고 있습니다
혹시 ubuntu 환경에서 MMDETECTION 및 MMCV를 설치 후 학습에 이용을 하려고 합니다
설치 관련해서 도움을 받거나 참조 url주소가 있으시면 답변 부탁드립니다
답변 1
0
안녕하십니까,
Ubuntu에서 mmcv와 mmdetection 설치가 특별히 다르지 않습니다.
https://mmdetection.readthedocs.io/en/v1.2.0/INSTALL.html
를 참조하셔서
1. conda, pytorch와 필요한 library를 먼저 설치하시고,
2. https://github.com/open-mmlab/mmcv에서 mmcv 설치하신 다음에
pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/{cu_version}/{torch_version}/index.html
3. https://mmdetection.readthedocs.io/en/v1.2.0/INSTALL.html 대로 mmdetection git clone후에 설치 하시면 될 것 같습니다.
정리하면 아래와 같을것 같습니다.
conda create -n open-mmlab python=3.7 -y
conda activate open-mmlab
conda install -c pytorch pytorch torchvision -y
#만약 cuda가 11.1 이고 pytorch가 1.10.0 이면
pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cuda111/torch1.10.0/index.html
git clone https://github.com/open-mmlab/mmdetection.git
cd mmdetection
pip install -r requirements/build.txt
pip install "git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI"
pip install -v -e .
mmcv 문의 드립니다.
0
51
2
MMDetection 버전 이슈
0
96
2
강의 환경설정 질문
0
109
2
Custom Dataset에서의 polygon 정보 관련
0
155
3
cvat.ai 보안 수준이 궁금합니다
0
140
2
캐클 nucleus 챌린지 runpod 실습 코드 에러 질문드립니다.
0
175
3
추론 결과의 Precision(또는 mAP) 평가 방법
0
139
2
mmdetection mask rcnn inferenct 실습 시 runpod 템플릿 관해서 질문드립니다.
0
104
2
runpod에서 google drive 연결 시 오류 발생
0
171
2
로드맵 선택
0
101
1
mmcv
0
105
2
Anchor box의 Positive 처리 위치
0
103
2
해당 강의 runpod 적용 후 에러 제보드립니다
0
137
2
run pod credit 관련 제보
0
183
2
mmdetection 2.x과 3.x 호환 관련 표기
0
126
2
mm_faster_rcnn_train_kitti.ipynb 실행 오류
0
162
3
질문 드립니다.
0
121
3
mm_faster_rcnn_train_coco_bccd 실행 오류 질문드립니다.
0
118
1
강사님께 수정을 제안드리고 싶은 것이 있습니다.
0
129
1
google automl efficientdet 다운로드 및 설치 오류
0
113
1
이상 탐지에 사용할 비전 기술 조언 부탁드립니다.
0
145
2
OpenCV 관련 질문드립니다.
0
130
2
mmcv 설치관련해서 문의드려요
0
416
3
강의 구성 관련해서 질문이 있습니다
1
169
2





