登录
首页 » C# » PST-v1.0

PST-v1.0

于 2014-03-21 发布 文件大小:5755KB
0 198
下载积分: 1 下载次数: 4

代码说明:

  使用隐马尔科夫模型进行词性标注,数据结构为Trie 树,界面简洁直观,算法效率快(Using hidden Markov model tagging, Trie tree data structures, simple and intuitive interface, fast algorithm efficiency)

文件列表:

PST v1.0
........\.DS_Store,6148,2014-01-13
........\tag
........\...\.DS_Store,6148,2014-01-13
........\...\bin
........\...\...\Debug
........\...\...\.....\dict.txt,8354115,2014-01-11
........\...\...\.....\tag.vshost.exe.manifest,490,2010-03-17
........\...\Form1.cs,11061,2014-01-13
........\...\Form1.Designer.cs,3656,2014-01-11
........\...\Form1.resx,5817,2014-01-11
........\...\obj
........\...\...\x86
........\...\...\...\Debug
........\...\...\...\.....\DesignTimeResolveAssemblyReferences.cache,4501,2014-01-13
........\...\...\...\.....\DesignTimeResolveAssemblyReferencesInput.cache,6268,2014-01-13
........\...\...\...\.....\GenerateResource.read.1.tlog,256,2014-01-13
........\...\...\...\.....\GenerateResource.write.1.tlog,590,2014-01-13
........\...\...\...\.....\ResolveAssemblyReference.cache,7875,2014-01-13
........\...\...\...\.....\tag.csproj.FileListAbsolute.txt,1486,2014-01-13
........\...\...\...\.....\tag.pdb,28160,2014-01-13
........\...\...\...\.....\tag.Properties.Resources.resources,180,2014-01-13
........\...\...\...\.....\tag.tag.resources,180,2014-01-13
........\...\...\...\.....\TempPE
........\...\Part Of Speech Tagging v1.0
........\...\Program.cs,482,2014-01-11
........\...\Properties
........\...\..........\AssemblyInfo.cs,1356,2014-01-11
........\...\..........\Resources.Designer.cs,2857,2014-01-11
........\...\..........\Resources.resx,5612,2014-01-11
........\...\..........\Settings.Designer.cs,1089,2014-01-11
........\...\..........\Settings.settings,249,2014-01-11
........\...\tag.csproj,3665,2014-01-11
........\tag.sln,851,2014-01-11
........\tag.suo,20480,2014-01-13
__MACOSX
........\PST v1.0
........\........\._.DS_Store,120,2014-01-13
........\........\tag
........\........\...\._.DS_Store,120,2014-01-13
........\........\...\Part Of Speech Tagging v1.0

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • VBASM
    非常给力的VB嵌入汇编代码的工具类,一看就懂,谁说VB不能搞汇编?简单好用,懂点汇编的很快上手,做WG的朋友们有福了~~~(Tools very awesome VB embedded assembly code, one can understand, who can not engage in VB assembly? Simple and easy to use, understand the point of assembly of a very fast start, do WG friends blessed)
    2015-11-14 22:16:32下载
    积分:1
  • MFCui
    handan001编写的一个关于MFC扩展界面库的源代码小程序(handan001 written an MFC extension interface library source code applet)
    2012-09-04 15:40:54下载
    积分:1
  • 314730
    刷网页流量源码程序,结合易语言扩展界面支持库,在时钟的周期事件下访问指定的网页,时钟不停就一直访问。(Brush Web traffic source program, combined with easy language extensions interface support library , in the event of the clock cycle access to the specified web page , the clock has been non-stop access .)
    2017-02-06 13:13:45下载
    积分:1
  • 201302082056215619
    VSFlexGrid演示 数据记录集窗口 (VSFlexGrid demo data records window)
    2013-09-22 18:25:09下载
    积分:1
  • C++ Qt5 范例开发大全 [Longki] [中文版]
    说明:  非常好的一本书,针对QT5开发规范的书籍,非常不错,值得入手,推荐!!(Learning Resources PDF)
    2021-01-12 11:38:24下载
    积分:1
  • MATLABxinhaoyuxitongGUI
    说明:  一个完整的信号与系统的matlab的GUI仿真界面程序,适合与毕业设计,包括连续和离散部分(A complete signal and system simulation matlab' s GUI interface program, and graduation for the design, including continuous and discrete parts)
    2011-04-10 15:36:29下载
    积分:1
  • NucleusGRAFIX
    NUCLEUS的图形用户界面(GUI),80多万行代码。多窗口的支持非常好,但是对中文的支持似乎不太好。呵呵,可以参考。(NUCLEUS graphical user interface (GUI), more than 80 million lines of code. Multi-window support is very good, but the Chinese seem to support is not very good. Oh, for reference.)
    2006-12-16 11:48:56下载
    积分:1
  • ZNodes
    qt中提供了QGphicsView,QGraphicsScene,QGraphicsItem,QGraphicsPixmapItem是QGraphicsItem的子类 分辨创建它们的实例:view,scene,item,然后通过各自的方法scene->addItem(item);view->setScene(scene);就可以达到类似下图的效果,想要进一步定制,则要继承QGraphicsItem或QGraphicsPixmapItem,然后重写paint()、boundingRect()等方法,此外如果还想要获取鼠标事件,重写mousePressEvent等事件就好了,注意,一旦重写了mousePressEvent方法,就以为了qt不会再自动处理item的任何press事件了,可以在你重写的mousePressEvent方法中最后添加QGraphicsItem::mousePressEvent(event);解决这个问题,就是说你获取到了鼠标事件,但是依然让qt处理这个鼠标事件。(QGphics View, QGraphics Scene, QGraphics Item and QGraphics PixmapItem are provided in qt. They are subclasses of QGraphics Item. Resolve the instances of creating them: view, scene, item, and then use their respective methods scene - > addItem (item); view - > setScene (scene); you can achieve the effect similar to the figure below. If you want to further customize, you need to inherit QGraphics Item or QGraphics Pixmap Item, and then rewrite paint (), boundingRect () and other methods, and if you want to do so. If you want to get mouse events, rewrite events like mousePressEvent. Note that once you rewrite the mousePressEvent method, you think that QT will no longer automatically handle any press events of item. You can finally add QGraphics Item:: mousePressEvent (event) to your rewritten mousePressEvent method to solve this problem. That is, you get the mouse event, but still let QT handle the mouse event.)
    2020-06-16 20:20:01下载
    积分:1
  • MCU-hmi
    远端操作人机,可以节省传统HMI,继而使用一体式面板。使用更加方便(Remote Operator Terminal)
    2013-11-14 22:07:34下载
    积分:1
  • AlwaysOnTop
    vc 使窗体保持在最前AlwaysOnTop的程序源码,希望对大家有所帮助(vc the form remains on top AlwaysOnTop the program source code, we hope to help)
    2011-07-01 21:50:43下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载