Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudon committed Nov 30, 2023
1 parent 1891ba0 commit 3dedb01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions MARBLE/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def compute_laplacian(data, normalization="rw"):


def compute_connection_laplacian(data, R, normalization="rw"):
"""Connection Laplacian
r"""Connection Laplacian
Args:
data: Pytorch geometric data object.
Expand Down Expand Up @@ -520,7 +520,7 @@ def compute_connection_laplacian(data, R, normalization="rw"):


def compute_gauges(data, dim_man=None, n_geodesic_nb=10, n_workers=1):
"""Orthonormal gauges for the tangent space at each node, and connection
r"""Orthonormal gauges for the tangent space at each node, and connection
matrices between each pair of adjacent nodes.
R is a block matrix, where the row index is the gauge we want to align to,
Expand Down Expand Up @@ -573,7 +573,7 @@ def _compute_gauges(inputs, i):


def compute_connections(data, gauges, n_workers=1):
"""Find smallest rotations R between gauges pairs. It is assumed that the first
r"""Find smallest rotations R between gauges pairs. It is assumed that the first
row of edge_index is what we want to align to, i.e.,
gauges(i) = gauges(j)@R[i,j].T
Expand Down
3 changes: 0 additions & 3 deletions MARBLE/plotting.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
"""Plotting module."""
import os
from pathlib import Path

import matplotlib
import matplotlib.pyplot as plt
import networkx as nx
Expand Down

0 comments on commit 3dedb01

Please sign in to comment.