CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Internet/网络编程 搜索引擎

文件名称:SharpICTCLAS

  • 所属分类:
  • 标签属性:
  • 上传时间:
    2012-11-16
  • 文件大小:
    1.87mb
  • 已下载:
    0次
  • 提 供 者:
  • 相关连接:
  • 下载说明:
    别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容来自于网络,使用问题请自行百度

ICTCLAS分词的总体流程包括:1)初步分词;2)词性标注;3)人名、地名识别;4)重新分词;5)重新词性标注这五步。就第一步分词而言,又细分成:1)原子切分;2)找出原子之间所有可能的组词方案;3)N-最短路径中文词语粗分三步。



在所有内容中,词典库的读取是最基本的功能。ICTCLAS中词典存放在Data目录中,常用的词典包括coreDict.dct(词典库)、BigramDict.dct(词与词间的关联库)、nr.dct(人名库)、ns.dct(地名库)、tr.dct(翻译人名库),它们的文件格式是完全相同的,都使用CDictionary类进行解析。如果想深入了解ICTCLAS词典结构,可以参考sinboy的《ICTCLAS分词系统研究(二)--词典结构》一文,详细介绍了词典结构。

-ICTCLAS word of the overall process include: 1) initial segmentation 2) POS tagging 3) names, places identification 4) to re-word 5) This five-step re-speech tagging. The first word, the thin, divided into: 1) atom splitting 2) to identify all the possible atomic set of words between the program 3) N-shortest paths Chinese words rough three steps.
(系统自动生成,下载前可以参看下载内容)

下载文件列表

doc/css/customercss.css
doc/css/style.css
doc/images/0220001.gif
doc/images/0220002.gif
doc/images/0220003.gif
doc/images/0220004.gif
doc/images/0220005.gif
doc/images/0220006.gif
doc/images/0225007.gif
doc/images/0225008.gif
doc/images/0225009.gif
doc/images/0308001.gif
doc/images/0308002.gif
doc/images/0308003.gif
doc/images/0308004.gif
doc/images/0308005.gif
doc/images/0308006.gif
doc/images/0308007.gif
doc/images/0308008.gif
doc/images/copycode.gif
doc/images/copycodeHighlight.gif
doc/images/Thumbs.db
doc/SharpICTCLAS分词系统简介(1)读取词典库.htm
doc/SharpICTCLAS分词系统简介(2)初步分词.htm
doc/SharpICTCLAS分词系统简介(3)DynamicArray.htm
doc/SharpICTCLAS分词系统简介(4)NShortPath-1.htm
doc/SharpICTCLAS分词系统简介(5)NShortPath-2.htm
doc/SharpICTCLAS分词系统简介(6)Segment.htm
doc/SharpICTCLAS分词系统简介(7)OptimumSegment.htm
doc/SharpICTCLAS分词系统简介(8)其它.htm
doc/SharpICTCLAS分词系统简介(9)词库扩充.htm
doc/移植ICTCLAS到CSharp平台上.htm
SharpICTCLAS/Samples/AddWords2Dict/AddWords2Dict.csproj
SharpICTCLAS/Samples/AddWords2Dict/Program.cs
SharpICTCLAS/Samples/AddWords2Dict/Properties/AssemblyInfo.cs
SharpICTCLAS/Samples/ConsoleTest/ConsoleTest.csproj
SharpICTCLAS/Samples/ConsoleTest/ConsoleTest.csproj.user
SharpICTCLAS/Samples/ConsoleTest/Program.cs
SharpICTCLAS/Samples/ConsoleTest/Properties/AssemblyInfo.cs
SharpICTCLAS/Samples/PreProcessUtility/PreProcessUtility.cs
SharpICTCLAS/Samples/PreProcessUtility/PreProcessUtility.csproj
SharpICTCLAS/Samples/PreProcessUtility/Properties/AssemblyInfo.cs
SharpICTCLAS/Samples/SegmentSample/Program.cs
SharpICTCLAS/Samples/SegmentSample/Program.cs.bak
SharpICTCLAS/Samples/SegmentSample/Properties/AssemblyInfo.cs
SharpICTCLAS/Samples/SegmentSample/SegmentSample.csproj
SharpICTCLAS/Samples/SegmentSample/TestWordSegment.cs
SharpICTCLAS/SharpICTCLAS/EventInterface/SegmentEventArg.cs
SharpICTCLAS/SharpICTCLAS/EventInterface/SegmentEventHandler.cs
SharpICTCLAS/SharpICTCLAS/EventInterface/SegmentStage.cs
SharpICTCLAS/SharpICTCLAS/Properties/AssemblyInfo.cs
SharpICTCLAS/SharpICTCLAS/Segment/AtomNode.cs
SharpICTCLAS/SharpICTCLAS/Segment/DynamicArray/ChainContent.cs
SharpICTCLAS/SharpICTCLAS/Segment/DynamicArray/ChainItem.cs
SharpICTCLAS/SharpICTCLAS/Segment/DynamicArray/ColumnFirstDynamicArray.cs
SharpICTCLAS/SharpICTCLAS/Segment/DynamicArray/DynamicArray.cs
SharpICTCLAS/SharpICTCLAS/Segment/DynamicArray/RowFirstDynamicArray.cs
SharpICTCLAS/SharpICTCLAS/Segment/NShortPath/CQueue.cs
SharpICTCLAS/SharpICTCLAS/Segment/NShortPath/NShortPath.cs
SharpICTCLAS/SharpICTCLAS/Segment/NShortPath/PathNode.cs
SharpICTCLAS/SharpICTCLAS/Segment/Segment.cs
SharpICTCLAS/SharpICTCLAS/Segment/WordLinkedArray.cs
SharpICTCLAS/SharpICTCLAS/Segment/WordNode.cs
SharpICTCLAS/SharpICTCLAS/SharpICTCLAS.csproj
SharpICTCLAS/SharpICTCLAS/SharpICTCLAS.csproj.user
SharpICTCLAS/SharpICTCLAS/Tag/Span.cs
SharpICTCLAS/SharpICTCLAS/Tag/TagType.cs
SharpICTCLAS/SharpICTCLAS/Unknown/UnknowWord.cs
SharpICTCLAS/SharpICTCLAS/Utility/ContextItem.cs
SharpICTCLAS/SharpICTCLAS/Utility/ContextStat.cs
SharpICTCLAS/SharpICTCLAS/Utility/Predefine.cs
SharpICTCLAS/SharpICTCLAS/Utility/Utility.cs
SharpICTCLAS/SharpICTCLAS/Utility/WordDictionary.cs
SharpICTCLAS/SharpICTCLAS/Utility/WordDictionaryElement.cs
SharpICTCLAS/SharpICTCLAS/WordSegment.cs
SharpICTCLAS/SharpICTCLAS.sln
SharpICTCLAS/SharpICTCLAS.suo
bin/AddWords2Dict.exe
bin/ConsoleTest.exe
bin/Data/BigramDict.dct
bin/Data/coreDict.dct
bin/Data/engstopwords.txt
bin/Data/lexical.ctx
bin/Data/log.txt
bin/Data/nr.ctx
bin/Data/nr.dct
bin/Data/ns.ctx
bin/Data/ns.dct
bin/Data/Readme.TXT
bin/Data/stopwords.txt
bin/Data/tr.ctx
bin/Data/tr.dct
bin/PreProcessUtility.dll
bin/SegmentSample.exe
bin/SharpICTCLAS.dll
SharpICTCLAS/Samples/AddWords2Dict/Properties
SharpICTCLAS/Samples/ConsoleTest/Properties
SharpICTCLAS/Samples/PreProcessUtility/Properties
SharpICTCLAS/Samples/SegmentSample/Properties
SharpICTCLAS/SharpICTCLAS/Segment/DynamicArray
SharpICTCLAS/SharpICTCLAS/Segment/NShortPath
SharpICTCLAS/Samples/AddWords2Dict
SharpICTCLAS/Samples/ConsoleTest
SharpICTCLAS/Samples/PreProcessUtility
SharpICTCLAS/Samples/SegmentSample
SharpICTCLAS/SharpICTCLAS/EventInterface
SharpICTCLAS/SharpICTCLAS/Properties
SharpICTCLAS/SharpICTCLAS/Segment
SharpICTCLAS/SharpICTCLAS/Tag
SharpICTCLAS/SharpICTCLAS/Unknown
SharpICTCLAS/SharpICTCLAS/Utility
doc/css
doc/images
SharpICTCLAS/Samples
SharpICTCLAS/SharpICTCLAS
bin/Data
doc
SharpICTCLAS
bin

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 搜珍网是交换下载平台,只提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。更多...
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或换浏览器;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*快速评论: 推荐 一般 有密码 和说明不符 不是源码或资料 文件不全 不能解压 纯粹是垃圾
*内  容:
*验 证 码:
搜珍网 www.dssz.com