Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot extract the features (columns) for the split 'train' of the config 'default' of the dataset.
Error code:   FeaturesError
Exception:    EmptyDataError
Message:      No columns to parse from file
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 243, in compute_first_rows_from_streaming_response
                  iterable_dataset = iterable_dataset._resolve_features()
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 4379, in _resolve_features
                  features = _infer_features_from_batch(self.with_format(None)._head())
                                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2661, in _head
                  return next(iter(self.iter(batch_size=n)))
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2839, in iter
                  for key, pa_table in ex_iterable.iter_arrow():
                                       ~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2377, in _iter_arrow
                  yield from self.ex_iterable._iter_arrow()
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
                  for key, pa_table in iterator:
                                       ^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
                  for key, pa_table in self.generate_tables_fn(**gen_kwags):
                                       ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/csv/csv.py", line 196, in _generate_tables
                  csv_file_reader = pd.read_csv(file, iterator=True, dtype=dtype, **self.config.pd_read_csv_kwargs)
                File "/usr/local/lib/python3.14/site-packages/datasets/streaming.py", line 73, in wrapper
                  return function(*args, download_config=download_config, **kwargs)
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/file_utils.py", line 1279, in xpandas_read_csv
                  return pd.read_csv(xopen(filepath_or_buffer, "rb", download_config=download_config), **kwargs)
                         ~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1026, in read_csv
                  return _read(filepath_or_buffer, kwds)
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 620, in _read
                  parser = TextFileReader(filepath_or_buffer, **kwds)
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1620, in __init__
                  self._engine = self._make_engine(f, self.engine)
                                 ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1898, in _make_engine
                  return mapping[engine](f, **self.options)
                         ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/c_parser_wrapper.py", line 93, in __init__
                  self._reader = parsers.TextReader(src, **kwds)
                                 ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "pandas/_libs/parsers.pyx", line 581, in pandas._libs.parsers.TextReader.__cinit__
              pandas.errors.EmptyDataError: No columns to parse from file

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

DL2L Experiments Dataset

Simulation trajectory data from the DL2L distributed artificial life simulator, used to train JEPA world models. See felipedreis/dl2l-jepa for the trained models.

Dataset structure

Data is organized by experiment prefix. Each prefix contains parquet files for model training and a stats.json with dataset metadata.

p9/
  train.parquet       # single-encoder training set (trials 1–8)
  val.parquet         # single-encoder validation set (trials 9–10)
  train_dual.parquet  # dual-encoder training set (adds h_t homeostatic columns)
  val_dual.parquet    # dual-encoder validation set
  stats.json          # dims, feature order, normalisation stats, split sizes

p9 experiment

Simulation: 10 creatures × 10 trials, DL2L basic.conf world.
Split: trials 1–8 → train, trials 9–10 → val (trial-based to prevent cross-trial contamination).
Sizes: 359,782 train / 89,731 val samples.

Sample format

Each row is a (s_t, a_t, emotion_target) tuple:

Column group Columns Description
Perception s_t distance, angle, direction Target object spatial features
Object type type_GRAY_APPLE, type_GREEN_APPLE, type_RED_APPLE, type_ROTTEN_APPLE, type_CACTUS, type_ALOE One-hot object type
Action a_t a_APPROACH, a_AVOID, a_EAT, a_ESCAPE, a_PLAY, a_SLEEP, a_TOUCH, a_TURN, a_WANDER One-hot chosen action
Target emotion final_hunger, final_sleep, final_apathy, final_stress, final_pain, final_tedium, final_fear, final_curiosity, final_fertility Absolute arousal after next regulation

Dual-encoder parquet files additionally include:

Column Description
ht_hunger, ht_sleep, ht_pain, ht_tedium Homeostatic state at action time (h_t)

stats.json

{
  "input_dim": 9,
  "action_dim": 9,
  "emotion_dim": 9,
  "latent_dim": 64,
  "internal_state_dim": 4,
  "internal_latent_dim": 16,
  "live_emotion_dims": [0, 1, 4, 5],
  "perception_feature_order": ["distance", "angle", "direction", ...],
  "action_index_order": ["APPROACH", "AVOID", "EAT", "ESCAPE", "PLAY", "SLEEP", "TOUCH", "TURN", "WANDER"],
  "emotion_index_order": ["hunger", "sleep", "apathy", "stress", "pain", "tedium", "fear", "curiosity", "fertility"],
  "feature_means": [...],
  "feature_stds": [...],
  "n_train": 359782,
  "n_val": 89731
}

Data extraction

Raw data is extracted from the PostgreSQL database with:

python3 scripts/pg_extract.py --out /path/to/output --container <db-container>

This covers trajectories, sleep episodes, engrams, arousal history, behavioural efficiency, perception coverage, traveled distances, consolidation batch stats, and more. See scripts/pg_extract.py for the full list.

The ML training dataset is assembled from the CSV output with:

cd ml
python3 -m scripts.prepare_dataset --wd /path/to/output --out data_p9 --dual

Citation

DL2L — Distributed Live to Learn, Learn to Live
Felipe Duarte dos Reis, CEFET-MG, 2017–2026
https://github.com/felipedreis/dl2l
Downloads last month
1,059