File size: 1,328 Bytes
235e709
62945cb
235e709
 
 
 
d8a78e3
 
235e709
 
24a4b4d
 
 
 
235e709
 
 
 
 
afe68dd
d8a78e3
a3ea21a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
license: mit
dataset_info:
  features:
  - name: image
    dtype: image
  - name: text
    dtype: string
  splits:
  - name: train
    num_bytes: 2343966.0
    num_examples: 1000
  download_size: 2314338
  dataset_size: 2343966.0
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
- config_name: metadata
  data_files: metadata.jsonl
---
# Dataset Card for Cellular Automata

## Dataset Details

This dataset contains 1000 labeled images of cellular automata.

### Dataset Description

[Cellular Automaton](https://mathworld.wolfram.com/ElementaryCellularAutomaton.html) were described by
Stephen Wolphram in [A New King of Science](https://www.wolframscience.com/nks/).
Imagine you have a grid, like a checkerboard. Each square in the grid has a state - on or off, with the state of the square determining its color. There are rulesets (256 of them) that describe how the squares change their state depending on what's happening around them.

The python library [CellPyLib](https://github.com/lantunes/cellpylib) was used to generate the labeled images.

- **Curated by:** Kathy McGuiness

## Uses

One toy use-case is fine-tuning the [aMUSEd](https://huggingface.co/blog/amused) model.

## Dataset Creation

The dataset was created as a demo on how on to create a labeled image dataset.