반응형 전체 글77 [Docker] - windows환경에서 pytorch 컨테이너 생성, 재시작 및 폴더 마운트 # 파이토치 이미지 선택 도커허브에서 pytorch 검색 후 여러 이미지 중 'pytorch/pytorch'를 들어가 Tags를 누르면 그 안에서 여러 이미지를 또 검색할 수 있다. 기존에 개발하던 환경과 동일한 cuda 10.2 버전을 선택해서 pull 하였다. # 컨테이너 생성 - gpu버전으로 생성 1. gpu 버전 생성 run은 새로운 컨테이너를 생성하고 실행하는 명령어, run으로 이미 생성된 컨테이너에 연결할 수 없다 다음과 같이 '--gpus all'을 붙여야 gpu를 사용할 수 있다. * nvidia-smi -> 사용하고 있는 2개의 gpu가 인식된다. * torch.cuda.is_available() -> True 로 나온다. 2. non-gpu 버전 생성 docker run -it --.. 2021. 12. 21. [Apache2] 로컬 네트워크, 다른 PC에서 Apache 서버 접속 실패 해결 방안 # 문제 사항 노트북에서 Apache2 서버를 설치했는데, 허브로 묶인 Local LAN에서 접속이 안되었다. 여러가지 찾아본 결과 방화벽 문제가 있었다. # 해결 방법 sudo apt install firewalld sudo firewall-cmd --permanent --zone=public --add-service=http sudo firewall-cmd --permanent --zone=public --add-service=https firewalld를 설치하고 2개 명령어를 실행 후 재부팅하니 정상적으로 Apache2의 초기 index.html이 로딩되었다. # 결과 2021. 12. 21. Ubuntu server 18.04 - WIFI 연결 -> nmcli d wifi connect 와이파이이름 password 와이파이비밀번호 -> 와이파이 이름, 비밀번호에 따옴표(")나 꺽세()는 필요하지 않다 내 경우는 다음 명령어를 통해 WIFI 연결에 성공했다. 다만, 사전에 이더넷을 통한 인터넷 연결이 필요했다. sudo apt-get install network-manager 를 통해 네트워크 매니저를 설치해야 nmcli을 이용할 수 있었다. 출처 : https://askubuntu.com/questions/1201428/how-can-i-connect-wifi-in-ubuntu-18-04-lts-which-i-recently-updated-from-16-04 2021. 12. 9. pytorch - RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation: [torch.cuda.FloatTensor [1, 512, 4, 4]] is at version 2; expected version 1 instead. Hint: enable anomaly detection to find the opera.. # 개발 환경 Pytorch Version : 1.7.0 # 오류 내용 RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation: [torch.cuda.FloatTensor [1, 512, 4, 4]] is at version 2; expected version 1 instead. Hint: enable anomaly detection to find the operation that failed to compute its gradient, with torch.autograd.set_detect_anomaly(True). # 해결 with torch.autograd.se.. 2021. 8. 28. 이전 1 ··· 8 9 10 11 12 13 14 ··· 20 다음 반응형