-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmetainfo
More file actions
81 lines (81 loc) · 879 Bytes
/
metainfo
File metadata and controls
81 lines (81 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"class_name": "KnownFormatDataset",
"import_from": "datasets.known_format_datasets",
"format": "gml",
"name": "example of multiple graphs in gml format",
"count": 3,
"directed": false,
"hetero": false,
"nodes": [
4,
4,
5
],
"remap": true,
"node_attributes": {
"names": [
"a",
"b"
],
"types": [
"continuous",
"categorical"
],
"values": [
[
0,
100
],
[
"alpha",
"beta",
"gamma",
"delta"
]
]
},
"edge_attributes": {
"names": [
"weight",
"type"
],
"types": [
"continuous",
"categorical"
],
"values": [
[
0,
5
],
[
"mixed",
"complex",
"hybrid"
]
]
},
"labelings": {
"binary": 2
},
"node_attr_slices": {
"a": [
0,
1
],
"b": [
1,
5
]
},
"edge_attr_slices": {
"weight": [
0,
1
],
"type": [
1,
4
]
}
}