Search found 1 match

by caralse
Fri May 17, 2019 9:52 am
Forum: Libraries and Tools
Topic: Lua Neural Network
Replies: 5
Views: 7840

Re: Lua Neural Network

Hi! I wrote this code using your Network but it doesn't work. What am I missing? local NeuralNetwork = require("lnn") math.randomseed(os.time()) local nn = NeuralNetwork.create(2, 1, 2, 2, 0.3) local training_data = { { inputs = {0, 1}, target = {1} }, { inputs = {1, 1}, target = {0} }, { ...