Skip to content

ReneMuala/kendra

Repository files navigation

kendra

Kendra

An artificial intelligence framework by Landia

Getting started

  1. Install Luajit

  2. Add the following lines to main.lua

Network = require "network"
-- Create an kendra 
local kendra = Network {
    Perceptron(3, Functions.Sigmoid),
    Perceptron(3, Functions.Sigmoid),
    Perceptron(2, Functions.Sigmoid),
}
--- Predict 1,2,3 and return the results
kendra.compute({1,2,3})
  1. Run with luajit.exe main.lua (Windows) or luajit main.lua (*nix)

  2. See examples to understand about training strategies to make your kendra model smarter!

Resources

About

An educational AI framework written in Lua

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages