Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed because of a cast error
Error code:   DatasetGenerationCastError
Exception:    DatasetGenerationCastError
Message:      An error occurred while generating the dataset

All the data files must have the same columns, but at some point there are 6 new columns ({'original_node_index', 'node_id', 'disease_name', 'node_index', 'source', 'disease_id'}) and 2 missing columns ({'src_index', 'dst_index'}).

This happened while the csv dataset builder was generating data using

hf://datasets/Marcochris/GraphResidual-data/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/disease.tsv (at revision 14a33d376cc8bbe7906588d32bf8512d0012163e), ['hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/disease__has_mutation__mutation.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/disease__has_protein__protein.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/disease__has_ptm__ptm.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/mutation__on_protein__protein.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/protein__has_ptm__ptm.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/protein__in_pathway__pathway.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/disease.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/mutation.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/pathway.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/protein.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/ptm.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/relation_mappings.tsv']

Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1848, in _prepare_split_single
                  writer.write_table(table)
                  ~~~~~~~~~~~~~~~~~~^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/arrow_writer.py", line 765, in write_table
                  self._write_table(pa_table, writer_batch_size=writer_batch_size)
                  ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/arrow_writer.py", line 773, in _write_table
                  pa_table = table_cast(pa_table, self._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
              node_index: int64
              node_id: string
              disease_id: double
              disease_name: string
              source: string
              original_node_index: int64
              -- schema metadata --
              pandas: '{"index_columns": [{"kind": "range", "name": null, "start": 0, "' + 1004
              to
              {'src_index': Value('int64'), 'dst_index': Value('int64')}
              because column names don't match
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1369, in compute_config_parquet_and_info_response
                  parquet_operations, partial, estimated_dataset_info = stream_convert_to_parquet(
                                                                        ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      builder, max_dataset_size_bytes=max_dataset_size_bytes
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 948, in stream_convert_to_parquet
                  builder._prepare_split(split_generator=splits_generators[split], file_format="parquet")
                  ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1694, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                                               ~~~~~~~~~~~~~~~~~~~~~~~~~~^
                      gen_kwargs=gen_kwargs, job_id=job_id, **_prepare_split_args
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  ):
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1850, in _prepare_split_single
                  raise DatasetGenerationCastError.from_cast_error(
                  ...<4 lines>...
                  )
              datasets.exceptions.DatasetGenerationCastError: An error occurred while generating the dataset
              
              All the data files must have the same columns, but at some point there are 6 new columns ({'original_node_index', 'node_id', 'disease_name', 'node_index', 'source', 'disease_id'}) and 2 missing columns ({'src_index', 'dst_index'}).
              
              This happened while the csv dataset builder was generating data using
              
              hf://datasets/Marcochris/GraphResidual-data/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/disease.tsv (at revision 14a33d376cc8bbe7906588d32bf8512d0012163e), ['hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/disease__has_mutation__mutation.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/disease__has_protein__protein.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/disease__has_ptm__ptm.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/mutation__on_protein__protein.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/protein__has_ptm__ptm.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/edges/protein__in_pathway__pathway.tsv.gz', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/disease.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/mutation.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/pathway.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/protein.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/node_mappings/ptm.tsv', 'hf://datasets/Marcochris/GraphResidual-data@14a33d376cc8bbe7906588d32bf8512d0012163e/initial_data/inductive_graph_residual_extension/datasets/G_train/relation_mappings.tsv']
              
              Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)

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.

src_index
int64
dst_index
int64
0
375,827
2
105,237
3
388,380
6
254,174
6
254,175
7
254,168
7
254,176
7
254,179
7
254,187
7
254,188
7
254,247
7
254,254
7
254,260
7
254,262
7
254,273
7
254,278
8
254,173
8
254,193
8
254,252
8
254,256
8
254,276
9
254,173
9
254,314
9
254,575
9
254,576
9
254,577
9
254,579
9
254,580
9
254,581
9
254,582
9
254,583
9
254,585
9
254,586
9
254,587
9
254,588
9
254,589
9
254,592
9
254,593
9
254,594
9
254,595
9
254,596
9
254,597
9
254,598
9
254,600
9
254,601
9
254,602
9
254,603
9
254,604
9
254,605
9
254,607
9
254,609
9
254,610
9
254,613
9
254,614
9
254,615
9
254,616
9
254,618
9
254,619
9
254,620
9
254,621
9
254,622
9
254,623
9
254,624
9
254,626
9
254,627
9
254,629
9
254,630
9
254,631
9
254,632
9
254,633
9
254,635
9
254,636
9
254,637
9
254,639
9
254,640
9
254,641
9
254,642
9
254,645
9
254,646
9
254,648
9
254,650
9
254,651
9
254,654
9
254,655
9
254,656
9
254,657
9
254,658
9
254,659
9
254,660
9
254,662
9
254,663
9
254,664
9
254,667
9
254,668
9
254,670
9
254,671
9
254,672
9
254,673
9
254,674
9
254,678
End of preview.

GraphResidual data package

Public research dataset package for the GraphResidual repository. It contains source datasets, derived benchmark tables, processed graph tables, and graph artifacts used by the ESM-2 and AMPLIFY-120M experiments.

Layout

  • data_raw/: source data and model assets used by the released experiments.
  • data_benchmark/: benchmark splits, candidate sets, and audit tables.
  • data_processed/: processed node, edge, and label tables.
  • data_processed_clean/: cleaned processed tables.
  • data_processed_core/: core processed tables and candidate tables.
  • work/graph_core/: compact graph mappings, relations, and graph artifacts.
  • work/graph_full/: full graph node and relation tables.
  • initial_data/root/: additional server-side source resources, including ClinVar, Reactome, UniProt, PTM, GTEx, and final ClinVar tables.
  • initial_data/brca_tcga_pan_can_atlas_2018/: BRCA TCGA PanCanAtlas 2018 molecular and clinical source tables.
  • initial_data/clinvar_strict_rebuild_v1/: strict ClinVar graph nodes, edges, mappings, splits, graph inputs, and removal ledgers.
  • initial_data/clinvar_strict_rebuild_audit/: source manifests and audit tables for the strict ClinVar rebuild.
  • initial_data/inductive_graph_residual_extension/: inductive split data, graph mappings, feature inventories, and related data contracts.
  • initial_data/data_raw_download/, data_raw_partial/, and data_raw_scp/: retained raw-download copies and transfer artifacts.

Exclusions

Images, figures, logs, Python bytecode, cache directories, code snapshots, model checkpoints, embeddings, predictions, and experiment-only output tables are not included in this data package.

Reproducibility and provenance

Use the public code and usage guide in GraphResidual for the expected directory layout and model interfaces. The uploaded data are public; check the original source database terms, licenses, and citation requirements before redistribution or publication.

Downloads last month
-