Skip to content

Commit 495088d

Browse files
committed
increase verbosity
1 parent ed87465 commit 495088d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Python/phate/phate.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,10 +300,11 @@ def calculate_operator(data, k=15, a=10, alpha_decay=True, n_landmark=2000,
300300
ndim=n_pca,
301301
alpha_decay=alpha_decay,
302302
random_state=random_state,
303-
n_jobs=n_jobs)
303+
n_jobs=n_jobs,
304+
verbose=verbose)
304305
diff_op, landmark_transitions = calculate_landmark_operator(
305306
kernel, n_landmark=n_landmark,
306-
random_state=random_state)
307+
random_state=random_state, verbose=verbose)
307308
if verbose:
308309
print("Built graph and diffusion operator in %.2f seconds." %
309310
(time.time() - tic))

0 commit comments

Comments
 (0)