https://github.com/danieldk/citar
Raw File
Tip revision: 5402fd24cebfb1cd9ef0236fd120a1abd4c56b13 authored by Daniƫl de Kok on 29 August 2018, 10:39:17 UTC
Travis-CI: build against newer Go versions.
Tip revision: 5402fd2
doc.go
// Copyright 2016 The Citar Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Package citar provides an HMM part-of-speech tagger.
//
// citar is a package that provides an Hidden Markov Model part-of-speech
// tagger. The tagger can be used as a set of command-line utilities or
// as a Go package for integration in Go applications.
//
// The architecture of this tagger is inspired by Thorsten Brants' TnT tagger:
// TnT: A Statistical Part-of-Speech Tagger, Thorsten Brants, Proceedings of
// the sixth conference on Applied natural language processing, ANLC '00
package citar
back to top