安装foolnltk之前,电脑必须先安装tensorflow,且 tensorflow的版本不能高于2.0, 如果高于则必须先 uninstalll, 然后在安装1.X版本的。 我用的python 3.x, 具体如下:
import fool
import warnings
warnings.filterwarnings("ignore") # 为了防止导入时警告报红
fool.cut("小王在北京") # list of list , 注意jieba这个函数返回的是惰性对象
>>>>
[['小王', '在', '北京']]
传入一句话
fool.pos_cut("小王在北京") # list of list of tuple
>>>> tuple: (分词,词性)
[[('小王', 'nr'), ('在', 'p'), ('北京', 'ns')]]
传入两句话时
# 用列表括起来["句子1“,"句子2", "句子3"...]
fool.pos_cut(["小王在北京", "小李在吃炸鸡"])
# 每句话构成一个list
# list of list of tuple
>>>>
[[('小王', 'nr'), ('在', 'p'), ('北京', 'ns')],
[('小李', 'nr'), ('在', 'p'), ('吃', 'v'), ('炸鸡', 'n')]]
text = ["小王在北京","祖国天安门你好啊"]
words, ners = fool.analysis(text)
warnings.filterwarnings("ignore")
print("words: ",words)
print("ners: ",ners)
words : list of list of tuple (分词,词性)
ners: list of list of tuple (实体位置,实体类别,实体名称)
# 始终记住:每句话构成一个 list
>>>>
words: [[('小王', 'nr'), ('在', 'p'), ('北京', 'ns')], [('祖国', 'n'), ('天安门', 'ns'), ('你', 'r'), ('好', 'a'), ('啊', 'y')]]
ners: [[(0, 2, 'person', '小王'), (3, 5, 'location', '北京')], [(2, 5, 'location', '天安门')]]