博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POS Tagger in Java
阅读量:2395 次
发布时间:2019-05-10

本文共 648 字,大约阅读时间需要 2 分钟。

Other java implementations include:

  1. (Not really a POS tagger but all full blown parsers will typically include POS taggers. Google for java syntactic parsers and you will find many.)

and as posted by the other posters are also pretty decent.

Info on the state-of-the-art on POS tagging can be found . As you can see (also mentioned by another poster) ranks best as of now, but the variation across the various taggers is not much. I have not used LTAG myself.

Also note that the baseline performance for POS tagging is about 90%. Baseline means - (a) tag every word by most frequent POS tag from a lexicon, and (b) tag every unknown word as a noun.

转载地址:http://gswob.baihongyu.com/

你可能感兴趣的文章
Docker--工作原理、为何Docker比虚拟机快
查看>>
Docker--帮助命令、镜像命令
查看>>
Docker--DockerFile体系结构(保留字指令详解)
查看>>
Docker--DockerFIle指令案例
查看>>
Docker--配置Tomcat环境、发布测试项目
查看>>
Docker--安装tomcat、mysql、redis
查看>>
Docker--本地镜像发布到阿里云
查看>>
Java--实现多线程的三种方法
查看>>
Java--Thread类常用方法介绍
查看>>
数据结构--循环双链表实现、详解
查看>>
数据结构--排序循环双链表
查看>>
Java并发--线程基础(优先级、状态)
查看>>
Java并发--守护线程(Daemon Thread)
查看>>
数据结构--栈的实现(顺序栈和链栈)
查看>>
数据结构--栈的应用(括号匹配、表达式求值(中缀转后缀))
查看>>
Java并发--volatile关键字、内存可见性
查看>>
Java并发--原子变量、CAS算法
查看>>
Java并发--CountDownLatch类
查看>>
数据结构--队列实现(顺序循环队列、链式队列)
查看>>
数据结构--优先队列实现、模拟线程调度
查看>>