项目文件夹

文件
Da Zheng a0721405cf [BUGFIX] don’t import dgl in the package. (#1382)
* fix dgl data.

* remove more.

* fix.

* fix.

Co-authored-by: Ubuntu <ubuntu@ip-172-31-16-150.us-west-2.compute.internal>
2020-03-22 01:29:16 -07:00

48 行
1.4 KiB
Python

from scipy import io
import numpy as np
import os
from .utils import get_download_dir, download
from ..graph import DGLGraph
class QM7b(object):
"""
This dataset consists of 7,211 molecules with 14 regression targets.
Nodes means atoms and edges means bonds. Edge data 'h' means
the entry of Coulomb matrix.
Reference:
- `QM7b Dataset <http://quantum-machine.org/datasets/>`_
"""
_url = 'http://deepchem.io.s3-website-us-west-1.amazonaws.com/' \
'datasets/qm7b.mat'
def __init__(self):
self.dir = get_download_dir()
self.path = os.path.join(self.dir, 'qm7b', "qm7b.mat")
download(self._url, path=self.path)
self.graphs = []
self._load(self.path)
def _load(self, filename):
data = io.loadmat(self.path)
labels = data['T']
feats = data['X']
num_graphs = labels.shape[0]
self.label = labels
for i in range(num_graphs):
g = DGLGraph()
edge_list = feats[i].nonzero()
num_nodes = np.max(edge_list) + 1
g.add_nodes(num_nodes)
g.add_edges(edge_list[0], edge_list[1])
g.edata['h'] = feats[i][edge_list[0], edge_list[1]].reshape(-1, 1)
self.graphs.append(g)
def __getitem__(self, idx):
return self.graphs[idx], self.label[idx]
def __len__(self):
return len(self.graphs)