dmlc--dgl
abf12fc757
* minigc dataset * more comments * sphinx
10 行
172 B
Python
10 行
172 B
Python
import dgl.data as data
|
|
|
|
def test_minigc():
|
|
ds = data.MiniGCDataset(16, 10, 20)
|
|
g, l = list(zip(*ds))
|
|
print(g, l)
|
|
|
|
if __name__ == '__main__':
|
|
test_minigc()
|