relu(3)
-
[DL Wizard] Weight Initializations & Activation Functions 번역 및 정리
https://www.deeplearningwizard.com/deep_learning/boosting_models_pytorch/weight_initialization_activation_functions/ Weight Initialization and Activation Functions - Deep Learning Wizard Weight Initializations & Activation Functions Recap of Logistic Regression Recap of Feedforward Neural Network Activation Function Sigmoid (Logistic) \sigma(x) = \frac{1}{1 + e^{-x}} Input number \rightarrow [0,..
2020.02.05 -
[DL Wizard] Feedforward Neural Network with PyTorch 번역 및 정리
https://www.deeplearningwizard.com/deep_learning/practical_pytorch/pytorch_feedforward_neuralnetwork/ Feedforward Neural Networks (FNN) - Deep Learning Wizard Feedforward Neural Network with PyTorch About Feedforward Neural Network Logistic Regression Transition to Neural Networks Logistic Regression Review Define logistic regression model Import our relevant torch modules. import torch import t..
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