KO
|
EN
gitlite — search
Search
#python
#react
#javascript
#typescript
#android
#flutter
#nodejs
#go
#dart
#library
#swift
#python3
SimpleNetNlp
★ 48
Open GitHub ↗
.NET NLP library
Download README (.md)
Explore Similar Repositories
unity-animation-engine
:
Unity Animation Engine by Playable API
raftman
:
A syslog server with integrated full text search via a JSON API and Web UI
FCN-GoogLeNet
:
GoogLeNet implementation of Fully Convolutional Networks for Semantic Segmentation in TensorFlow
ember-cli-cjs-transform
:
No description available.
WifiDisplaySink
:
A wifi display sink
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
SimpleNetNlp
?
Download (.md)
# SimpleNetNlp [](https://www.nuget.org/packages/SimpleNetNlp/) [](https://stand-with-ukraine.pp.ua) Project is archived and will not receive any functionality updates. You can use it AS IS or consider other SOTA alternatives. <hr> SimpleNetNlp is a simple, C#-way wrapper for [Stanford CoreNLP](https://github.com/stanfordnlp/CoreNLP/) that based on [Stanford.NLP.NET](https://github.com/sergey-tihon/Stanford.NLP.NET). ## Quick Start Just install the main SimpleNetNlp package and the model packages you need... ``` Install-Package SimpleNetNlp Install-Package SimpleNetNlp.Models.PosTagger ``` ...and use it. ```C# using SimpleNetNlp; ... var sentence = new Sentence("Your sentence should go here."); var words = sentence.Words; var lemmas = sentence.Lemmas(); var pos = sentence.PosTags(); ``` ## Features 1. **Simple.** SimpleNetNlp is based on [Simple CoreNLP API](https://stanfordnlp.github.io/CoreNLP/simple.html) that provides a simple API for users who do not need a lot of customization. If you want to start working with NLP as fast and easily as possible, and do not care about the details of the behaviors of the algorithms, this package is perfect for you. 2. **C#-way.** SimpleNetNlp provides a 100% C# API without Java classes. Use the Force of LINQ and other C# magic, Luke! 3. **Clean Namespaces.**. IKVM.NET and Stanford.NLP.NET are delivered as content, so available namespaces in your project aren't littered with Java namespaces. 4. **Model Packages.** The large 'Stanford CoreNLP Models' Java package is split into [small Nuget packages](https://github.com/yakivyusin/SimpleNetNlp.Models), one per feature. Just install individual models for your task. ## Versioning The first three digits of the version of any package match the version of Stanford CoreNLP in use. The last fourth digit is used for numbering the own package releases. With the transition to the new version of Stanford CoreNLP, this digit is reset to 0. E.g., v.3.8.0.7 is the 8th release with Stanford CoreNLP v.3.8.0 used. Since only one digit is used for the library's own releases, its change can mean major changes as well. When updating the used library version, please always refer to the release notes. The first three digits of the installed main SimpleNetNlp package and model packages must match (ie, use the same version of Stanford CoreNLP). The fourth digits may not match because each package can be released and updated separately, but for model packages among releases with the same three digits, it is recommended to use the versions with the highest fourth digits. ## NLP Methods <-> Model Packages Different NLP features require different model packages to be installed, in addition to the main SimpleNetNlp package. All properties and methods of standard C# interfaces (like `Equals()` or `ToString()`) don't require additional model packages - you can start using them immediately without any worries. When you call a method without installing the required model packages, the `SimpleNetNlp.Exceptions.MissingModelException` exception will be thrown. The model-dependent APIs are listed below. In addition, each method has a description of the required model packages in XML-doc. ### `Document` class | Method | Packages | |--------|----------| | `Coref()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Ner/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Kbp/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.DeterministicCoref/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Coref/) | ### `Sentence` class | Method | Packages | |--------|----------| | `Lemmas()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/) | | `NerTags()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Ner/) | | `PosTags()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/) | | `OpenIe()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Naturalli/) | | `Governors()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/) | | `IncomingDependencyLabels()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/) | | `Sentiment()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.LexParser/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Sentiment/) | | `Mentions()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Ner/) | | `Kbp()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Ner/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Kbp/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.DeterministicCoref/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Coref/) | | `Coref()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Ner/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Kbp/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.DeterministicCoref/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Coref/) | | `Operators()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/) | | `NaturalLogicPolarities()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/) | ### `SentenceAlgorithms` class | Method | Packages | |--------|----------| | `HeadOfSpan()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/) | | `KeyphraseSpans()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/) | | `Keyphrases()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/) | | `DependencyPathBetween()` | [](https://www.nuget.org/packages/SimpleNetNlp.Models.PosTagger/)<br>[](https://www.nuget.org/packages/SimpleNetNlp.Models.Parser/) |