AttributeError: module 'PIL.Image' has no attribute 'ANTIALIAS' 이런 에러가 발생하는 이유는 Python의 pillow package에 해당 모듈이 없다는 오류입니다. version에 따라 모듈이 삭제되기도 하는데, pillow 10.0.0에서는 'ANTIALIAS'의 모듈이 제거되었고, 'PIL.Image.LANCZOS' 또는 'PIL.Image.Resampling.LANCZOS'를 사용해야 합니다. 원래의 알고리즘과 동일하여서 파일 내에서 수정을 하여도 되고, import PIL import numpy as np # Gradient image with a sharp color boundary across the diagonal large_arr = n..
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 '..
git clone https://github.com/NVIDIA/apex cd apex # if pip >= 23.1 (ref: https://pip.pypa.io/en/stable/news/#v23-1) which supports multiple `--config-settings` with the same key... pip install -v --disable-pip-version-check --no-cache-dir --no-build-isolation --config-settings "--build-option=--cpp_ext" --config-settings "--build-option=--cuda_ext" ./ # otherwise pip install -v --disable-pip-vers..
- Total
- Today
- Yesterday
- support set
- NLP
- cs231n
- 데이터셋다운로드
- style transfer
- 구글드라이브다운
- Unsupervised learning
- 구글드라이브서버다운
- 파이썬 딕셔너리
- 구글드라이브서버연동
- 서버구글드라이브연동
- 도커
- stylegan
- python
- 퓨샷러닝
- CNN
- 도커 컨테이너
- vscode 자동 저장
- 파이썬 클래스 계층 구조
- 서버에다운
- 프롬프트
- docker
- Prompt
- 파이썬 클래스 다형성
- prompt learning
- clip
- 구글드라이브연동
- 파이썬
- 딥러닝
- few-shot learning
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |