Question 12
Consider below code which of the following option is true for that
from sklearn.neighbors import NearestNeighborsneigh = NearestNeighbors(n_neighbors=4)neigh.fit(X_train)print(neigh.kneighbors(X_test[0:1]))Assume X_train and X_test are of type numpy.ndarray.