Skip to content

Commit

Permalink
Remove debugger breakpoint instruction from plot_voironi in divisive_…
Browse files Browse the repository at this point in the history
…clustering.py (NVIDIA#2089)

Commenting out breakpoint() in plot_voironi as it causes debugger warning

---------

Co-authored-by: Eric Schweitz <[email protected]>
Co-authored-by: Pradnya Khalate <[email protected]>
  • Loading branch information
3 people authored Aug 22, 2024
1 parent 18c305b commit 45e763b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,8 @@ def plot_voironi(
for j, region in enumerate(regions):
polygon = vertices[region]
color = self.coreset_df.color[j]
breakpoint()
# Uncomment this line for debugging
# `breakpoint()`
plt.fill(*zip(*polygon), alpha=0.4, color=color, linewidth=0)
if show_annotation:
plt.annotate(
Expand Down

0 comments on commit 45e763b

Please sign in to comment.