├── .gitignore ├── README.md ├── counter ├── Makefile ├── counter.go └── counter_test.go ├── examples ├── maxent │ ├── Makefile │ ├── main.go │ └── maxent.go └── naivebayes │ ├── .gitignore │ ├── Makefile │ ├── main.go │ └── naivebayes.go ├── features ├── Makefile └── words.go ├── frozencounter ├── Makefile ├── blas.go ├── countervector.go ├── frozencounter.go └── keyset.go ├── gnlp ├── Makefile └── common.go ├── minimizer ├── Makefile └── gradient_descent.go ├── smoothing ├── Makefile ├── README.md └── smoothing.go └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/README.md -------------------------------------------------------------------------------- /counter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/counter/Makefile -------------------------------------------------------------------------------- /counter/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/counter/counter.go -------------------------------------------------------------------------------- /counter/counter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/counter/counter_test.go -------------------------------------------------------------------------------- /examples/maxent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/examples/maxent/Makefile -------------------------------------------------------------------------------- /examples/maxent/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/examples/maxent/main.go -------------------------------------------------------------------------------- /examples/maxent/maxent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/examples/maxent/maxent.go -------------------------------------------------------------------------------- /examples/naivebayes/.gitignore: -------------------------------------------------------------------------------- 1 | naivebayes 2 | -------------------------------------------------------------------------------- /examples/naivebayes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/examples/naivebayes/Makefile -------------------------------------------------------------------------------- /examples/naivebayes/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/examples/naivebayes/main.go -------------------------------------------------------------------------------- /examples/naivebayes/naivebayes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/examples/naivebayes/naivebayes.go -------------------------------------------------------------------------------- /features/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/features/Makefile -------------------------------------------------------------------------------- /features/words.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/features/words.go -------------------------------------------------------------------------------- /frozencounter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/frozencounter/Makefile -------------------------------------------------------------------------------- /frozencounter/blas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/frozencounter/blas.go -------------------------------------------------------------------------------- /frozencounter/countervector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/frozencounter/countervector.go -------------------------------------------------------------------------------- /frozencounter/frozencounter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/frozencounter/frozencounter.go -------------------------------------------------------------------------------- /frozencounter/keyset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/frozencounter/keyset.go -------------------------------------------------------------------------------- /gnlp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/gnlp/Makefile -------------------------------------------------------------------------------- /gnlp/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/gnlp/common.go -------------------------------------------------------------------------------- /minimizer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/minimizer/Makefile -------------------------------------------------------------------------------- /minimizer/gradient_descent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/minimizer/gradient_descent.go -------------------------------------------------------------------------------- /smoothing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/smoothing/Makefile -------------------------------------------------------------------------------- /smoothing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/smoothing/README.md -------------------------------------------------------------------------------- /smoothing/smoothing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/smoothing/smoothing.go -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuance/go-nlp/HEAD/test.sh --------------------------------------------------------------------------------