“Scipy Cosinus Ähnlichkeit” Code-Antworten

Cosinus -Ähnlichkeit Python Numpy

from scipy import spatial

dataSetI = [3, 45, 7, 2]
dataSetII = [2, 54, 13, 15]
result = 1 - spatial.distance.cosine(dataSetI, dataSetII)
Bad Baboon

Scipy Cosinus Ähnlichkeit

from scipy.spatial import distance

distance.cosine([1, 0, 0], [0, 1, 0])
>>> 1.0

distance.cosine([100, 0, 0], [0, 1, 0])
>>> 1.0

distance.cosine([1, 1, 0], [0, 1, 0])
>>> 0.29289321881345254
wolf-like_hunter

Ähnliche Antworten wie “Scipy Cosinus Ähnlichkeit”

Fragen ähnlich wie “Scipy Cosinus Ähnlichkeit”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen