SauravMaheshkar commited on
Commit
7436c0a
1 Parent(s): 830223f

docs: update dataset card with usage

Browse files
Files changed (1) hide show
  1. README.md +14 -9
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: "processed/transductive/train_df.csv"
12
  - split: valid
13
- path: "processed/transductive/val_df.csv"
14
  - split: test
15
- path: "processed/transductive/test_df.csv"
16
  - config_name: inductive
17
  data_files:
18
  - split: train
19
- path: "processed/inductive/train_df.csv"
20
  - split: valid
21
- path: "processed/inductive/val_df.csv"
22
  - split: test
23
- path: "processed/inductive/test_df.csv"
24
  - config_name: raw
25
- data_files: "raw/*.txt"
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="contact-high-school", split="train")
33
+ ```
34
+
35
  ### Citation
36
 
37
  ```misc