Tensor
[파이토치] The given NumPy array is not writeable, and PyTorch does not support non-writeable tensors. This means you can write to the underlying (supposedly non-writeable) NumPy array using the tensor.
안녕하세요. 비버입니다! 오늘은 Pytorch(파이토치) 독학을 위해 MNIST 데이터를 실습해볼 예정이었어요. MNIST란 손글씨 이미지 분류를 실습해볼 수 있도록 제공되고 있는 공개 데이터셋을 말해요. Iris(아이리스), Titanic(타이타닉) 처럼 연습용으로 널리 쓰이는 유명한 데이터셋이랍니다. 어김없이 시작과 함께 오류를 만났는데, 한 번 자세히 뜯어보고 싶단 생각에 글로 정리하게 되었습니다! ㅎㅎ UserWarning: The given NumPy array is not writeable, and PyTorch does not support non-writeable tensors. This means you can write to the underlying (supposedly non-wri..