Skip to content

Commit 84613ef

Browse files
committed
hack my way through renaming
1 parent 23d51d9 commit 84613ef

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pygsp/graphs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,6 @@
204204
'ErdosRenyi',
205205
'FullConnected',
206206
'Grid2d',
207-
'LearnedFromSmoothSignals',
208207
'LineGraph',
209208
'Logo',
210209
'LowStretchTree',
@@ -231,4 +230,5 @@
231230
__all__ = _GRAPHS + _NNGRAPHS
232231

233232
_utils.import_classes(_GRAPHS, 'graphs', 'graphs')
233+
from pygsp.graphs.learned import LearnedFromSmoothSignals
234234
_utils.import_classes(_NNGRAPHS, 'graphs.nngraphs', 'graphs')

pygsp/graphs/graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
from __future__ import division
44

5-
import os
6-
from collections import Counter
5+
# import os
6+
# from collections import Counter
77

88
import numpy as np
99
from scipy import sparse

pygsp/tests/test_learn_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from scipy import sparse
88
import pygsp as pg
99
from pygsp.utils import distanz
10-
from pygsp.graphs.learngraph import *
10+
from pygsp.graphs.learned import *
1111

1212
class TestCase(unittest.TestCase):
1313
def test_prox_sum_log(self):

0 commit comments

Comments
 (0)