clefourrier HF staff commited on
Commit
6f0a135
1 Parent(s): 8e4c412

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +113 -0
README.md CHANGED
@@ -1,3 +1,116 @@
1
  ---
2
  license: unknown
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: unknown
3
  ---
4
+
5
+ # Dataset Card for PROTEINS
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
+
25
+ - **[Homepage](https://academic.oup.com/bioinformatics/article/21/suppl_1/i47/202991)**
26
+ - **[Repository](https://www.chrsmrrs.com/graphkerneldatasets/PROTEINS.zip):**:
27
+ - **Paper:**: Protein function prediction via graph kernels (see citation)
28
+ - **Leaderboard:**: [Papers with code leaderboard](https://paperswithcode.com/sota/)
29
+
30
+ ### Dataset Summary
31
+
32
+ The `PROTEINS` dataset is a medium molecular property prediction dataset.
33
+
34
+ ### Supported Tasks and Leaderboards
35
+
36
+ `PROTEINS` should be used for molecular property prediction (aiming to predict whether molecules are enzymes or not), a binary classification task. The score used is accuracy.
37
+
38
+ The associated leaderboard is here: [Papers with code leaderboard](https://paperswithcode.com/sota/graph-classification-on-proteins).
39
+
40
+ ## External Use
41
+ ### PyGeometric
42
+ To load in PyGeometric, do the following:
43
+
44
+ ```python
45
+ from datasets import load_dataset
46
+
47
+ from torch_geometric.data import Data
48
+ from torch_geometric.loader import DataLoader
49
+
50
+ dataset_hf = load_dataset("graphs-datasets/<mydataset>")
51
+ dataset_pg_list = [Data(graph) for graph in dataset_hf["train"]]
52
+ dataset_pg = DataLoader(dataset_pg_list)
53
+
54
+ ```
55
+
56
+
57
+ ## Dataset Structure
58
+
59
+ ### Data Properties
60
+
61
+ | property | value |
62
+ |---|---|
63
+ | scale | medium |
64
+ | #graphs | 1113 |
65
+ | average #nodes | 39.06 |
66
+ | average #edges | 72.82 |
67
+
68
+ ### Data Fields
69
+
70
+ Each row of a given file is a graph, with:
71
+ - `node_feat` (list: #nodes x #node-features): nodes
72
+ - `edge_index` (list: 2 x #edges): pairs of nodes constituting edges
73
+ - `edge_attr` (list: #edges x #edge-features): for the aforementioned edges, contains their features
74
+ - `y` (list: 1 x #labels): contains the number of labels available to predict (here 1, equal to zero or one)
75
+ - `num_nodes` (int): number of nodes of the graph
76
+
77
+ ### Data Splits
78
+
79
+ This data comes from the PyGeometric version of the dataset provided by TUDataset.
80
+ This information can be found back using
81
+ ```python
82
+ from torch_geometric.datasets import TUDataset
83
+
84
+ dataset = TUDataset(root='', name = 'PROTEINS')
85
+ ```
86
+
87
+ ## Additional Information
88
+
89
+ ### Licensing Information
90
+ The dataset has been released under unknown license, please open an issue if you have info about it.
91
+
92
+ ### Citation Information
93
+ ```
94
+ @article{10.1093/bioinformatics/bti1007,
95
+ author = {Borgwardt, Karsten M. and Ong, Cheng Soon and Schönauer, Stefan and Vishwanathan, S. V. N. and Smola, Alex J. and Kriegel, Hans-Peter},
96
+ title = "{Protein function prediction via graph kernels}",
97
+ journal = {Bioinformatics},
98
+ volume = {21},
99
+ number = {suppl_1},
100
+ pages = {i47-i56},
101
+ year = {2005},
102
+ month = {06},
103
+ abstract = "{Motivation: Computational approaches to protein function prediction infer protein function by finding proteins with similar sequence, structure, surface clefts, chemical properties, amino acid motifs, interaction partners or phylogenetic profiles. We present a new approach that combines sequential, structural and chemical information into one graph model of proteins. We predict functional class membership of enzymes and non-enzymes using graph kernels and support vector machine classification on these protein graphs.Results: Our graph model, derivable from protein sequence and structure only, is competitive with vector models that require additional protein information, such as the size of surface pockets. If we include this extra information into our graph model, our classifier yields significantly higher accuracy levels than the vector models. Hyperkernels allow us to select and to optimally combine the most relevant node attributes in our protein graphs. We have laid the foundation for a protein function prediction system that integrates protein information from various sources efficiently and effectively.Availability: More information available via www.dbs.ifi.lmu.de/Mitarbeiter/borgwardt.html.Contact:borgwardt@dbs.ifi.lmu.de}",
104
+ issn = {1367-4803},
105
+ doi = {10.1093/bioinformatics/bti1007},
106
+ url = {https://doi.org/10.1093/bioinformatics/bti1007},
107
+ eprint = {https://academic.oup.com/bioinformatics/article-pdf/21/suppl\_1/i47/524364/bti1007.pdf},
108
+ }
109
+
110
+
111
+
112
+ ```
113
+
114
+ ### Contributions
115
+
116
+ Thanks to [@clefourrier](https://github.com/clefourrier) for adding this dataset.