Questions tagged [sharpnlp]

SharpNLP is a collection of natural language processing tools written in C#

Ref: http://sharpnlp.codeplex.com/

Currently it provides the following NLP tools:

  • a sentence splitter
  • a tokenizer
  • a part-of-speech tagger
  • a chunker (used to "find non-recursive syntactic annotations such as noun phrase chunks")
  • a parser
  • a name finder
  • a coreference tool
  • an interface to the WordNet lexical database
9 questions
4
votes
1 answer

cannot install "LemmatizerPrebuiltCompact" library for .net - visual studio error

I am trying to use Lemmatizer in my asp.net code (c#). To do that, I should install 4 libraries, which are: LemmaSharp, LemmaSharpPrebuilt, Lzma# and LemmatizerPrebuiltCompact I had found the first 3 libraries on NuGet, but I can't find…
3
votes
1 answer

Can Stanford-NLP detect interrogative sentence

I have been doing some basic tweaking with Stanford-NLP for last few days. I have read about Link Grammar too. If anyone have used any of these libraries, is it possible to detect interrogative sentence using any of them? Currently I am stuck in…
Nilay Vishwakarma
  • 3,105
  • 1
  • 27
  • 48
2
votes
1 answer

Recognize Tenses in English Sentence by using SharpNLP

In my assignment, here I use SharpNLP to define part of speech, like noun, adjective, verb and so on. Then, i wanna classify sentence based on kind of tenses, firstly in this case, PAST TENSE as example. Let see my code.. listSentence =…
1
vote
1 answer

Natural Language Process using SharpNLP with a sample

I am really new to C# and want to do a NLP project using SharpNLP. I know Currently it provides the following NLP tools: sentence splitter tokenizer part-of-speech tagger chunker parser name finder coreference tool interface to the WordNet lexical…
Olivia
  • 67
  • 9
1
vote
1 answer

Using Clear parser for semantic role labeling

I want to use the Clear Parser for extract semantic role label of the input sentence. I downloaded the jar file here but I don't know how to use this jar file. I search on the web but there isn't good guideline for using it. Please help me to solve…
SahelSoft
  • 615
  • 2
  • 9
  • 22
0
votes
1 answer

How can I use 10 folds cross validation in Stanford relation extraction (custom relation extraction model)

How can I use 10 folds cross validation in Stanford relation extraction. I created a custom relation extraction model ,and I need to evaluate this model
0
votes
1 answer

Parsing a sentence with SharpNL & en-parser-chunking.bin

Using SharpNL and OpenNLP's en-parser-chunking.bin, I'm attempting to parse a sentence into a tree. One of SharpNL's tests shows that, given a model, you can parse a sentence as follows: var model = SharpNL.Parser.TreeInsert.Parser.Train("en",…
user655321
  • 1,572
  • 2
  • 16
  • 33
0
votes
1 answer

How can I use SharpNLP to detect the possibility that a line of text is a sentence?

I've written a small C# program that compiles a bunch of words into a line of text and I want to use NLP only to give me a percentage possibility that the bunch of words is a sentence. I don't need tokens, or tagging, all that can be in the…
user3530692
  • 11
  • 1
  • 3
-1
votes
1 answer

How to identify Coreference set and representative mentions in Stanford CoreNLP Coreferences?

I am using Stanford CoreNLP. I need to detect and identify the "Coreference set"s and "representative mention"s for each CorefChain in my input text: For example: Input: Obama was elected to the Illinois state senate in 1996 and served there for…
Ismail
  • 1
  • 1