When using scikit learn or other similar Python libraries, what's the difference between doing:
import sklearn.cluster as sk
model = sk.KMeans(n_clusters=n)
And
from sklearn.cluster import KMeans
model = KMeans(n_clusters=n)
Is there any advantage to using one way over the other?