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.
28 lines
423 B
Go
28 lines
423 B
Go
package mathx
|
|
|
|
import "math"
|
|
|
|
const epsilon = 1e-6
|
|
|
|
func CalcEntropy(m map[interface{}]int) float64 {
|
|
if len(m) == 0 || len(m) == 1 {
|
|
return 1
|
|
}
|
|
|
|
var entropy float64
|
|
var total int
|
|
for _, v := range m {
|
|
total += v
|
|
}
|
|
|
|
for _, v := range m {
|
|
proba := float64(v) / float64(total)
|
|
if proba < epsilon {
|
|
proba = epsilon
|
|
}
|
|
entropy -= proba * math.Log2(proba)
|
|
}
|
|
|
|
return entropy / math.Log2(float64(len(m)))
|
|
}
|