mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-26 13:49:14 +08:00
28 lines
558 B
Go
28 lines
558 B
Go
package pairwise
|
|
|
|
import (
|
|
"math"
|
|
|
|
"github.com/gonum/matrix/mat64"
|
|
)
|
|
|
|
type RBFKernel struct {
|
|
gamma float64
|
|
}
|
|
|
|
// Radial Basis Function Kernel
|
|
func NewRBFKernel(gamma float64) *RBFKernel {
|
|
return &RBFKernel{gamma: gamma}
|
|
}
|
|
|
|
// Compute inner product through kernel trick
|
|
// K(x, y) = exp(-gamma * ||x - y||^2)
|
|
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
|
|
}
|