[DL Wizard] Matrices/Linear Regression/Logistic Regression with PyTorch 번역 및 정리
1. Matrices https://www.deeplearningwizard.com/deep_learning/practical_pytorch/pytorch_matrices/ Matrices - Deep Learning Wizard Matrices with PyTorch Matrices Matrices Brief Introduction 2 x 2 Matrix (R x C) 2 x 3 Matrix Creating Matrices Create list # Creating a 2x2 array arr = [[1, 2], [3, 4]] print(arr) Create numpy array via list # Convert to NumPy np.array(arr) array([[1, 2], www.deeplearn..
2020.02.04