rampage644 / pos-crf

Implementation POS tagger project with CRF

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description

POS tagger implementation project using Conditional Random Fields with an aim of getting better understanding of it.

Data

mkdir data
cd data
http http://www.cnts.ua.ac.be/conll2000/chunking/train.txt.gz | gunzip | cut -f1,2 -d" " > pos.train.txt
http http://www.cnts.ua.ac.be/conll2000/chunking/test.txt.gz | gunzip | cut -f1,2 -d " " > pos.test.txt

Useful links

About

Implementation POS tagger project with CRF

License:Apache License 2.0


Languages

Language:Python 100.0%