Skip to content

Commit

Permalink
Merge pull request #5 from belowlab/refactor
Browse files Browse the repository at this point in the history
feat: switched from using typer to just argparse
  • Loading branch information
jtb324 authored Nov 27, 2023
2 parents e212f57 + f6c3d6c commit 192dbb4
Show file tree
Hide file tree
Showing 10 changed files with 355 additions and 734 deletions.
3 changes: 3 additions & 0 deletions drive/cluster/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ def random_walk(self, graph: ig.Graph) -> ig.VertexClustering:
result of the random walk cluster. This object has
information about clusters and membership
"""
logger.debug(
f"Performing the community walktrap algorithm with a random walk step size of: {self.random_walk_step_size}"
)

ibd_walktrap = ig.Graph.community_walktrap(
graph, weights="cm", steps=self.random_walk_step_size
Expand Down
Loading

0 comments on commit 192dbb4

Please sign in to comment.