public interface ISynapse | |
{ | |
double Weight { get; set; } | |
double PreviousWeight { get; set; } | |
double GetOutput(); | |
bool IsFromNeuron(Guid fromNeuronId); | |
void UpdateWeight(double learningRate, double delta); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment