Where there is a will,
there is a way
반응형

[RunPod] VScode 연결 방법

1. VScode에 Remote Development extension을 설치합니다. 2. Ctrl+Shift+p 버튼을 누른 후, Remote-SSH: Connect to Host...를 클릭합니다. 3. Add new SSH Host를 선택합니다.4. RunPod에서 복사한 SSH 주소와 Port를 입력합니다. 5. Enter를 누르고 맨 위에 있는 config도 선택합니다. 6. 오른쪽 아래에 Host가 추가 되었다는 메세지를 볼 수 있습니다.  7. 다시 한번 Ctrl+Shift+p 버튼을 누른 후, Remote-SSH: Connect to Host...를 클릭합니다. 8. 일전에 복사한 IP주소를 선택합니다. 9. 암호를 입력합니다. 10. 새 창이 뜨면서, RunPod의 원격장소와 연결됩니다.

카테고리 없음 2025.03.18 0

[RunPod] GPU 할당 및 SSH 접속 방법 (key생성 방법 포함)

A100 GPU를 사용하기 위해, RunPod이라는 서비스를 이용하게 되었습니다! https://www.runpod.io/?inflect=&targetid=kwd-606786457326&adgroupid=175137555098&loc_interest=&loc_physical=9196622&utm_source=adwords&utm_medium=ppc&utm_campaign=22174979174&utm_term=runpod&utm_content=730871123935&utm_gclid=Cj0KCQjwkN--BhDkARIsAD_mnIoChAb-tG6SDRPaFnqknyJ7HlNguwmaCa-_oyRRpLZk6Kb5sk1D8TYaAoywEALw_wcB&gad_source=1&gclid=Cj0KCQjwkN--Bh..

linux 2025.03.18 0

[Docker] Container를 Docker Hub에 올리는 방법

1. Docker container를 이미지로 저장1) 실행중인 container 확인docker ps 2) 컨테이너를 이미지로 commitdocker commit  :ex. docker commit abc123 myimage:latest  2. Docker Hub에 로그인1) Docker hub 로그인docker login 3. Docker 이미지를 Docker Hub에 푸시1) 이미지 태그docker tag : /:ex. docker tag myimage:latest myusername/myrepository:latest 2) 이미지 푸시docker push /:ex. docker push myusername/myrepository:latest - reference: chatgpt

linux 2024.06.14 0

[docker] "Failed to initialize NVML: Unknown Error"

문제어느날 갑자기 컨테이너 내에 잡혔던 GPU드라이버가 갑자기 안잡혔을때 해결하는 방식입니다 해결방법host 시스템 (컨테이너 밖)에서 다음 명령어를 입력합니다.sudo nano /etc/docker/daemon.json   파일 내에 아래 문구를 추가합니다."exec-opts": ["native.cgroupdriver=cgroupfs"]  예시로 아래와 유사하게 수정하면 됩니다.{     "runtimes": {         "nvidia": {             "args": [],             "path": "nvidia-container-runtime"         }     },     "exec-opts": ["native.cgroupdriver=cgroupfs"]  }  마지..

linux 2024.05.16 0

02. Variational Multiview Reconstruction(shape, texture)

model을 representation하는 2가지 기법에 대해 배우게 되었으며, 1) Explicit Shape Representation 2) Implicit Shape Representation Multiple View로 3d를 reconstruction하기 위한 photo consisteny function과 training을 하면서 shriking bias를 극복하기 위한 Silhouettes consistency function에 대해 알게 되었다. 추가적으로 아직 발전가능성이 많은 Multiview-texture Reconstruction방법 중 ICCV 2009에 Daniel Cremers교수님이 제안한 방법도 배우게 되었다. reference : www.youtube.com/watch?v=..

Multiple View Geometry 2021.02.15 0
반응형