Skip to content

swimauger/slp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Single Layer Perceptron (SLP)

Simplest Possible Neural Network from Scratch

A Single Layer Perceptron (SLP) is a feed-forward neural network made up of only two layers the input and output layer. "Single Layer" may seem deceiving, but it is considered single as there is only one vector of weight(s).

Setup Workspace

  1. Install Lua from https://www.lua.org/download.html
  2. Execute the below command in this workspace to run the example
  lua main.lua

Explanation

TODO...

flowchart LR
  output((output))
  input((input)) --> output
Loading

Figure 1. Diagram of the Simplest Possible Neural Network

Why Lua?

Lua is an extremely basic language, making it very easy to understand, even with a topic like machine learning.

About

A Single Layer Perceptron from Scratch

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages