파이토치(9)
-
[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 -
[Learning PyTorch with Examples] 예시로 배우는 파이토치 정리
https://pytorch.org/tutorials/beginner/pytorch_with_examples.html#tensors Learning PyTorch with Examples — PyTorch Tutorials 1.4.0 documentation Learning PyTorch with Examples Author: Justin Johnson This tutorial introduces the fundamental concepts of PyTorch through self-contained examples. At its core, PyTorch provides two main features: An n-dimensional Tensor, similar to numpy but can run on..
2020.02.03 -
[PyTorch Tutorials] 파이토치 튜터리얼 정리/번역
https://pytorch.org/tutorials/beginner/blitz/tensor_tutorial.html#sphx-glr-beginner-blitz-tensor-tutorial-py What is PyTorch? — PyTorch Tutorials 1.4.0 documentation Note Click here to download the full example code What is PyTorch? It’s a Python-based scientific computing package targeted at two sets of audiences: A replacement for NumPy to use the power of GPUs a deep learning research platfor..
2020.02.03