Skip to content

Commit

Permalink
fix docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Krsto Proroković committed Apr 16, 2024
1 parent 499c60e commit 02f0191
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bias_detection_tool/clustering/_kmeans.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class BiasAwareHierarchicalKMeans(BiasAwareHierarchicalClustering):
Examples
--------
>>> from bias_scan.clustering import BiasAwareHierarchicalKMeans
>>> from bias_detection_tool.clustering import BiasAwareHierarchicalKMeans
>>> import numpy as np
>>> X = np.array([[1, 2], [1, 4], [1, 0], [10, 2], [10, 4], [10, 0]])
>>> y = np.array([0, 0, 0, 10, 10, 10])
Expand Down
2 changes: 1 addition & 1 deletion bias_detection_tool/clustering/_kmodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class BiasAwareHierarchicalKModes(BiasAwareHierarchicalClustering):
Examples
--------
>>> from bias_scan.clustering import BiasAwareHierarchicalKModes
>>> from bias_detection_tool.clustering import BiasAwareHierarchicalKModes
>>> import numpy as np
>>> X = np.array([[0, 1], [0, 2], [0, 0], [1, 4], [1, 5], [1, 3]])
>>> y = np.array([0, 0, 0, 10, 10, 10])
Expand Down

0 comments on commit 02f0191

Please sign in to comment.