I would like to use scipy.spatial.distance.cosine
in my code. I can import the spatial
submodule if I do something like import scipy.spatial
or from scipy import spatial
, but if I simply import scipy
calling scipy.spatial.distance.cosine(...)
results in the following error: AttributeError: 'module' object has no attribute 'spatial'
.
What is wrong with the second approach?