github-actions
released this
27 Oct 12:01
·
8 commits
to main
since this release
What's Changed
Breaking Changes:
Now provides Jieba
and TfIdf
class for cut sentences. You can load different dicts for different Jieba
and TfIdf
instances now.
The default dicts are provided by @node-rs/jieba/dict
now, you can load them like this:
import { Jieba } from '@node-rs/jieba'
import { dict } from '@node-rs/jieba/dict'
// load jieba with the default dict
const jieba = Jieba.withDict(dict)
console.info(jieba.cut('我们中出了一个叛徒', false))
// ["我们", "中", "出", "了", "一个", "叛徒"]
import { Jieba, TfIdf } from '@node-rs/jieba'
import { dict, idf } from '@node-rs/jieba/dict'
const jieba = Jieba.withDict(dict)
const tfIdf = TfIdf.withDict(idf)
tfIdf.extractKeywords(
jieba,
'今天纽约的天气真好啊,京华大酒店的张尧经理吃了一只北京烤鸭。后天纽约的天气不好,昨天纽约的天气也不好,北京烤鸭真好吃',
3,
)
// [
// { keyword: '北京烤鸭', weight: 1.3904870323222223 },
// { keyword: '纽约', weight: 1.121759684755 },
// { keyword: '天气', weight: 1.0766573240983333 }
// ]
- feat!(jieba): upgrade to jieba@0.7 by @Brooooooklyn in #912
- chore: refresh the infra by @Brooooooklyn in #915
Full Changelog: https://github.com/napi-rs/node-rs/compare/@node-rs/jsonwebtoken@1.10.4...@node-rs/jieba@2.0.0