์ ๋์์์์ PyTorch Autograd๋ฅผ ์ดํดํ๊ธฐ ์ฝ๊ฒ ์ค๋ช ํด์ฃผ๊ณ ์๋ค. ๋ค์์ ์ ๋์์์ ๊ฐ๋จํ ์ ๋ฆฌํ ๊ธ์ด๋ค. 1. torch.Tensor ๊ฐ tensor์ ๋ค์์ attr์ ๊ฐ๋๋ค data: tensor์ ๊ฐ grad: tensor์ gradient ๊ฐ. is_leaf์ธ ๊ฒฝ์ฐ์๋ง gradient๊ฐ ์๋์ผ๋ก ์ ์ฅ๋๋ค. grad_fn: gradient function. ํด๋น tensor๊ฐ ์ด๋ค ์ฐ์ฐ์ ํตํด forward๋์๋์ง์ ๋ฐ๋ผ ๊ฒฐ์ ๋๋ค. ex) a * b = c ์ธ ๊ฒฝ์ฐ c์ grad_fn์ MulBackward์ด๋ค. is_leaf์ธ ๊ฒฝ์ฐ None is_leaf: (backward ๊ธฐ์ค) ๊ฐ์ฅ ๋ง์ง๋ง tensor์ธ์ง requires_grad: ๊ณ์ฐ ๊ทธ๋ํ์ ์ผ๋ถ๋ก ๋ค์ด๊ฐ ๊ฒ์ธ์ง 2. gr..