1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-28 13:48:56 +08:00
golearn/metrics/pairwise/rbf_kernel.go

28 lines
604 B
Go
Raw Normal View History

package pairwise
import (
"math"
"gonum.org/v1/gonum/mat"
)
type RBFKernel struct {
gamma float64
}
// NewRBFKernel returns a representation of a Radial Basis Function Kernel
func NewRBFKernel(gamma float64) *RBFKernel {
return &RBFKernel{gamma: gamma}
}
// InnerProduct computes the inner product through a kernel trick
2014-05-03 23:05:24 +08:00
// K(x, y) = exp(-gamma * ||x - y||^2)
func (r *RBFKernel) InnerProduct(vectorX *mat.Dense, vectorY *mat.Dense) float64 {
euclidean := NewEuclidean()
distance := euclidean.Distance(vectorX, vectorY)
result := math.Exp(-r.gamma * math.Pow(distance, 2))
return result
}