示例#1
0
文件: Rna.cs 项目: pramos/llovera
        //Entrenando a la red
        public void Train()
        {
            Parser parser = new Parser();
            List<string> lectura = parser.obtenerLecturaDeArchivo("C:\\Users\\Gonzalo Ricco\\Documents\\GitHub\\llovera\\datoPrueba.txt");

            //Create a training data object
            TrainingData td = new TrainingData();

            //Carga de datos de entrenamiento
            recorrerLectura(lectura,ref td);

            //Train the network one time
            network.TrainNetwork(td);
        }