嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
delphi Python结巴分词例子源代码,用到组件PythonForDelphi
.
├── Project1.conf
├── Project1.dof
├── Project1.dpr
├── Project1.dproj
├── Project1.dproj.local
├── Project1.exe
├── Project1.identcache
├── Project1.kof
├── Project1.res
├── Project1.stat
├── Project1_Icon.ico
├── Unit1.dcu
├── Unit1.dfm
├── Unit1.pas
├── Unit1.xfm
├── delphi Python结巴分词例子源代码_分词示例.zip
├── jieba
│ ├── __init__.py
│ ├── __main__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-35.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ ├── _compat.cpython-35.pyc
│ │ └── _compat.cpython-36.pyc
│ ├── _compat.py
│ ├── analyse
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-35.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── analyzer.cpython-35.pyc
│ │ │ ├── analyzer.cpython-36.pyc
│ │ │ ├── textrank.cpython-35.pyc
│ │ │ ├── textrank.cpython-36.pyc
│ │ │ ├── tfidf.cpython-35.pyc
│ │ │ └── tfidf.cpython-36.pyc
│ │ ├── analyzer.py
│ │ ├── idf.txt
│ │ ├── textrank.py
│ │ └── tfidf.py
│ ├── dict.txt
│ ├── finalseg
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-35.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ ├── prob_emit.cpython-35.pyc
│ │ │ ├── prob_emit.cpython-36.pyc
│ │ │ ├── prob_start.cpython-35.pyc
│ │ │ ├── prob_start.cpython-36.pyc
│ │ │ ├── prob_trans.cpython-35.pyc
│ │ │ └── prob_trans.cpython-36.pyc
│ │ ├── prob_emit.p
│ │ ├── prob_emit.py
│ │ ├── prob_start.p
│ │ ├── prob_start.py
│ │ ├── prob_trans.p
│ │ └── prob_trans.py
│ └── posseg
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-35.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ ├── char_state_tab.cpython-35.pyc
│ │ ├── char_state_tab.cpython-36.pyc
│ │ ├── prob_emit.cpython-35.pyc
│ │ ├── prob_emit.cpython-36.pyc
│ │ ├── prob_start.cpython-35.pyc
│ │ ├── prob_start.cpython-36.pyc
│ │ ├── prob_trans.cpython-35.pyc
│ │ ├── prob_trans.cpython-36.pyc
│ │ ├── viterbi.cpython-35.pyc
│ │ └── viterbi.cpython-36.pyc
│ ├── char_state_tab.p
│ ├── char_state_tab.py
│ ├── prob_emit.p
│ ├── prob_emit.py
│ ├── prob_start.p
│ ├── prob_start.py
│ ├── prob_trans.p
│ ├── prob_trans.py
│ └── viterbi.py
├── python36.dll
├── python36.zip
├── test.py
├── vcruntime140.dll
└── 中文分词.py
8 directories, 79 files