Skip to content

Commit 02f0191

Browse files
author
Krsto Proroković
committed
fix docstrings
1 parent 499c60e commit 02f0191

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bias_detection_tool/clustering/_kmeans.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class BiasAwareHierarchicalKMeans(BiasAwareHierarchicalClustering):
3030
3131
Examples
3232
--------
33-
>>> from bias_scan.clustering import BiasAwareHierarchicalKMeans
33+
>>> from bias_detection_tool.clustering import BiasAwareHierarchicalKMeans
3434
>>> import numpy as np
3535
>>> X = np.array([[1, 2], [1, 4], [1, 0], [10, 2], [10, 4], [10, 0]])
3636
>>> y = np.array([0, 0, 0, 10, 10, 10])

bias_detection_tool/clustering/_kmodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class BiasAwareHierarchicalKModes(BiasAwareHierarchicalClustering):
3030
3131
Examples
3232
--------
33-
>>> from bias_scan.clustering import BiasAwareHierarchicalKModes
33+
>>> from bias_detection_tool.clustering import BiasAwareHierarchicalKModes
3434
>>> import numpy as np
3535
>>> X = np.array([[0, 1], [0, 2], [0, 0], [1, 4], [1, 5], [1, 3]])
3636
>>> y = np.array([0, 0, 0, 10, 10, 10])

0 commit comments

Comments
 (0)