오류 핸들링

jupyter notebook에서 wandb 사용해서 훈련시 에러 발생!pip install ipython==8.16.1 버전맞춰 재설치하면 해결 출처https://github.com/wandb/wandb/issues/6546 [CLI]: TypeError: _WandbInit._pause_backend() takes 1 positional argument but 2 were given · Issue #6546 · wandb/wandbDescribe the bug if i used run = wandb.init(entity="bart_tadev", project='GPT-4 in Python', name="test") in jupyter notebook error raised TypeError: _Wan..
forward 중에 inplace operaion 이 있어서 역전파 autograd시 무슨 문제가 있다는 말 x += model(x) 이런 꼴이 있는지 확인해보자 t = model(x) x = x+t 이렇게 바꾸면 됨 https://discuss.pytorch.org/t/runtimeerror-one-of-the-variables-needed-for-gradient-computation-has-been-modified-by-an-inplace-operation-torch-cuda-floattensor-1-1-256-256-which-is-output-0-of-relubackward0-is-at-version-1-expected-version-0-instead/143490/9 RuntimeError: on..
pytorch 2.0.1 conda 설치할 때 오류 발생함 아래 코드로 패키지 설치 후 오류 해결 pip install chardet ref) https://github.com/huggingface/transformers/issues/21858 cannot import name 'COMMON_SAFE_ASCII_CHARACTERS' · Issue #21858 · huggingface/transformers System Info macbook pro m2 with anaconda, python 3.9 I'm running transformers on an m1 mac and am getting the following error when I import from transformers import OwlV..
pytorch에서 nn.Module을 상속한 클래스를 만들 때, init을 해주지 않아서 발생하는 오류 class aa(nn.Module): def __init__(self): super(aa, self).__init__() ## 이거 추가 self.a = 1 self.b = 2 super()추가하여 수정
torch.expand 함수를 사용할 때, 차원이 1이 아닌 축에 expand를 적용해서 발생한 오류 오류 ex) 에서 1이 아닌 dim을 확장하려고 하면 오류 발생 차원이 1일 때만 정상 동작 이를 대체하여 torch.repeat과 torch.repeat_interleave를 사용할 수 있음. 둘 다 텐서를 반복하여 축을 확장하는 함수이지만, repeat는 행, 열의 값을 무조건 1회 반복해야 함. 더 자세한 예시는 아래 링크에 ) https://cccaaa.tistory.com/33 torch tensor 반복 확장하기 expand vs. repeat vs. repeat_interleave 차이 pytorch에서 텐서를 반복하여 확장하는 방법들을 정리하겠음. 1) torch.expand() dim=1..
간단한 수정으로 해결 가능 sudo vi /usr/lib/python3/dist-packages/UbuntuDrivers/detect.py 해서 py파일 들어간 후 i (입력) 누르지 말고/int(package_name) 입력 + 엔터로 search하기 835 line에 version = int(package_name.split('-')[-1]) 을 version = int(package_name.split('-')[-2]) 로 수정 **** 23/08/06 수정 버전 이름에 -open이나 -open-server가 들어가는 경우 등 다양한 경우가 있으니 -2 -> 2로 수정하거나 확인해보고 본인 버전에 맞게 수정,, ref ) https://askubuntu.com/questions/1436601/ubu..
스펙 : rtx 3090 + ubuntu 22.04 문제상황 : ubuntu nvidia-driver install 후 nvidia-smi 실행 시 NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running. 또는 No devices were found 가 출력되는 오류 발생 해결방안 : ubuntu-driver 재설치 나의 경우 driver-525-open, 470 등 다양한 버전을 설치해봤는데 싹 다 오류나고, 525로 설치하니 정상 동작함. 아래 명령어 실행 # lshw -C display # 그래픽카드 ..
장고 python manage.py runserver 후 다음과 같은 오류 발생 시 aws 보안그룹으로 가서(ec2 인바운드 규칙) 내 아이피가 제대로 등록됬는지 확인해야함 보통 내 아이피주소가 바뀌어서 등록안된 경우가 많음 -> 새로 모든트래픽 + ip/32 해서 등록해~ ref : velog.io/@yhe228/AWSRDS-DB-%EC%9D%B8%EC%8A%A4%ED%84%B4%EC%8A%A4-%EC%97%B0%EA%B2%B0-%EC%98%A4%EB%A5%98-ERROR-2003-HY000-Cant-connect-to-MySQL-server
감자156
'오류 핸들링' 카테고리의 글 목록