Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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