mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-25 13:48:49 +08:00
35 lines
747 B
Go
35 lines
747 B
Go
package pairwise
|
|
|
|
import (
|
|
"math"
|
|
|
|
"gonum.org/v1/gonum/mat"
|
|
)
|
|
|
|
type Cosine struct{}
|
|
|
|
func NewCosine() *Cosine {
|
|
return &Cosine{}
|
|
}
|
|
|
|
// Dot computes dot value of vectorX and vectorY.
|
|
func (c *Cosine) Dot(vectorX *mat.Dense, vectorY *mat.Dense) float64 {
|
|
subVector := new(mat.Dense)
|
|
subVector.MulElem(vectorX, vectorY)
|
|
result := mat.Sum(subVector)
|
|
|
|
return result
|
|
}
|
|
|
|
// Distance computes Cosine distance.
|
|
// It will return distance which represented as 1-cos() (ranged from 0 to 2).
|
|
func (c *Cosine) Distance(vectorX *mat.Dense, vectorY *mat.Dense) float64 {
|
|
dotXY := c.Dot(vectorX, vectorY)
|
|
lengthX := math.Sqrt(c.Dot(vectorX, vectorX))
|
|
lengthY := math.Sqrt(c.Dot(vectorY, vectorY))
|
|
|
|
cos := dotXY / (lengthX * lengthY)
|
|
|
|
return 1 - cos
|
|
}
|