[Git] The requested URL returned error: 400
git push origin master -> 에서 발생한 에러 push시에 해당 주소에 대한 권한이 없기 때문에 발생하는 에러로 레퍼지토리 접근 권한을 받으면 된다. git remote set-url origin [URL] git push origin master 위의 코드로 다시 해당 주소를 설정하고 push하면 된다.
git push origin master -> 에서 발생한 에러 push시에 해당 주소에 대한 권한이 없기 때문에 발생하는 에러로 레퍼지토리 접근 권한을 받으면 된다. git remote set-url origin [URL] git push origin master 위의 코드로 다시 해당 주소를 설정하고 push하면 된다.
from google.colab import drive drive.mount('mount') mount를 통해 directory를 연결해준다. 왼쪽 창을 확인하여 파일 위치를 찾을 수 있다.
모델을 cuda에 넣어주지 않으면 생길 수 있는 에러이다 model.cuda()를 해주자
3차원이나 4차원이 들어와야하는데 2차원이 들어와서 생긴 문제 z = torch.randn((real_img.shape[0], config.latent_size), device=config.device, dtype=torch.float32) 위의 코드를 아래의 코드로 고쳐서 해결 z = torch.randn((real_img.shape[0], config.latent_size,1,1), device=config.device, dtype=torch.float32)
torch.Tensor(X) ValueError: only one element tensors can be converted to Python scalars torch.Tensor(X) 대신 torch.stack(X, dim=0)를 쓴다 X = torch.stack(X, dim=0)
labels = labels.to(config.device).to(torch.float32) .to(torch.float32) 추가하여 해결
train_loader = DataLoader(train_dataset, batch_size=config.batch_size, shuffle=True) DataLoader를 만들지 않고 데이터를 넣어서 int형으로 나오게됨 to는 list와 같은 배열에 쓸 수 있기 때문에 에러 발생 코드를 잘 확인하자.