분류 전체보기(48)
-
ModuleNotFoundError: No module named 'apex'
git clone https://github.com/NVIDIA/apex cd apex pip install -v --disable-pip-version-check --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" ./ 아래의 주소로 가서 참조하면 된다. https://github.com/NVIDIA/apex GitHub - NVIDIA/apex: A PyTorch Extension: Tools for easy mixed precision and distributed training in Pytorch A PyTorch Extension: Tools for easy mixed precision and distributed tr..
2022.01.13 -
Docker 내부 root 계정 권한
Docker 내부에서 permission error가 발생하면 root의 권한이 필요한데, 설정하지 않은 P/W를 요구하는 경우가 나타난다. 이럴경우 root 계정으로 docker를 접속하는 방법으로 해결 할 수 있다. docker exec -u 0 -it mycontainer bash mycontainer -> 컨테이너 이름
2022.01.09 -
no module named 'tqdm'
pip install tqdm
2022.01.09 -
리눅스에서 깔끔하게 컴퓨터 자원 모니터링
gmonitor를 활용하면 컴퓨터의 자원을 훨씬 편하게 확인 할 수 있다. 실제로 GPU에 부하를 주면 아래의 이미지와 같이 출력됩니다. (GPU 부하 프로그램은 gpu_burn 프로그램을 활용하였습니다.) Ref. https://github.com/wilicc/gpu-burn GitHub - wilicc/gpu-burn: Multi-GPU CUDA stress test Multi-GPU CUDA stress test. Contribute to wilicc/gpu-burn development by creating an account on GitHub. github.com https://eungbean.github.io/2018/08/29/gpu-monitor-with-byobu/ Ubuntu에서 GPU..
2022.01.06 -
컨테이너 목록 불러오기
실행 중인 컨테이너 목록 불러오기 sudo docker ps 컨테이너 목록 전체 불러오기 sudo docker ps -a
2022.01.04 -
Linux에서 Pycharm 바로가기 만들기
pycharm이 영어로 설정 되어 있을 경우, 상단 목록에서 'Tools' -> 'Create Desktop Entry'를 클릭하면 된다.
2021.12.20