File size: 495 Bytes
4d76cfb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# NEAT Slime Volleyball

Implementation of NEAT (NeuroEvolution of Augmenting Topologies) to play Neural Slime Volleyball using JAX.

## Structure
- `neat/`: Core NEAT implementation
  - `genome.py`: Genome representation (nodes and connections)
  - `network.py`: Neural network implementation
  - `evolution.py`: Evolution algorithms
- `train.py`: Training script
- `evaluate.py`: Evaluation script

## Setup
```bash
pip install -r requirements.txt
```

## Training
```bash
python train.py
```