SauravMaheshkar
commited on
Commit
•
f0a7bb1
1
Parent(s):
1d9ea31
docs: update dataset with usage
Browse files
README.md
CHANGED
@@ -2,31 +2,36 @@
|
|
2 |
license: unknown
|
3 |
task_categories:
|
4 |
- graph-ml
|
5 |
-
tags:
|
6 |
-
- chemistry
|
7 |
configs:
|
8 |
- config_name: transductive
|
9 |
data_files:
|
10 |
- split: train
|
11 |
-
path:
|
12 |
- split: valid
|
13 |
-
path:
|
14 |
- split: test
|
15 |
-
path:
|
16 |
- config_name: inductive
|
17 |
data_files:
|
18 |
- split: train
|
19 |
-
path:
|
20 |
- split: valid
|
21 |
-
path:
|
22 |
- split: test
|
23 |
-
path:
|
24 |
- config_name: raw
|
25 |
-
data_files:
|
26 |
---
|
27 |
|
28 |
Source Paper: https://arxiv.org/abs/1802.06916
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
### Citation
|
31 |
|
32 |
```misc
|
|
|
2 |
license: unknown
|
3 |
task_categories:
|
4 |
- graph-ml
|
|
|
|
|
5 |
configs:
|
6 |
- config_name: transductive
|
7 |
data_files:
|
8 |
- split: train
|
9 |
+
path: processed/transductive/train_df.csv
|
10 |
- split: valid
|
11 |
+
path: processed/transductive/val_df.csv
|
12 |
- split: test
|
13 |
+
path: processed/transductive/test_df.csv
|
14 |
- config_name: inductive
|
15 |
data_files:
|
16 |
- split: train
|
17 |
+
path: processed/inductive/train_df.csv
|
18 |
- split: valid
|
19 |
+
path: processed/inductive/val_df.csv
|
20 |
- split: test
|
21 |
+
path: processed/inductive/test_df.csv
|
22 |
- config_name: raw
|
23 |
+
data_files: raw/*.txt
|
24 |
---
|
25 |
|
26 |
Source Paper: https://arxiv.org/abs/1802.06916
|
27 |
|
28 |
+
### Usage
|
29 |
+
```
|
30 |
+
from torch_geometric.datasets.cornell import CornellTemporalHyperGraphDataset
|
31 |
+
|
32 |
+
dataset = CornellTemporalHyperGraphDataset(root = "./", name="email-Enron-25", split="train")
|
33 |
+
```
|
34 |
+
|
35 |
### Citation
|
36 |
|
37 |
```misc
|