Answer the question
In order to leave comments, you need to log in
Made a neural network model, how to initialize?
public class Input
{
public Link[] Links;
}
public class Link
{
public double Weight { get; set; }
public Neuron Neuron { get; set; }
}
public class Neuron
{
public double Power { get; set; }
public Link[] Link { get; set; }
}
public class KohonenNetwork
{
private readonly Input[] _inputs;
private readonly Neuron[] _neurons;
public int InputCount;
public int NeuronsCount;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question