基本信息
源码名称:python分词程序
源码大小:3.30M
文件格式:.rar
开发语言:Python
更新时间:2023-07-01
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
python分词程序
用python写的分词程序,采用前向,后向匹配。
文件清单
└── trunk
├── cmmseg
│ ├── dict
│ │ ├── chars.lex
│ │ └── words.lex
│ ├── src
│ │ ├── build.cpp
│ │ ├── chunk.h
│ │ ├── conf.h
│ │ ├── darts.h
│ │ ├── dict.cpp
│ │ ├── dict.h
│ │ ├── segment.cpp
│ │ ├── segment.h
│ │ ├── test.cpp
│ │ └── utf8.h
│ ├── swig
│ │ ├── darts.h
│ │ ├── pydarts.cpp
│ │ ├── pydarts.i
│ │ ├── pydarts.py
│ │ ├── pydarts_wrap.cxx
│ │ └── setup.py
│ ├── test
│ │ └── cmmsegtest.h
│ └── win32
│ ├── build.vcproj
│ ├── cmmseg.sln
│ ├── cmmseg.vcproj
│ ├── Dummy
│ ├── Makefile
│ ├── ReadMe.txt
│ └── test.vcproj
├── pychseg
│ ├── extend
│ │ └── charutils.c
│ ├── __init__.py
│ ├── mmseg
│ │ ├── algorithms.py
│ │ ├── chunk.py
│ │ ├── config.py
│ │ ├── __init__.py
│ │ ├── lawlrule.py
│ │ ├── lsdmfocwrule.py
│ │ ├── mmrule.py
│ │ ├── revlenrule.py
│ │ ├── svwlrule.py
│ │ ├── worddict.py
│ │ └── word.py
│ ├── nltk
│ │ ├── __init__.py
│ │ └── mmtokenize.py
│ ├── similarity
│ │ ├── consinesim.py
│ │ └── __init__.py
│ ├── test
│ │ ├── __init__.py
│ │ └── profiler.log
│ ├── tools
│ │ └── dicttools.py
│ ├── utils
│ │ ├── __init__.py
│ │ ├── lrucache.py
│ │ ├── myitertools.py
│ │ └── profiler.py
│ └── wordlist
│ ├── chars.dic
│ ├── chars.lex
│ ├── punctuation.dic
│ ├── words.dic
│ └── words.lex
└── setup.py
16 directories, 56 files
python分词程序
用python写的分词程序,采用前向,后向匹配。
文件清单
└── trunk
├── cmmseg
│ ├── dict
│ │ ├── chars.lex
│ │ └── words.lex
│ ├── src
│ │ ├── build.cpp
│ │ ├── chunk.h
│ │ ├── conf.h
│ │ ├── darts.h
│ │ ├── dict.cpp
│ │ ├── dict.h
│ │ ├── segment.cpp
│ │ ├── segment.h
│ │ ├── test.cpp
│ │ └── utf8.h
│ ├── swig
│ │ ├── darts.h
│ │ ├── pydarts.cpp
│ │ ├── pydarts.i
│ │ ├── pydarts.py
│ │ ├── pydarts_wrap.cxx
│ │ └── setup.py
│ ├── test
│ │ └── cmmsegtest.h
│ └── win32
│ ├── build.vcproj
│ ├── cmmseg.sln
│ ├── cmmseg.vcproj
│ ├── Dummy
│ ├── Makefile
│ ├── ReadMe.txt
│ └── test.vcproj
├── pychseg
│ ├── extend
│ │ └── charutils.c
│ ├── __init__.py
│ ├── mmseg
│ │ ├── algorithms.py
│ │ ├── chunk.py
│ │ ├── config.py
│ │ ├── __init__.py
│ │ ├── lawlrule.py
│ │ ├── lsdmfocwrule.py
│ │ ├── mmrule.py
│ │ ├── revlenrule.py
│ │ ├── svwlrule.py
│ │ ├── worddict.py
│ │ └── word.py
│ ├── nltk
│ │ ├── __init__.py
│ │ └── mmtokenize.py
│ ├── similarity
│ │ ├── consinesim.py
│ │ └── __init__.py
│ ├── test
│ │ ├── __init__.py
│ │ └── profiler.log
│ ├── tools
│ │ └── dicttools.py
│ ├── utils
│ │ ├── __init__.py
│ │ ├── lrucache.py
│ │ ├── myitertools.py
│ │ └── profiler.py
│ └── wordlist
│ ├── chars.dic
│ ├── chars.lex
│ ├── punctuation.dic
│ ├── words.dic
│ └── words.lex
└── setup.py
16 directories, 56 files