You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/core/mathx/entropy.go

29 lines
459 B
Go

4 years ago
package mathx
import "math"
4 years ago
const epsilon = 1e-6
// CalcEntropy calculates the entropy of m.
func CalcEntropy(m map[any]int) float64 {
4 years ago
if len(m) == 0 || len(m) == 1 {
return 1
}
4 years ago
4 years ago
var entropy float64
var total int
for _, v := range m {
total += v
}
4 years ago
for _, v := range m {
proba := float64(v) / float64(total)
4 years ago
if proba < epsilon {
proba = epsilon
}
4 years ago
entropy -= proba * math.Log2(proba)
}
return entropy / math.Log2(float64(len(m)))
}