gsjunior86 / lua_neural-network

A Neural Network developed in Lua from the Scratch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Neural Network in LUA

A simple neural network built in lua from Scratch

To run, execute the file main.lua

Define the training inputs and the training outputs and the number of iterations for refining the training.

instantiate the NeuralNetwork class, passing the seed with:

local nn = NeuralNetwork:new(1)

and train the network with:

nn.train(training_inputs,training_outputs,20000)

About

A Neural Network developed in Lua from the Scratch

License:GNU General Public License v3.0


Languages

Language:Lua 100.0%