출처: https://www.youtube.com/watch?v=lg-PZ-zIr98
#include <iostream>
#define MAX2(a,b) (a) > (b) ? (a) : (b)
class Neuron
{
public:
double w_; // weight of one input
double b_; // bias
double getAct(const double& x)
{
// for linear or identity activation functions
return x;
// for ReLU activation functions
//return MAX2(0.0, x);
}
double feedForward(const double& input)
{
// output y = f(\sigma) ,
// \sigma = w_ * input x + b
// for multiple inputs,
// \sigma = w0_ * x0_ + w1_ * x1_ + ... + b
const double sigma = w_ * input + b_;
return getAct(sigma);
}
};
void main()
{
Neuron my_neuron;
my_neuron.w_ = 2.0;
my_neuron.b_ = 1.0;
std::cout << "input = 0.0 " << my_neuron.feedForward(0.0) << std::endl;
std::cout << "input = 1.0 "<< my_neuron.feedForward(1.0) << std::endl;
std::cout << "input = 2.0 " << my_neuron.feedForward(2.0) << std::endl;
std::cout << "input = 3.0 " << my_neuron.feedForward(3.0) << std::endl;
}
'IT기술 관련 > A.I 인공지능' 카테고리의 다른 글
몬테카를로 트리서치, 무작위 시뮬레이션 통해 승률계산 (0) | 2016.06.01 |
---|---|
[딥러닝] C++로 역전파(Back-propagation) 구현하기 (0) | 2016.05.31 |
Deep Learning Tutorial (0) | 2016.05.29 |
모두의 연구소 - 딥러닝 강의 (0) | 2016.05.29 |
홍정모 교수님의 딥러닝 강의 (0) | 2016.05.29 |