Evolixir is based on the DXNN system written in Erlang.
The project is still in development. To see a working system look at NeuralFish or DXNN
NOT YET AVAILABLE
If available in Hex, the package can be installed as:
- Add
evolixir
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:evolixir, "~> 0.1.0"}]
end
```
- Ensure
evolixir
is started before your application:
```elixir
def application do
[applications: [:evolixir]]
end
```