1
0
mirror of https://github.com/fumiama/jieba.git synced 2026-06-05 00:32:51 +08:00
Files
jieba/finalseg/prob_trans.go
2022-11-30 14:47:50 +08:00

9 lines
302 B
Go
Executable File

package finalseg
var probTrans = map[byte]map[byte]float64{
'B': {'E': -0.510825623765990, 'M': -0.916290731874155},
'E': {'B': -0.5897149736854513, 'S': -0.8085250474669937},
'M': {'E': -0.33344856811948514, 'M': -1.2603623820268226},
'S': {'B': -0.7211965654669841, 'S': -0.6658631448798212},
}