1
0
mirror of https://github.com/fumiama/jieba.git synced 2026-06-23 12:40:39 +08:00

tweak style

This commit is contained in:
Wang Bin
2015-05-04 15:11:55 +08:00
parent edef39719d
commit 500e6bd10e
13 changed files with 469 additions and 1602 deletions

View File

@@ -5,9 +5,9 @@ import (
"sort"
)
type IDFLoader struct {
IDFFreq map[string]float64
Median float64
type idf struct {
freqMap map[string]float64
median float64
freqs []float64
}