Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Randomized svd patch, some DM features #59

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions graphtools/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import pickle
import pygsp
import tasklogger

from . import base, graphs

_logger = tasklogger.get_tasklogger("graphtools")
Expand Down Expand Up @@ -36,7 +35,7 @@ def Graph(
graphtype="auto",
use_pygsp=False,
initialize=True,
**kwargs
**kwargs,
):
"""Create a graph built on data.

Expand Down Expand Up @@ -255,7 +254,7 @@ def Graph(
else:
msg = msg + " and PyGSP inheritance"

_logger.debug(msg)
_logger.log_debug(msg)

class_names = [p.__name__.replace("Graph", "") for p in parent_classes]
try:
Expand All @@ -273,7 +272,7 @@ def Graph(
pass

# build graph and return
_logger.debug(
_logger.log_debug(
"Initializing {} with arguments {}".format(
parent_classes,
", ".join(
Expand Down
Loading