eyad-silx commited on
Commit
4d76cfb
·
verified ·
1 Parent(s): 0e0538d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +21 -10
README.md CHANGED
@@ -1,10 +1,21 @@
1
- ---
2
- title: Neat
3
- emoji: 📈
4
- colorFrom: pink
5
- colorTo: yellow
6
- sdk: static
7
- pinned: false
8
- ---
9
-
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```