File size: 636 Bytes
a3c4d97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# 1D Cellular Automata Dataset
## Structure
- `rule`: The rule number in binary format
- `t=0`, `t=1`, ..., `t=T`: The states of the CA at each timestep
## Splits
- Training: 80%
- Validation: 10%
- Test: 10%
## Parameters:
| Parameter | Description |
|-------------------|--------------------------------------------|
| r (int): `3` | The radius of the CA rule. |
| size (int): `24` | The number of cells in the CA. |
| T (int): `20` | The number of steps for the CA to evolve. |
| num_samples (int): `1000000` | The number of samples in the dataset. |
|