Пример #1
0
        public KLearning(int inputCount, int width, int height)
        {
            _Width  = width;
            _Height = height;

            _Network = new KNetwork(inputCount, new int[] { _Width *_Height });

            _Network.Randomize();
        }
Пример #2
0
        public KLearning(int inputCount, int width,int height)
        {
            _Width = width;
            _Height = height;

            _Network = new KNetwork(inputCount, new int[] { _Width * _Height });

            _Network.Randomize();
        }