2015-03-23 20:58:30 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Neuron.h"
|
|
|
|
|
2015-03-24 12:45:38 +00:00
|
|
|
Neuron::Neuron(double value)
|
|
|
|
: outputValue(value)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-03-23 20:58:30 +00:00
|
|
|
void Neuron::setOutputValue(double value)
|
|
|
|
{
|
|
|
|
outputValue = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
double Neuron::transferFunction(double inputValue)
|
|
|
|
{
|
|
|
|
return std::tanh(inputValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
double Neuron::transferFunctionDerivative(double inputValue)
|
|
|
|
{
|
|
|
|
return 1.0 - (inputValue * inputValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Neuron::feedForward(double inputValue)
|
|
|
|
{
|
2015-10-15 17:18:26 +00:00
|
|
|
outputValue = transferFunction(inputValue);
|
2015-03-23 20:58:30 +00:00
|
|
|
}
|
|
|
|
|
2015-03-24 12:45:38 +00:00
|
|
|
double Neuron::getWeightedOutputValue(unsigned int outputNeuron) const
|
2015-03-23 20:58:30 +00:00
|
|
|
{
|
2015-03-24 12:45:38 +00:00
|
|
|
if (outputNeuron < outputWeights.size())
|
|
|
|
{
|
|
|
|
return outputValue * outputWeights[outputNeuron];
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0.0;
|
2015-03-23 20:58:30 +00:00
|
|
|
}
|
|
|
|
|
2015-10-15 17:18:26 +00:00
|
|
|
void Neuron::createRandomOutputWeights(unsigned int numberOfWeights)
|
2015-03-23 20:58:30 +00:00
|
|
|
{
|
|
|
|
outputWeights.clear();
|
|
|
|
|
2015-10-15 17:18:26 +00:00
|
|
|
for (unsigned int i = 0; i < numberOfWeights; ++i)
|
2015-03-23 20:58:30 +00:00
|
|
|
{
|
|
|
|
outputWeights.push_back(std::rand() / (double)RAND_MAX);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double Neuron::getOutputValue() const
|
|
|
|
{
|
|
|
|
return outputValue;
|
|
|
|
}
|