nohup은 Linux에서 사용되는 백그라운드에서 프로세스의 진행을 도와주는 명령어이다. 따라서 학습 시킬 때 'nohup python ... > log.out&' 이런식으로 사용을 많이 하는데, cuda gpu를 설정해주는 ''CUDA_VISIBLE_DEVICES=0'" 이 명령어와 충돌한다. 이건 변수 선언이므로 nohup의 외부에서 선언을 해야하고, 그 다음에 nohup으로 파이썬 파일을 실행시키면 된다. CUDA_VISIBLE_DEVICES=1 nohup python test.py > test.out & 한 번 알아두면 나중에는 까먹지 않고 활용할듯하다. * CUDA_VISIBLE_DEVICES은 특정 GPU 사용을 도와주는 환경변수 설정 명령어이다.
container 가 갑자기 종료되고 start 하려니 갑자기 mismatch 에러가 뜨면서 실행이 안 된다. 이때 nvidia-smi를 입력해도 뜨지 않고 위의 에러가 나온다. 해결 방법은 nvidia driver를 unload하고 관련 모듈을 삭제하면 충돌이 사라진다. lsmod | grep nvidia 이걸 통해 로드되어 있는 목록을 확인한 다음, 이렇게 확인이 될 것이다. sudo rmmod nvidia_drm sudo rmmod nvidia_modeset sudo rmmod nvidia_uvm sudo rmmod nvidia 이걸 꼭 순서대로 언로드 해주시길! 만약에, "rmmod: ERROR: Module nvidia_drm is in use" 이런 형식의 에러가 뜬다면 sudo lsof /d..
conda로 가상환경을 만들고 실행하면 가끔 CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. To initialize your shell, run $ conda init Currently supported shells are: - bash - fish - tcsh - xonsh - zsh - powershell See 'conda init --help' for more information and options. IMPORTANT: You may need to close and restart your shell after running 'conda init'. 이런 오류가 뜹니다. 사실 이런..
Shapely import error: No module named 'shapely' 기하학 연산을 돕는 파이썬 라이브러리라고 합니다. pip으로 그대로 설치해주세요 pip install shapely pip으로 설치했는데 잘 안 된다면 가상환경을 활성화해주세요 source myvenv/bin/activate conda로 설치해주세요 conda install -c conda-forge shapely
ModuleNotFoundError: No module named 'cityscapesscripts' 설치 방법 cityscvapescripts를 설치하고, python -m pip install cityscapesscripts 그래픽툴도 설치해줍니다. python -m pip install cityscapesscripts[gui] 출처: https://github.com/mcordts/cityscapesScripts
git을 설치하는 방법은 'apt-get install git'입니다. 이 방법으로 했더니 "E: Package 'git' has no installation candidate"란 에러가 떠서 설치를 진행하지 못했습니다. Reading package lists... Done Building dependency tree Reading state information... Done Package git is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package '..
findfont: font family 'nanumgothiccoding' not found. import matplotlib as mpl import matplotlib.pyplot as plt import numpy as np a1, b1 = np.random.rand(2) a2, b2, c2 = np.random.rand(3) a3, b3, c3, d3 = np.random.rand(4) x = np.arange(-10, 10, 0.01) y1 = a1 * x + b1 y2 = a2 * x**2 + b2 * x + c2 y3 = a3 * x**3 + b3 * x**2 + c3 * x + d3 fig, axs = plt.subplots(1, 3, figsize=(15, 5)) axs[0].plot(x..
Docker container 도커 컨테이너 접속 방법 docker container 목록 확인 docker ps -a docker 가동 중인 container 목록 확인 docker ps 컨테이너에 접속하기 docker exec -it /bin/bash exec로 접속하는 명령어를 입력하고, 어떤 셀을 사용할지를 선택합니다. 표준인 bash를 선택. 이를 통해 접속을 할 수 있으며 환경 확인 및 설정 등이 가능하다.
- Total
- Today
- Yesterday
- support set
- cs231n
- 서버구글드라이브연동
- 구글드라이브서버다운
- 파이썬 클래스 계층 구조
- Prompt
- 구글드라이브다운
- CNN
- python
- vscode 자동 저장
- 파이썬 딕셔너리
- Unsupervised learning
- 파이썬
- 도커 컨테이너
- 파이썬 클래스 다형성
- 프롬프트
- 서버에다운
- prompt learning
- 구글드라이브연동
- clip
- 딥러닝
- 도커
- few-shot learning
- NLP
- 구글드라이브서버연동
- docker
- style transfer
- 퓨샷러닝
- 데이터셋다운로드
- stylegan
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |