An open API service indexing awesome lists of open source software.

https://github.com/tearth/neural-snake

Simple experiment on neural networks playing Snake game based on evolutionary algorithms.
https://github.com/tearth/neural-snake

aforge aforge-net csharp dotnet neural-network neural-networks

Last synced: 29 days ago
JSON representation

Simple experiment on neural networks playing Snake game based on evolutionary algorithms.

Awesome Lists containing this project

README

          

# Neural Snake
Simple experiment on neural networks playing Snake game based on evolutionary algorithms.

![example screenshot](https://i.imgur.com/2HSsIGS.png)

# Neural network parameters
**Input** (1 = yes, -1 = no):
* is top available to move
* is right available to move
* is bottom available to move
* is left available to move
* is food above snake
* is food to the right of snake
* is food under snake
* is food to the left of snake

**Output** ([-1, 1]):
* move top
* move right
* move down
* move left

# Used libraries:
* **AForge**: neural networks stuff