-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_polygraphdiscrepancy.py
More file actions
252 lines (212 loc) · 7.92 KB
/
Copy pathtest_polygraphdiscrepancy.py
File metadata and controls
252 lines (212 loc) · 7.92 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
import numpy as np
import pytest
from sklearn.linear_model import LogisticRegression
import networkx as nx
from polygraph.utils.descriptors import (
SparseDegreeHistogram,
DegreeHistogram,
ClusteringHistogram,
)
from polygraph.metrics.base import (
PolyGraphDiscrepancy,
PolyGraphDiscrepancyInterval,
ClassifierMetric,
)
from polygraph.metrics.base.metric_interval import MetricInterval
from polygraph.metrics.standard_pgd import (
StandardPGD,
StandardPGDInterval,
ClassifierOrbit4Metric,
ClassifierOrbit5Metric,
ClassifierClusteringMetric,
ClassifierDegreeMetric,
ClassifierSpectralMetric,
GraphNeuralNetworkClassifierMetric,
)
@pytest.fixture
def dense_graphs():
return [nx.erdos_renyi_graph(10, 0.8) for _ in range(128)]
@pytest.fixture
def sparse_graphs():
return [nx.erdos_renyi_graph(10, 0.1) for _ in range(128)]
@pytest.fixture
def dense_graphs_large():
return [nx.erdos_renyi_graph(10, 0.8) for _ in range(256)]
@pytest.fixture
def sparse_graphs_large():
return [nx.erdos_renyi_graph(10, 0.1) for _ in range(256)]
@pytest.mark.parametrize(
"descriptor", [SparseDegreeHistogram(), DegreeHistogram(100)]
)
@pytest.mark.parametrize("variant", ["jsd", "informedness"])
def test_classifier_metric_logistic(
descriptor, variant, dense_graphs, sparse_graphs
):
classifier = LogisticRegression()
clf_metric = ClassifierMetric(dense_graphs, descriptor, variant, classifier)
train, test = clf_metric.compute(sparse_graphs)
assert isinstance(train, float) and isinstance(test, float)
assert train >= 0.7, f"Train score {train} is less than 0.7"
assert test >= 0.7, f"Test score {test} is less than 0.7"
train, test = clf_metric.compute(dense_graphs)
assert train <= 0.2, f"Train score {train} is greater than 0.2"
assert test <= 0.2, f"Test score {test} is greater than 0.2"
@pytest.mark.slow
@pytest.mark.parametrize(
"descriptor", [SparseDegreeHistogram(), DegreeHistogram(100)]
)
@pytest.mark.parametrize("variant", ["jsd", "informedness"])
def test_classifier_metric_tabpfn(
descriptor, variant, dense_graphs_large, sparse_graphs_large
):
clf_metric = ClassifierMetric(
dense_graphs_large, descriptor, variant, classifier=None
)
train, test = clf_metric.compute(sparse_graphs_large)
assert isinstance(train, float) and isinstance(test, float)
assert train >= 0.7, f"Train score {train} is less than 0.7"
assert test >= 0.7, f"Test score {test} is less than 0.7"
train, test = clf_metric.compute(dense_graphs_large)
assert train <= 0.2, f"Train score {train} is greater than 0.2"
assert test <= 0.2, f"Test score {test} is greater than 0.2"
@pytest.mark.parametrize("variant", ["jsd", "informedness"])
def test_polygraphdiscrepancy_logistic(variant, dense_graphs, sparse_graphs):
descriptors = {
"degree": SparseDegreeHistogram(),
"clustering": ClusteringHistogram(100),
}
classifier = LogisticRegression()
pgd = PolyGraphDiscrepancy(dense_graphs, descriptors, variant, classifier)
result = pgd.compute(sparse_graphs)
assert isinstance(result, dict)
assert "pgd" in result
assert "pgd_descriptor" in result
assert "subscores" in result
assert len(result["subscores"]) == len(descriptors)
assert result["pgd"] == result["subscores"][result["pgd_descriptor"]]
assert result["pgd"] >= 0.7, (
f"PolyGraphDiscrepancy {result['pgd']} is less than 0.7"
)
result = pgd.compute(dense_graphs)
assert result["pgd"] <= 0.2, (
f"PolyGraphDiscrepancy {result['pgd']} is greater than 0.2"
)
@pytest.mark.slow
@pytest.mark.parametrize("variant", ["jsd", "informedness"])
def test_polygraphdiscrepancy_tabpfn(
variant, dense_graphs_large, sparse_graphs_large
):
descriptors = {
"degree": SparseDegreeHistogram(),
"clustering": ClusteringHistogram(100),
}
pgd = PolyGraphDiscrepancy(
dense_graphs_large, descriptors, variant, classifier=None
)
result = pgd.compute(sparse_graphs_large)
assert isinstance(result, dict)
assert "pgd" in result
assert "pgd_descriptor" in result
assert "subscores" in result
assert len(result["subscores"]) == len(descriptors)
assert result["pgd"] == result["subscores"][result["pgd_descriptor"]]
assert result["pgd"] >= 0.7, (
f"PolyGraphDiscrepancy {result['pgd']} is less than 0.7"
)
result = pgd.compute(dense_graphs_large)
assert result["pgd"] <= 0.2, (
f"PolyGraphDiscrepancy {result['pgd']} is greater than 0.2"
)
@pytest.mark.parametrize("variant", ["jsd", "informedness"])
def test_polygraphdiscrepancy_interval_logistic(
variant, dense_graphs, sparse_graphs
):
descriptors = {
"degree": SparseDegreeHistogram(),
"clustering": ClusteringHistogram(100),
}
classifier = LogisticRegression()
pgd = PolyGraphDiscrepancyInterval(
dense_graphs,
descriptors,
subsample_size=10,
num_samples=4,
variant=variant,
classifier=classifier,
)
result = pgd.compute(sparse_graphs)
assert isinstance(result, dict)
assert "pgd" in result
assert "pgd_descriptor" in result
assert "subscores" in result
assert len(result["subscores"]) == len(descriptors)
assert isinstance(result["pgd"], MetricInterval)
assert isinstance(result["pgd_descriptor"], dict)
@pytest.mark.slow
@pytest.mark.parametrize("variant", ["jsd", "informedness"])
def test_polygraphdiscrepancy_interval_tabpfn(
variant, dense_graphs_large, sparse_graphs_large
):
descriptors = {
"degree": SparseDegreeHistogram(),
"clustering": ClusteringHistogram(100),
}
pgd = PolyGraphDiscrepancyInterval(
dense_graphs_large,
descriptors,
subsample_size=10,
num_samples=4,
variant=variant,
classifier=None,
)
result = pgd.compute(sparse_graphs_large)
assert isinstance(result, dict)
assert "pgd" in result
assert "pgd_descriptor" in result
assert "subscores" in result
assert len(result["subscores"]) == len(descriptors)
assert isinstance(result["pgd"], MetricInterval)
assert isinstance(result["pgd_descriptor"], dict)
@pytest.mark.slow
def test_standard_pgd(dense_graphs, sparse_graphs):
metric = StandardPGD(dense_graphs)
result = metric.compute(sparse_graphs)
individual_metrics = {
"orbit4": ClassifierOrbit4Metric(
dense_graphs, variant="jsd", classifier=None
),
"orbit5": ClassifierOrbit5Metric(
dense_graphs, variant="jsd", classifier=None
),
"clustering": ClassifierClusteringMetric(
dense_graphs, variant="jsd", classifier=None
),
"degree": ClassifierDegreeMetric(
dense_graphs, variant="jsd", classifier=None
),
"spectral": ClassifierSpectralMetric(
dense_graphs, variant="jsd", classifier=None
),
"gin": GraphNeuralNetworkClassifierMetric(
dense_graphs, variant="jsd", classifier=None
),
}
individual_results = {
name: metric.compute(sparse_graphs)
for name, metric in individual_metrics.items()
}
for name, (_, individual_result) in individual_results.items():
joint = result["subscores"][name]
assert isinstance(individual_result, float)
assert np.isclose(individual_result, joint, rtol=1e-3), (
f"Individual result {individual_result} for descriptor {name} does not match the overall result {joint}"
)
metric = StandardPGDInterval(dense_graphs, subsample_size=10, num_samples=4)
result = metric.compute(sparse_graphs)
assert isinstance(result, dict)
assert "pgd" in result
assert "pgd_descriptor" in result
assert "subscores" in result
assert len(result["subscores"]) == len(individual_metrics)
assert isinstance(result["pgd"], MetricInterval)
assert isinstance(result["pgd_descriptor"], dict)