D
D
Dmitry Bashinsky2017-10-17 21:07:09
C++ / C#
Dmitry Bashinsky, 2017-10-17 21:07:09

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;

    }

Do I really need to manually initialize each layer, then save it in json and deserialize it there?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Y
Yuuki Wesp, 2017-11-18
@AnotherAltr

Neural-Network
Just right for you.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question