Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emischorr/enet
elixir neural network
https://github.com/emischorr/enet
Last synced: 7 days ago
JSON representation
elixir neural network
- Host: GitHub
- URL: https://github.com/emischorr/enet
- Owner: emischorr
- Created: 2017-01-07T14:07:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-07T14:08:04.000Z (almost 8 years ago)
- Last Synced: 2024-11-08T03:39:25.318Z (about 2 months ago)
- Language: Elixir
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Enet
A simple neural network written in elixir for fun and to get a deeper understanding of machine learning
try with iex -S mix:
```elixir
Enet.SimpleTwoLayer.start_train([[0,0,1], [0,1,1], [1,0,1], [1,1,1]], [[0],[0],[1],[1]])
```## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add `enet` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:enet, "~> 0.1.0"}]
end
```2. Ensure `enet` is started before your application:
```elixir
def application do
[applications: [:enet]]
end
```