alexodavies commited on
Commit
35c86d5
·
verified ·
1 Parent(s): 0419815

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -33
README.md CHANGED
@@ -1,35 +1,36 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: batch_id
5
- dtype: int64
6
- - name: table_id
7
- dtype: int64
8
- - name: reconstruction_id
9
- dtype: int64
10
- - name: graph_data
11
- dtype: string
12
- - name: column_names
13
- dtype: string
14
- - name: num_nodes
15
- dtype: int64
16
- - name: num_edges
17
- dtype: int64
18
- - name: serialization
19
- dtype: string
20
- - name: original_size
21
- dtype: int64
22
- - name: serialized_size
23
- dtype: int64
24
- splits:
25
- - name: part_0
26
- num_bytes: 466060
27
- num_examples: 56
28
- download_size: 110841
29
- dataset_size: 466060
30
- configs:
31
- - config_name: default
32
- data_files:
33
- - split: part_0
34
- path: data/part_0-*
35
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ source_datasets: [approximatelabs/tablib-v1-sample]
4
+ task_categories:
5
+ - tabular-to-graph
6
+ - graph-learning
7
+ - network-analysis
8
+ language:
9
+ - en
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
+
12
+ # GraphTab Sample Dataset
13
+
14
+ This dataset contains tables from `approximatelabs/tablib-v1-sample` processed into graph representations.
15
+
16
+
17
+ ## Usage
18
+
19
+ ```python
20
+ from datasets import load_dataset
21
+ import graphtab
22
+
23
+ # Load the dataset
24
+ dataset = load_dataset("{full_repo_id}")
25
+
26
+ # Access a graph
27
+ graph_data = dataset['test'][0]
28
+
29
+ # Deserialize it
30
+ graph = graphtab.deserialize_graph(graph_data['graph_data'], graph_data['serialization'])
31
+ ```
32
+
33
+ ## Citation
34
+
35
+ If you use this dataset, please cite both the original dataset and GraphTab.
36
+