Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,10 +1,21 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# NEAT Slime Volleyball
|
2 |
+
|
3 |
+
Implementation of NEAT (NeuroEvolution of Augmenting Topologies) to play Neural Slime Volleyball using JAX.
|
4 |
+
|
5 |
+
## Structure
|
6 |
+
- `neat/`: Core NEAT implementation
|
7 |
+
- `genome.py`: Genome representation (nodes and connections)
|
8 |
+
- `network.py`: Neural network implementation
|
9 |
+
- `evolution.py`: Evolution algorithms
|
10 |
+
- `train.py`: Training script
|
11 |
+
- `evaluate.py`: Evaluation script
|
12 |
+
|
13 |
+
## Setup
|
14 |
+
```bash
|
15 |
+
pip install -r requirements.txt
|
16 |
+
```
|
17 |
+
|
18 |
+
## Training
|
19 |
+
```bash
|
20 |
+
python train.py
|
21 |
+
```
|