clefourrier HF staff commited on
Commit
a2c431d
1 Parent(s): 902dd0e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +115 -0
README.md ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ licence: unknown
3
+ ---
4
+
5
+ # Dataset Card for AIDS
6
+
7
+ ## Table of Contents
8
+ - [Table of Contents](#table-of-contents)
9
+ - [Dataset Description](#dataset-description)
10
+ - [Dataset Summary](#dataset-summary)
11
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
12
+ - [External Use](#external-use)
13
+ - [PyGeometric](#pygeometric)
14
+ - [Dataset Structure](#dataset-structure)
15
+ - [Data Properties](#data-properties)
16
+ - [Data Fields](#data-fields)
17
+ - [Data Splits](#data-splits)
18
+ - [Additional Information](#additional-information)
19
+ - [Licensing Information](#licensing-information)
20
+ - [Citation Information](#citation-information)
21
+ - [Contributions](#contributions)
22
+
23
+ ## Dataset Description
24
+ - **[Homepage](https://wiki.nci.nih.gov/display/NCIDTPdata/AIDS+Antiviral+Screen+Data)**
25
+ - **Paper:**: (see citation)
26
+ - **Leaderboard:**: [Papers with code leaderboard](https://paperswithcode.com/sota/graph-classification-on-aids)
27
+
28
+ ### Dataset Summary
29
+ The `AIDS` dataset is a dataset containing compounds checked for evidence of anti-HIV activity..
30
+
31
+ ### Supported Tasks and Leaderboards
32
+ `AIDS` should be used for molecular classification, a binary classification task. The score used is accuracy with cross validation.
33
+
34
+
35
+ ## External Use
36
+ ### PyGeometric
37
+ To load in PyGeometric, do the following:
38
+
39
+ ```python
40
+ from datasets import load_dataset
41
+
42
+ from torch_geometric.data import Data
43
+ from torch_geometric.loader import DataLoader
44
+
45
+ dataset_hf = load_dataset("graphs-datasets/<mydataset>")
46
+ # For the train set (replace by valid or test as needed)
47
+ dataset_pg_list = [Data(graph) for graph in dataset_hf["train"]]
48
+ dataset_pg = DataLoader(dataset_pg_list)
49
+ ```
50
+
51
+ ## Dataset Structure
52
+
53
+ ### Data Properties
54
+ | property | value |
55
+ |---|---|
56
+ | scale | medium |
57
+ | #graphs | 1999 |
58
+ | average #nodes | 15.5875 |
59
+ | average #edges | 32.39 |
60
+
61
+ ### Data Fields
62
+
63
+ Each row of a given file is a graph, with:
64
+ - `node_feat` (list: #nodes x #node-features): nodes
65
+ - `edge_index` (list: 2 x #edges): pairs of nodes constituting edges
66
+ - `edge_attr` (list: #edges x #edge-features): for the aforementioned edges, contains their features
67
+ - `y` (list: 1 x #labels): contains the number of labels available to predict (here 1, equal to zero or one)
68
+ - `num_nodes` (int): number of nodes of the graph
69
+
70
+ ### Data Splits
71
+
72
+ This data is not split, and should be used with cross validation. It comes from the PyGeometric version of the dataset.
73
+
74
+ ## Additional Information
75
+
76
+ ### Licensing Information
77
+ The dataset has been released under license unknown.
78
+
79
+ ### Citation Information
80
+ ```
81
+ @inproceedings{Morris+2020,
82
+ title={TUDataset: A collection of benchmark datasets for learning with graphs},
83
+ author={Christopher Morris and Nils M. Kriege and Franka Bause and Kristian Kersting and Petra Mutzel and Marion Neumann},
84
+ booktitle={ICML 2020 Workshop on Graph Representation Learning and Beyond (GRL+ 2020)},
85
+ archivePrefix={arXiv},
86
+ eprint={2007.08663},
87
+ url={www.graphlearning.io},
88
+ year={2020}
89
+ }
90
+ ```
91
+
92
+ ```
93
+
94
+ @InProceedings{10.1007/978-3-540-89689-0_33,
95
+ author="Riesen, Kaspar
96
+ and Bunke, Horst",
97
+ editor="da Vitoria Lobo, Niels
98
+ and Kasparis, Takis
99
+ and Roli, Fabio
100
+ and Kwok, James T.
101
+ and Georgiopoulos, Michael
102
+ and Anagnostopoulos, Georgios C.
103
+ and Loog, Marco",
104
+ title="IAM Graph Database Repository for Graph Based Pattern Recognition and Machine Learning",
105
+ booktitle="Structural, Syntactic, and Statistical Pattern Recognition",
106
+ year="2008",
107
+ publisher="Springer Berlin Heidelberg",
108
+ address="Berlin, Heidelberg",
109
+ pages="287--297",
110
+ abstract="In recent years the use of graph based representation has gained popularity in pattern recognition and machine learning. As a matter of fact, object representation by means of graphs has a number of advantages over feature vectors. Therefore, various algorithms for graph based machine learning have been proposed in the literature. However, in contrast with the emerging interest in graph based representation, a lack of standardized graph data sets for benchmarking can be observed. Common practice is that researchers use their own data sets, and this behavior cumbers the objective evaluation of the proposed methods. In order to make the different approaches in graph based machine learning better comparable, the present paper aims at introducing a repository of graph data sets and corresponding benchmarks, covering a wide spectrum of different applications.",
111
+ isbn="978-3-540-89689-0"
112
+ }
113
+
114
+
115
+ ```