Beispiel #1
0
        public virtual void printTrainedNetResult(NeuralNet n)
        {
            switch (n.trainType)
            {
            case TrainingTypesENUM.BACKPROPAGATION:
                Backpropagation b = new Backpropagation();
                b.printTrainedNetResult(n);
                break;

            default:
                throw new System.ArgumentException(n.trainType + " does not exist in TrainingTypesENUM");
            }
        }