Skip to content

Commit a6791b1

Browse files
Fixed typo #207
1 parent fc43a67 commit a6791b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

semisupervised/DensityPeaks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def __init_values(self, low, u, y):
378378
self.y = y
379379
self.low = low
380380
self.u = u
381-
self.data = np.concatenate((l, u), axis=0)
381+
self.data = np.concatenate((low, u), axis=0)
382382
self.n_id = self.data.shape[0]
383383
self.distances, self.max_dis, self.min_dis = self.__build_distance()
384384
self.dc = self.__select_dc()

0 commit comments

Comments
 (0)