Example #1
0
        public ConvolutionalNeuralNetwork(int inputSize, string colorScheme)
        {
            Input         = new InputLayer(inputSize, colorScheme);
            NetworkLayers = new List <NetworkLayer>();

            ColorScheme = colorScheme;
        }
Example #2
0
        public ConvolutionalNeuralNetwork(InputLayer input, List <NetworkLayer> networkLayers, string colorScheme)
        {
            Input         = input;
            NetworkLayers = networkLayers;

            ColorScheme = colorScheme;
        }