Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    CastError
Message:      Couldn't cast
amendment: string
resolved_reference: struct<gated_confab_clean_tighten: double, gated_confab_wilson_ci: list<item: double>, gated_known_c (... 28 chars omitted)
  child 0, gated_confab_clean_tighten: double
  child 1, gated_confab_wilson_ci: list<item: double>
      child 0, item: double
  child 2, gated_known_correct_false_refuse: double
dose_target: double
sigma_c: double
seeds: list<item: int64>
  child 0, item: int64
n_confab_held_out: int64
n_known_correct_answered_held_out: int64
n_fired_real: int64
gates: struct<h3_g0: struct<name: string, gated_confab_clean_tighten: struct<n: int64, successes: int64, ra (... 4089 chars omitted)
  child 0, h3_g0: struct<name: string, gated_confab_clean_tighten: struct<n: int64, successes: int64, rate: double, wi (... 253 chars omitted)
      child 0, name: string
      child 1, gated_confab_clean_tighten: struct<n: int64, successes: int64, rate: double, wilson_ci_95: list<item: double>>
          child 0, n: int64
          child 1, successes: int64
          child 2, rate: double
          child 3, wilson_ci_95: list<item: double>
              child 0, item: double
      child 2, gated_known_correct_false_refuse: struct<n: int64, successes: int64, rate: double, wilson_ci_95: list<item: double>>
          child 0, n: int64
          child 1, successes: int64
          child 2, rate: double
          child 3, wilson_ci_95: list<item: double>
              child 0, item: double
      child 3, checks: struct<confab_conversion_reproduces
...
irection_stays_inert_every_seed: struct<20260710: bool, 20260711: bool, 20260712: boo (... 161 chars omitted)
          child 0, random_direction_stays_inert_every_seed: struct<20260710: bool, 20260711: bool, 20260712: bool, 20260713: bool, 20260714: bool>
              child 0, 20260710: bool
              child 1, 20260711: bool
              child 2, 20260712: bool
              child 3, 20260713: bool
              child 4, 20260714: bool
          child 1, permuted_gate_stays_worse_every_seed: struct<20260710: bool, 20260711: bool, 20260712: bool, 20260713: bool, 20260714: bool>
              child 0, 20260710: bool
              child 1, 20260711: bool
              child 2, 20260712: bool
              child 3, 20260713: bool
              child 4, 20260714: bool
      child 4, passed: bool
instrument_config_sha256: struct<cell.yaml: string, gates.yaml: string, gen_lib.py: string, grader.py: string, materialize_row (... 78 chars omitted)
  child 0, cell.yaml: string
  child 1, gates.yaml: string
  child 2, gen_lib.py: string
  child 3, grader.py: string
  child 4, materialize_rows.py: string
  child 5, model_lib.py: string
  child 6, pipeline.py: string
  child 7, smoke_cpu.py: string
license_gate_excluded: struct<>
experiment_slug: string
files: struct<h3_summary.json: string>
  child 0, h3_summary.json: string
shape: string
repo_commit_sha: string
excluded: list<item: null>
  child 0, item: null
sources_present: struct<>
generation_date: string
amendment_path: string
to
{'amendment_path': Value('string'), 'excluded': List(Value('null')), 'experiment_slug': Value('string'), 'files': {'h3_summary.json': Value('string')}, 'generation_date': Value('string'), 'instrument_config_sha256': {'cell.yaml': Value('string'), 'gates.yaml': Value('string'), 'gen_lib.py': Value('string'), 'grader.py': Value('string'), 'materialize_rows.py': Value('string'), 'model_lib.py': Value('string'), 'pipeline.py': Value('string'), 'smoke_cpu.py': Value('string')}, 'license_gate_excluded': {}, 'repo_commit_sha': Value('string'), 'shape': Value('string'), 'sources_present': {}}
because column names don't match
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
                  return get_rows(
                      dataset=dataset,
                  ...<4 lines>...
                      column_names=column_names,
                  )
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
                  rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
                File "/src/services/worker/src/worker/utils.py", line 483, in safe_iter
                  yield from ds.decode(False) if ds.features else ds
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2840, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2373, in __iter__
                  for key, pa_table in self._iter_arrow():
                                       ~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2398, in _iter_arrow
                  for key, pa_table in 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/json/json.py", line 343, in _generate_tables
                  self._cast_table(pa_table, json_field_paths=json_field_paths),
                  ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
                  pa_table = table_cast(pa_table, self.info.features.arrow_schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2378, in table_cast
                  return cast_table_to_schema(table, schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2306, in cast_table_to_schema
                  raise CastError(
                  ...<3 lines>...
                  )
              datasets.table.CastError: Couldn't cast
              amendment: string
              resolved_reference: struct<gated_confab_clean_tighten: double, gated_confab_wilson_ci: list<item: double>, gated_known_c (... 28 chars omitted)
                child 0, gated_confab_clean_tighten: double
                child 1, gated_confab_wilson_ci: list<item: double>
                    child 0, item: double
                child 2, gated_known_correct_false_refuse: double
              dose_target: double
              sigma_c: double
              seeds: list<item: int64>
                child 0, item: int64
              n_confab_held_out: int64
              n_known_correct_answered_held_out: int64
              n_fired_real: int64
              gates: struct<h3_g0: struct<name: string, gated_confab_clean_tighten: struct<n: int64, successes: int64, ra (... 4089 chars omitted)
                child 0, h3_g0: struct<name: string, gated_confab_clean_tighten: struct<n: int64, successes: int64, rate: double, wi (... 253 chars omitted)
                    child 0, name: string
                    child 1, gated_confab_clean_tighten: struct<n: int64, successes: int64, rate: double, wilson_ci_95: list<item: double>>
                        child 0, n: int64
                        child 1, successes: int64
                        child 2, rate: double
                        child 3, wilson_ci_95: list<item: double>
                            child 0, item: double
                    child 2, gated_known_correct_false_refuse: struct<n: int64, successes: int64, rate: double, wilson_ci_95: list<item: double>>
                        child 0, n: int64
                        child 1, successes: int64
                        child 2, rate: double
                        child 3, wilson_ci_95: list<item: double>
                            child 0, item: double
                    child 3, checks: struct<confab_conversion_reproduces
              ...
              irection_stays_inert_every_seed: struct<20260710: bool, 20260711: bool, 20260712: boo (... 161 chars omitted)
                        child 0, random_direction_stays_inert_every_seed: struct<20260710: bool, 20260711: bool, 20260712: bool, 20260713: bool, 20260714: bool>
                            child 0, 20260710: bool
                            child 1, 20260711: bool
                            child 2, 20260712: bool
                            child 3, 20260713: bool
                            child 4, 20260714: bool
                        child 1, permuted_gate_stays_worse_every_seed: struct<20260710: bool, 20260711: bool, 20260712: bool, 20260713: bool, 20260714: bool>
                            child 0, 20260710: bool
                            child 1, 20260711: bool
                            child 2, 20260712: bool
                            child 3, 20260713: bool
                            child 4, 20260714: bool
                    child 4, passed: bool
              instrument_config_sha256: struct<cell.yaml: string, gates.yaml: string, gen_lib.py: string, grader.py: string, materialize_row (... 78 chars omitted)
                child 0, cell.yaml: string
                child 1, gates.yaml: string
                child 2, gen_lib.py: string
                child 3, grader.py: string
                child 4, materialize_rows.py: string
                child 5, model_lib.py: string
                child 6, pipeline.py: string
                child 7, smoke_cpu.py: string
              license_gate_excluded: struct<>
              experiment_slug: string
              files: struct<h3_summary.json: string>
                child 0, h3_summary.json: string
              shape: string
              repo_commit_sha: string
              excluded: list<item: null>
                child 0, item: null
              sources_present: struct<>
              generation_date: string
              amendment_path: string
              to
              {'amendment_path': Value('string'), 'excluded': List(Value('null')), 'experiment_slug': Value('string'), 'files': {'h3_summary.json': Value('string')}, 'generation_date': Value('string'), 'instrument_config_sha256': {'cell.yaml': Value('string'), 'gates.yaml': Value('string'), 'gen_lib.py': Value('string'), 'grader.py': Value('string'), 'materialize_rows.py': Value('string'), 'model_lib.py': Value('string'), 'pipeline.py': Value('string'), 'smoke_cpu.py': Value('string')}, 'license_gate_excluded': {}, 'repo_commit_sha': Value('string'), 'shape': Value('string'), 'sources_present': {}}
              because column names don't match

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.

snap-seed-sampled-decode-replication -- aggregate exhaust

Aggregate-only: every file committed under this experiment's analysis-committed/ tree (dose-response tables, direction fits, gate AUROCs, manifests, and any other analysis artifact), copied byte-for-byte. No source question text, aliases, or per-row generation text -- analysis-committed/ never carries those.

HF repo: professorsynapse/eh-snap-seed-sampled-decode-replication

Provenance

  • Experiment: experiments/snap-seed-sampled-decode-replication
  • Amendment: experiments/snap-seed-sampled-decode-replication/AMENDMENT.md
  • Repo commit SHA: 092e425ffbad51022dda36386ff515b5c26f3dde
  • Generated: 2026-08-31T11:35:30.528345+00:00
  • Pinned instrument config sha256:
    • cell.yaml: 9fee64a65e94e6c147421ee7c8ab7b598f56c791d9142f0254b74c76b612edd9
    • gates.yaml: 1e2d0b384dcf30cce56327b06f44ebb96ecd3af0d510269d347f637339d27a5a
    • gen_lib.py: d9d09eb3cb0e33385dabf5e884b904e1749053310dadd4545f5477a119a0fc50
    • grader.py: b24982a4380dca26056a6b3b217b4ffcea8cf448509af896eba04c256720dd2b
    • materialize_rows.py: 4859c9657ac89634d29fc6fca9f55b034bf82550d54fde43dac745e3a9b238dd
    • model_lib.py: c659dd69b854d7e50a43434f0ec2ec4f7bae37b0ff65dcd78a853370540398b9
    • pipeline.py: d4e233be8a1d19c1d07a2869dc9190716a7bc3b95e50294c4a7a6d3e131c6961
    • smoke_cpu.py: e6ef7ec0f691972f9d5e8a86b9209d189ffd6bb9f5333aa6251bc2e69a69125b

File inventory

1 file(s) total, by top-level path:

  • h3_summary.json: 1 file(s)

License-gate exclusions

(none)

Hard-exclusion skips

Files whose relative path under analysis-committed/ matched a structural hard-exclusion pattern and were skipped (not copied):

(none)

Files

See PROVENANCE.json for the full machine-readable file list (relative path -> sha256) and the hard-exclusion skip list with reasons.

Release Boundary

Built by .skills/data-exhaust/scripts/build_exhaust_dataset.py, gated by .skills/data-exhaust/reference/license-gates.md, and verified by .skills/data-exhaust/scripts/verify_exhaust.py before any upload. Hard exclusions (OpenMOSS/Cheng IDK, bridge_llama2_7b_chat) are enforced structurally in code, not only by this table.

Downloads last month
35