mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-28 13:48:56 +08:00
25 lines
440 B
Go
25 lines
440 B
Go
package pairwise
|
|
|
|
import (
|
|
"math"
|
|
|
|
"github.com/gonum/matrix/mat64"
|
|
)
|
|
|
|
type RBFKernel struct {
|
|
gamma float64
|
|
}
|
|
|
|
func NewRBFKernel(gamma float64) *RBFKernel {
|
|
return &RBFKernel{gamma: gamma}
|
|
}
|
|
|
|
func (self *RBFKernel) InnerProduct(vectorX *mat64.Dense, vectorY *mat64.Dense) float64 {
|
|
euclidean := NewEuclidean()
|
|
distance := euclidean.Distance(vectorX, vectorY)
|
|
|
|
result := math.Exp(self.gamma * math.Pow(distance, 2))
|
|
|
|
return result
|
|
}
|