딥러닝 피시 원격 접속
https://divine-tech.atlassian.net/wiki/spaces/SW/pages/17858565/Workstation
https://bosungtea9416.tistory.com/entry/VScode로-서버에-SSH-원격-접속하기
우분투에 vs code 설치
https://chunggaeguri.tistory.com/entry/Ubuntu-2004-Visual-Studio-Code-설치방법
- vs code 원격접속 방법
'CTRL + SHIFT + P' 를 누르고, Remote-SSH : Connect to Host
Host : divine@172.30.1.100 (@ 뒤의 번호는 IP address 를 의미한다.)
비밀 번호 : 1q2w3e4r!
- 사용 레포지토리
media/divine/Data/nia/maskrcnn
- mmcv-full 설치
!pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu113/torch1.12.0/index.html
- 파이토치 설치
pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu113
- MMdetection 설치
git clone https://github.com/open-mmlab/mmdetection.git
cd mmdetection; python setup.py install
- MMdetection 설치 중 에러 발생
관련 이슈 : https://github.com/autogluon/autogluon/issues/2494
해결 시도 : 해결
pip install pycocotools
- MMdetection 을 maskrcnn 깃의 하위 폴더에 넣으려고 할 때
git submodule add https://github.com/open-mmlab/mmdetection.git
- 만약 폴더를 잘못 만들어 삭제 했는데 캐시가 그대로 남아있다면
https://m.blog.naver.com/bestmic/220939712681
지운 폴더에 대한 캐시 확인
git ls-files --stage /media/divine/Data/nia/maskrcnn/venv/mmdetection
캐시 삭제
git rm --cached /media/divine/Data/nia/maskrcnn/venv/divine_maskrcnn/mmdetection
'Project' 카테고리의 다른 글
[Pointpillars] MMDetection3D 세팅 및 데모 확인 (0) | 2023.02.09 |
---|---|
[PCD] Cuboid 필터링 하기 (2) | 2023.02.01 |
[Pointpillars] Kitty Dataset #2 (0) | 2022.12.05 |
[Pointpillars] Kitti Dataset (0) | 2022.12.05 |
[PointPillars] MMdetection3D와 Kitti dataset 을 활용한 시도 (0) | 2022.12.02 |