Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danieldk/citar
Citar HMM part-of-speech tagger
https://github.com/danieldk/citar
hmm part-of-speech pos speech-tagger tagger
Last synced: 20 days ago
JSON representation
Citar HMM part-of-speech tagger
- Host: GitHub
- URL: https://github.com/danieldk/citar
- Owner: danieldk
- License: other
- Created: 2016-04-01T14:49:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-29T10:43:16.000Z (over 6 years ago)
- Last Synced: 2024-11-01T19:42:30.426Z (about 2 months ago)
- Topics: hmm, part-of-speech, pos, speech-tagger, tagger
- Language: Go
- Size: 35.2 KB
- Stars: 15
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Citar - Trigram HMM part-of-speech tagger
[![GoDoc](https://godoc.org/github.com/danieldk/citar?status.svg)](https://godoc.org/github.com/danieldk/citar)
[![Report card](http://goreportcard.com/badge/danieldk/citar)](http://goreportcard.com/report/danieldk/citar)
[![Build Status](https://travis-ci.org/danieldk/citar.svg?branch=master)](https://travis-ci.org/danieldk/citar)## Introduction
Citar is a part-of-speech tagger, based on a trigram Hidden Markov Model
(HMM). It (partly) implements the ideas set forth in [1]. It can be used
as a set of stand-alone programs and or from Go.## C++ Citar
The C++ version of Citar can be found is still
[available](https://github.com/danieldk/citar-cxx). Active maintenance
will proceed in Go. The choice to port Citar from C++ to Go was not made
lightly. However, I believe that switching to Go will ease maintenance,
lower the barrier for contributions, and improve cross-platform
support. Moreover, recent version of Go have made it easier to call Go
code from C.[1] TnT - a statistical part-of-speech tagger, Thorsten Brants, 2000