File size: 1,353 Bytes
2e09b6f
6cd68e5
435fa53
 
6cd68e5
 
 
 
 
 
435fa53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2e09b6f
6cd68e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
license: mit
source_datasets:
- approximatelabs/tablib-v1-sample
task_categories:
- tabular-to-graph
- graph-learning
- network-analysis
language:
- en
configs:
- config_name: default
  data_files:
  - split: part_1
    path: data/part_1-*
dataset_info:
  features:
  - name: batch_id
    dtype: int64
  - name: table_id
    dtype: int64
  - name: reconstruction_id
    dtype: int64
  - name: graph_data
    dtype: string
  - name: column_names
    dtype: string
  - name: num_nodes
    dtype: int64
  - name: num_edges
    dtype: int64
  - name: serialization
    dtype: string
  - name: original_size
    dtype: int64
  - name: serialized_size
    dtype: int64
  - name: key
    dtype: string
  splits:
  - name: part_1
    num_bytes: 90713
    num_examples: 3
  download_size: 28440
  dataset_size: 90713
---

# GraphTab Sample Dataset

This dataset contains tables from `approximatelabs/tablib-v1-sample` processed into graph representations.


## Usage

```python
from datasets import load_dataset
import graphtab

# Load the dataset
dataset = load_dataset("{full_repo_id}")

# Access a graph
graph_data = dataset['test'][0]

# Deserialize it
graph = graphtab.deserialize_graph(graph_data['graph_data'], graph_data['serialization'])
```

## Citation

If you use this dataset, please cite both the original dataset and GraphTab.