In the project, C # is used to annotate the English sentences, and the more mature English pos tagging software is stanford-parser. It's a C # version, and it's done with the IKVM java-c# conversion. The specific configuration steps are as follows:
1. Download Stanford-parser jar Package
Http://nlp.stanford.edu/software/lex-parser.shtml
2, download the C # version of the project
Https://github.com/sergey-tihon/Stanford.NLP.NET
Open samples
The next step is to add a reference. This can be done conveniently through nuget.
3. Download NuGet based on your VS version
Http://docs.nuget.org/consume/installing-nuget
4. Right-click on the project and select Manage NuGet packages
5, in the online search Stanford.NLP.Parser, if you can even click on the installation can
The various dependencies of the engineering configuration are then automatically installed, waiting for you.
6, in Main, modify the path to the extracted Stanford-parser jar package path can be
7. Successful operation
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Stanford-parser for C #