Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
nperraud committed Aug 19, 2019
1 parent b3c8efe commit 3ed33f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pygsp/graphs/learngraph.py
Expand Up @@ -509,7 +509,7 @@ class LearnGraph(Graph):
>>>
>>> # B) Learn the graph
>>> param_opt = {'verbosity':0}
>>> Glearned = LearnGraph(X,k=k, param_opt=param_opt)
>>> Glearned = pg.graphs.LearnGraph(X,k=k, param_opt=param_opt)
>>> # plot the learned graph
>>> Glearned.coords = coords
>>>
Expand Down
3 changes: 3 additions & 0 deletions pygsp/tests/test_learning.py
Expand Up @@ -132,3 +132,6 @@ def test_classification_tikhonov(self):


suite = unittest.TestLoader().loadTestsFromTestCase(TestCase)

if __name__ == '__main__':
unittest.main()

0 comments on commit 3ed33f9

Please sign in to comment.