``` from apricot import FacilityLocationSelection import numpy X = numpy.random.uniform(0, 1, size=(500, 500)) FacilityLocationSelection(100,n_neighbors=10, verbose=True).fit(X) ``` n_neighbors parameter gives an error, when I remove it it works fine.