public ConvolutionalNeuralNetwork(int inputSize, string colorScheme) { Input = new InputLayer(inputSize, colorScheme); NetworkLayers = new List <NetworkLayer>(); ColorScheme = colorScheme; }
public ConvolutionalNeuralNetwork(InputLayer input, List <NetworkLayer> networkLayers, string colorScheme) { Input = input; NetworkLayers = networkLayers; ColorScheme = colorScheme; }