Git Product home page Git Product logo

stanford.nlp.net's Introduction

Build Status

Stanford.NLP for .NET

Stanford.NLP for .NET is a port of Stanford NLP distributions to .NET.

This project contains build scripts that recompile Stanford NLP .jar packages to .NET assemblies using IKVM.NET, tests that help to be sure that recompiled packages are workable and Stanford.NLP for .NET documentation site that hosts samples for all packages. All recompiled packages are available on NuGet.

Master package

  • NuGet Badge - Stanford.NLP.CoreNLP

Other packages

  • NuGet Badge - Stanford.NLP.NER
  • NuGet Badge - Stanford.NLP.Parser
  • NuGet Badge - Stanford.NLP.POSTagger
  • NuGet Badge - Stanford.NLP.Segmenter

Versioning

Versioning model used for NuGet packages is aligned to versioning used by Stanford NLP Group. For example, if you get Stanford CoreNLP distribution from Stanford NLP site with version 3.3.1, then the NuGet version of this package has a version 3.3.1.x, where x is the greatest that is available on NuGet. Last number is used for internal versioning of .NET assemblies.

Licensing of the code/content of this repo

The source code of this repo(build scripts, integration tests, docs and samples) under the MIT license.

Licensing of NuGet packages

All these software distributions are open source, licensed under the GNU General Public License (v2 or later). Note that this is the full GPL, which allows many free uses, but does not allow its incorporation into any type of distributed proprietary software, even in part or in translation. Commercial licensing is also available; please contact The Stanford Natural Language Processing Group if you are interested.

stanford.nlp.net's People

Contributors

davidvadnais avatar forki avatar jayhill avatar pblasucci avatar ronnieholm avatar sergey-tihon avatar tpetricek avatar volhav avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

stanford.nlp.net's Issues

Object reference not set to an instance of an object issues (Dependency Parser)

Currently I'm building a web application to extract the subjects, predicates, and objects of the sentences with Stanford CoreNLP (Dependency Parser). My solution so far contains two projects, NLP (Console Application) and the WebApp (C# ASP.NET-MVC EF) itself.

I have a View called Create that contains an input text box and a button.

...
@using (Html.BeginForm("Create", "Text", FormMethod.Post))
{
     @Html.AntiForgeryToken()
     @Html.ValidationSummary(true)

     @Html.TextBoxFor(Model => Model.Sentence, new)
     @Html.ValidationMessageFor(Model => Model.Sentence)

     <input type="submit" value="Find">
}
..

It will parse the sentence to the Create function inside the TextController. Then the sentence will be passed to a function FindPOS in a class named DependencyParser.cs in the NLP project.

[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create (string Sentence)
{
     if (ModelState.IsValid)
     {
          DependencyParser dependencyParser = new DependencyParser();

          string[][] result;
          result = dependencyParser.FindPOS(Sentence);
     }
}

This FindPOS function will return an array of string of a processed sentence (Subject, Predicate, Object). This code is a purely from your code Stanford NLP Parser for .NET, so I just copy-paste it to this function.

public string[][] FindPOS(string Sentence)
{
     var jarRoot = @"stanford-corenlp-full-2015-12-09\models";
     var modelsDirectory = jarRoot + @"\edu\stanford\nlp\models";

     // Loading english PCFG parser from file
     var lp = LexicalizedParser.loadModel(modelsDirectory + @"\lexparser\englishPCFG.ser.gz");

     // This option shows loading and using an explicit tokenizer
     var tokenizerFactory = PTBTokenizer.factory(new CoreLabelTokenFactory(), "");
     var sentReader = new java.io.StringReader(Sentence);
     var rawWords = tokenizerFactory.getTokenizer(sentReader).tokenize();
     sentReader.close();
     var tree = lp.apply(rawWords);

     // Extract dependencies from lexical tree
     var tlp = new PennTreebankLanguagePack();
     var gsf = tlp.grammaticalStructureFactory();
     var gs = gsf.newGrammaticalStructure(tree);
     var tdl = gs.typedDependenciesCCprocessed();

     //.. my logic to find Subject Predicate Object below here ..//
}

After I compile the solution, then I input sentence to the textbox (i.e. "My mother told me not to drink too much sugar water") and click the Find button in the page Create View, I got this following error: "Object reference not set to an instance of an object" in the line var tree = lp.apply(rawWords);

integratingissue

Why is this happened? I've already installed the NuGet package to the NLP project "Stanford CoreNLP" and downloaded the database of the Stanford CoreNLP from the official website and put it in the NLP project /bin/Debug. I've also already Added the Reference of the NLP project to the WebApp project and write the using NLP; in the TextController and I've already Debug if the sentence is passed or not to the FindPOS function (It's passed).

I've already tried to make the NLP project as the startup project then compile it as a Console Application, It works very well, nothing problem. It executes the jarRoot in the directory file bin/Debug.

Why does the jarRoot not executed when compiling the solution as the WebApp startup project? Or is it something wrong with the .NET Framework version? Both projects are in the same version, 4.5. Are there any solutions for this?

Thank you.

StanfordCoreNLP.annotate will hang with some input text.

Here is how StanfordCoreNLP is initialized.

        // Annotation pipeline configuration
        var props = new Properties();
        props.setProperty("annotators", "tokenize, ssplit, pos, parse, sentiment");
        props.setProperty("sutime.binders", "0");

        // Make sure the model files are extracted to the current directory from the .jar file.
        var nlp = new StanfordCoreNLP(props);
        Annotation annotation = new Annotation(text);         
        nlp.annotate(annotation);

The following (long) text input will hang StanfordCoreNLP.annotate call.

Process Start in Azure Website
ramiramilu&#39 s answer is actually not correct You can run any exe you want ([check this for example](https://github com/projectkudu/kudu/wiki/Kudu-console)) The problem you are hitting is not in running an exe it&#39 s something specific to wkhtml2pdf exe itself That exe uses a bunch of GDI+ calls on Windows for rendering the PDF and that is what&#39 s not allowed in Azure Websites sandbox (the GDI+ calls not running an exe)

Using a WebJob won&#39 t help either because WebJobs run in the same context as the site which means under the same sandbox

Edit:

There is nothing special to how you would launch an external process on Azure Websites than how you would do it normally with C# Again the problem you are facing is with wkhtml2pdf exe and not with the general concept of launching a process

Here is a sample that you can try that launches cmd exe and reads what is written on stdout

var processStartInfo = new ProcessStartInfo()
{
    Arguments = &quot /c echo \&quot test\&quot &quot  
    FileName = @&quot c:\windows\system32\cmd exe&quot  
    RedirectStandardOutput = true 
    UseShellExecute = false
} 

var process = Process Start(processStartInfo) 

using (var streamReader = new StreamReader(process StandardOutput BaseStream))
{
    ViewBag MessageFromExe = streamReader ReadToEnd() 
}

ViewBag MessageFromExe will have the value &quot test&quot you can verify that on your view and you can run that just fine in Azure Websites

Why so many warning and exceptions?

I follow the example and get the expected results, However, it takes a long time to get the expected results. Why?
http://sergey-tihon.github.io/Stanford.NLP.NET/StanfordParser.html

A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
The thread 0x47dc has exited with code 0 (0x0).
(ROOT
  (S
    (NP (DT This))
    (VP (VBZ is)
      (NP (DT an) (JJ easy) (NN sentence)))
    (. .)))
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll

[nsubj(sentence-4, This-1), cop(sentence-4, is-2), det(sentence-4, another-3), root(ROOT-0, sentence-4)]

A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
(ROOT
  (S
    (NP (DT This))
    (VP (VBZ is)
      (NP (DT another) (NN sentence)))
    (. .)))

nsubj(sentence-4, This-1)
cop(sentence-4, is-2)
det(sentence-4, another-3)
root(ROOT-0, sentence-4)


An unhandled exception of type 'System.StackOverflowException' occurred in IKVM.OpenJDK.Core.dll

I've got an error An unhandled exception of type 'System.StackOverflowException' occurred in IKVM.OpenJDK.Core.dll with this line code:
pipeline.annotate(annotation);

It works fine when I compile Stanford CoreNLP with ConsoleApp, but it's getting serious problem when I integrate it with WebApp. I'm using Visual Studio 2013. I've already marked up the Options -> Project and Solution -> Web Projects -> Use 64bit.. but it also does the same thing.

Any Ideas what's wrong with it? I use your code of Stanford CoreNLP.

        `var props = new Properties();
        props.setProperty("annotators", "tokenize, ssplit, parse");
        props.setProperty("ner.useSUTime", "false");

        // We should change current directory, so StanfordCoreNLP could find all the model files automatically
        var curDir = Environment.CurrentDirectory;
        Directory.SetCurrentDirectory(jarRoot);
        var pipeline = new StanfordCoreNLP(props);
        Directory.SetCurrentDirectory(curDir);

        // Annotation
        var annotation = new Annotation(text);
        pipeline.annotate(annotation);`

Is it something because of IIS? I don't use any separate IIS, I'm using IIS Express. Then tell me how to fix this problem with separated IIS. Or are there any other solutions?

Thank you,
Hendy Harf

Cannot load Models

I have tried to load the models for the new release as the the source code (very short, very undocumented) that is posted on the initial page states.
I have unziped the

and I can't get pos to work. when removing flags (to at least try to make this thing work) I can only get "tokenize" and "ssplit" to work. When I remove flags and get to "dcoref" I get the following message:

An unhandled exception of type 'java.lang.RuntimeException' occurred in stanford-corenlp-3.6.0.dll

Additional information: edu.stanford.nlp.io.RuntimeIOException: java.io.IOException: Unable to open "edu/stanford/nlp/models/dcoref/demonyms.txt" as class path, filename or URL

I am using the following code

    class Program
    {
        static void Main(string[] args)
        {
            // Path to the folder with models extracted from `stanford-corenlp-3.6.0-models.jar`
            var jarRoot = @"edu\stanford\nlp\models";

            // Text for processing
            var text = "Kosgi Santosh sent an email to Stanford University. He didn't get a reply.";

            // Annotation pipeline configuration
            var props = new Properties();
            //props.setProperty("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
            props.setProperty("annotators", "tokenize, ssplit, dcoref");
            props.setProperty("ner.useSUTime", "0");

            // We should change current directory, so StanfordCoreNLP could find all the model files automatically
            var curDir = Environment.CurrentDirectory;
            Directory.SetCurrentDirectory(jarRoot);
            var pipeline = new StanfordCoreNLP(props);
            Directory.SetCurrentDirectory(curDir);

            // Annotation
            var annotation = new Annotation(text);
            pipeline.annotate(annotation);

            // Result - Pretty Print
            using (var stream = new ByteArrayOutputStream())
            {
                pipeline.prettyPrint(annotation, new PrintWriter(stream));
                Console.WriteLine(stream.toString());
                stream.close();
            }

            Console.ReadLine();
        }
    }

The files are copied to my debug directory, no matter what I put on the jarRoot var, I keep getting errors or statements saying that some file is missing, or that a model could not be found.

can you give a simple walkthrough as to where is it that you copy the uncompressed jar file?
where do you get it from?
which jar file is the current one for this version of the engine?

Getting Annotation / Entity type for NER

So far so good except that I cannot figure out how to get access to the Entity value using the Named Entity Recognizer. I can access the original word using originalText() but the method to retrieve the Annotation/Entity just returns null:

        var classified = _classifier.classify("Hello my name is Adam and I like to play Football with my friends who are all from St Albans in Hertfordshire");
        List<ArrayList> list = CollectionExtensions.ToList<ArrayList>(classified);
        list.ForEach(item =>
        {
            var arr = item;
            foreach (CoreLabel i in arr)
            {
                string word = i.originalText();
                string entity = i.ner(); // e.g should be [LOCATION], but is null for everything
            }
        });

I'm successfully printing out everything to the screen using toShorterString() which produces this output:

[Value=Hertfordshire Text=Hertfordshire OriginalText=Hertfordshire CharacterOffsetBegin=96 CharacterOffsetEnd=109 Before= Position=21 After= Shape=Xxxxx GoldAnswer=null DistSim=493 Answer=LOCATION]

Having looked at the toString() implementation in the original Java source (http://grepcode.com/file/repo1.maven.org/maven2/edu.stanford.nlp/stanford-parser/3.3.1/edu/stanford/nlp/ling/CoreLabel.java?av=h#CoreLabel), the toString method uses the get() method, passing in type of Java.lang.Class:

.get(CoreAnnotations.TextAnnotation.class)

When I try to do this in C#, it doesn't let me. How can I implement this syntax in C#?

But for some reason there is no corresponding field for the ANSWER value shown in the output.

What is the correct method to return the relevant Entity Label?

Request to have C# samples

Hi Sergey,

Will be great if you can also have a counterpart C# samples alongside F#.
Much appreciated.

Cheers
Patrick

Issue on creating annotation on DateTime text Phase (e.g. last year)

Hi,

I'm experiencing the issue on creating annotation on DateTime text phase, e.g. 'Last year'. It works for other text except any DateTime text phase. The strange thing is it works under 'Debug' configuration, but not under 'Release' configuration.

I'm using Stanford.NLP.CoreNLP 3.5.2 version. I appreciate if you could shed some light on this.

The error message is below: ( This error was reported in this web page by user Antonio de Perio as well:
http://webcache.googleusercontent.com/search?q=cache:9v_lDNl4pkEJ:https://sergeytihon.wordpress.com/2013/10/26/stanford-corenlp-is-available-on-nuget-for-fc-devs/+&cd=3&hl=en&ct=clnk&gl=uk )

Provider com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl not found
IKVM.OpenJDK.XML.API
at javax.xml.transform.FactoryFinder.newInstance(Class , String , ClassLoader , Boolean , Boolean )
at javax.xml.transform.FactoryFinder.find(Class , String )
at javax.xml.transform.TransformerFactory.newInstance()
at edu.stanford.nlp.time.XMLUtils.printNode(OutputStream out, Node node, Boolean prettyPrint, Boolean includeXmlDeclaration)
at edu.stanford.nlp.time.XMLUtils.nodeToString(Node node, Boolean prettyPrint)
at edu.stanford.nlp.time.Timex.init(Element )
at edu.stanford.nlp.time.Timex..ctor(Element element)
at edu.stanford.nlp.time.Timex.fromMap(String text, Map map)
at edu.stanford.nlp.time.TimeExpressionExtractorImpl.toCoreMaps(CoreMap , List , TimeIndex )
at edu.stanford.nlp.time.TimeExpressionExtractorImpl.extractTimeExpressionCoreMaps(CoreMap annotation, String docDate, TimeIndex timeIndex)
at edu.stanford.nlp.time.TimeAnnotator.annotate(Annotation annotation)
at edu.stanford.nlp.pipeline.AnnotationPipeline.annotate(Annotation annotation)
at edu.stanford.nlp.pipeline.StanfordCoreNLP.annotate(Annotation annotation)
at MyApp.NLP.StanfordExtractor.Annotate(String text) in C:\MyApp\Source\NLP\StanfordExtractor.cs:line 288
at MyApp.NLP.StanfordExtractor.ExtractQueryTerms(String inputText) in C:\MyApp\Source\NLP\StanfordExtractor.cs:line 241
at ConsoleApplication1.Program.Main(String[] args) in C:\Users\MyUser\Documents\Visual Studio 2015\Projects\NLP\ConsoleApplication1\Program.cs:line 17
at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()

openie.resolve_coref bug in 3.6.0 release

The bug detailed here is also in the current Nuget release:
http://stackoverflow.com/questions/35921678/stanford-openie-with-option-openie-resolve-coref-dont-work

The stackoverflow post sounds like it's fixed on the Stanford GitHub head, but not yet in the official maven release. Do you do updates occasionally to the GitHub head, or do you only update when there's an official maven release?

If you don't plan to update to the GitHub head, could you please direct me at the ikvm build script you use to convert the jar in to your Stanfor.Nlp.Net DLL?

I've used ikvm before, but I want to make sure I get all of the dependencies rolled in to the DLL correctly if there are things other than just the one stanford-corenlp.jar that need conversion.
Thank you.

dependency parser problem in asp.net app

Everthing works fine with all annotators in console application but I got this exception when I try on asp.net mvc.
If I remove depparse it works. So the problem is depparse on asp.net or it is same for parse annotator too.

Is there any setting I need to change ?

image

The code is as follows:

`

var jarRoot = @"D:\Projects\nlp\stanford-corenlp-full-2015-12-09\stanford-corenlp-3.6.0-models";

        var text = "For the month of January, I've resolved to attempt to wean myself off sugar's toxic allure.";

        var props = new Properties();
        props.setProperty("annotators", "tokenize, ssplit, pos, lemma, depparse"); //not working : coref, mention
        //props.setProperty("annotators", "tokenize, ssplit, pos, depparse, lemma, ner, parse, dcoref"); //not working : coref, mention
        props.setProperty("ner.useSUTime", "0");

        // We should change current directory, so StanfordCoreNLP could find all the model files automatically
        var curDir = Environment.CurrentDirectory;
        Directory.SetCurrentDirectory(jarRoot);
        var pipeline = new StanfordCoreNLP(props);
        Directory.SetCurrentDirectory(curDir);

        System.Console.WriteLine("Setting configuration complated");

        // Annotation
        var document = new Annotation(text);
        pipeline.annotate(document);`

Loading Sample Models from relative web location(ASP.NET Web API OWIN 2.0) - C# -- What Now?

I have been attempting to load the default models I pulled from the suggested ZIP file. Generally, I am loading the annotation into a singleton at the application level so the resources can be shared across all sessions. (in WebAPI OWIN Startup, this is being called from startup.cs).

Trying other methods with relative path references, I was getting this error:

unable to resolve "edu/stanford/nlp/models/pos-tagger/english-left3words/english-left3words-distsim.tagger" as either class path, filename or URL

I am not sure if I am getting closer to or further from a solution.

This is at the root directory of my ASP.NET WebAPI Project:
image

However, I am getting the error:

Unhandled Execution Error

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: java.lang.reflect.InvocationTargetException: 

Source Error: 


Line 43:                 // We should change current directory, so StanfordCoreNLP could find all the model files automatically
Line 44:                 Directory.SetCurrentDirectory(HostingEnvironment.MapPath(ModelLocation));
Line 45:                 pipeline = new StanfordCoreNLP(props);
Line 46:             }
Line 47:             finally

Source File: D:\dev\OTAP\OTAP.API\NLP.cs    Line: 45 

Stack Trace: 


[InvocationTargetException]
   __<Invoker>(Object[] ) +444
   FastConstructorAccessorImpl.newInstance(Object[] args) +28
   java.lang.reflect.Constructor.newInstance(Object[] initargs, CallerID ) +133
   edu.stanford.nlp.util.ClassFactory.createInstance(Object[] params) +108

[ClassCreationException: MetaClass couldn't create public edu.stanford.nlp.time.TimeExpressionExtractorImpl(java.lang.String,java.util.Properties) with args [sutime, {}]]
   edu.stanford.nlp.util.ClassFactory.createInstance(Object[] params) +372
   edu.stanford.nlp.util.MetaClass.createInstance(Object[] objects) +34
   edu.stanford.nlp.util.ReflectionLoading.loadByReflection(String className, Object[] arguments) +71

[ReflectionLoadingException: Error creating edu.stanford.nlp.time.TimeExpressionExtractorImpl]
   edu.stanford.nlp.util.ReflectionLoading.loadByReflection(String className, Object[] arguments) +232
   edu.stanford.nlp.time.TimeExpressionExtractorFactory.create(String className, String name, Properties props) +80
   edu.stanford.nlp.time.TimeExpressionExtractorFactory.createExtractor(String name, Properties props) +34
   edu.stanford.nlp.ie.regexp.NumberSequenceClassifier..ctor(Properties props, Boolean useSUTime, Properties sutimeProps) +57
   edu.stanford.nlp.ie.NERClassifierCombiner..ctor(Boolean applyNumericClassifiers, Boolean useSUTime, Properties nscProps, String[] loadPaths) +129
   edu.stanford.nlp.pipeline.AnnotatorImplementations.ner(Properties properties) +454
   edu.stanford.nlp.pipeline.6.create() +46
   edu.stanford.nlp.pipeline.AnnotatorPool.get(String name) +163
   edu.stanford.nlp.pipeline.StanfordCoreNLP.construct(Properties , Boolean , AnnotatorImplementations ) +555
   edu.stanford.nlp.pipeline.StanfordCoreNLP..ctor(Properties props, Boolean enforceRequirements) +55
   edu.stanford.nlp.pipeline.StanfordCoreNLP..ctor(Properties props) +76
   OTAP.API.NLP.Start(String modelLocation) in D:\dev\OTAP\OTAP.API\NLP.cs:45
   OTAP.API.Startup.Configuration(IAppBuilder app) in D:\dev\OTAP\OTAP.API\Startup.cs:16

[TargetInvocationException: Exception has been thrown by the target of an invocation.]
   System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) +0
   System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) +128
   System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) +146
   Owin.Loader.<>c__DisplayClass12.<MakeDelegate>b__b(IAppBuilder builder) +93
   Owin.Loader.<>c__DisplayClass1.<LoadImplementation>b__0(IAppBuilder builder) +209
   Microsoft.Owin.Host.SystemWeb.OwinAppContext.Initialize(Action`1 startup) +843
   Microsoft.Owin.Host.SystemWeb.OwinBuilder.Build(Action`1 startup) +51
   Microsoft.Owin.Host.SystemWeb.OwinHttpModule.InitializeBlueprint() +101
   System.Threading.LazyInitializer.EnsureInitializedCore(T& target, Boolean& initialized, Object& syncLock, Func`1 valueFactory) +141
   Microsoft.Owin.Host.SystemWeb.OwinHttpModule.Init(HttpApplication context) +172
   System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers) +618
   System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context) +172
   System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context) +419
   System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext) +343

[HttpException (0x80004005): Exception has been thrown by the target of an invocation.]
   System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +579
   System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +120
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +712

Here is the code I have.

public partial class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            ConfigureAuth(app);
            NLP.Start();
        }
    }
public static class NLP
    {
        private static string _modelLocation = @"~\NLPModels";
        public static string ModelLocation
        {
            set
            {
                NLP.Start(value);
            }
            get
            {
                return _modelLocation;
            }
        }
        private static StanfordCoreNLP pipeline;
        public static void Start(string modelLocation = null)
        {
            var curDir = Environment.CurrentDirectory;
            if (!string.IsNullOrEmpty(modelLocation))
            {
                _modelLocation = modelLocation;
            }
            try
            {
                // Annotation pipeline configuration
                var props = new Properties();
                props.setProperty("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
                props.setProperty("sutime.binders", "0");

                // We should change current directory, so StanfordCoreNLP could find all the model files automatically
                Directory.SetCurrentDirectory(HostingEnvironment.MapPath(ModelLocation));
                pipeline = new StanfordCoreNLP(props);
            }
            finally
            {
                Directory.SetCurrentDirectory(curDir);
            }
        }

        public static JObject ProcessText(string text)
        {
            var annotation = new Annotation(text);
            using (java.io.StringWriter writer = new java.io.StringWriter())
            {
                pipeline.jsonPrint(annotation, writer);
                return JObject.Parse(writer.toString());
            }
        }
    }

An unhandled exception of type 'System.TypeInitializationException' occurred

Hello, I am trying to run through your example code, and I ran into this error:
An unhandled exception of type 'System.TypeInitializationException' occurred in stanford-corenlp-3.5.2.dll
Additional information: The type initializer for 'edu.stanford.nlp.util.Timing' threw an exception
I copied your example exactly, and I am using 3.5.2. What could I be doing wrong?

Exception when running text annotation sample

When I try to run the sample from http://sergey-tihon.github.io/Stanford.NLP.NET/StanfordCoreNLP.html,
I got the following error in FSharp Interactive:

--> Referenced 'E:\Temp\StanfNLP\packages\IKVM\lib\IKVM.OpenJDK.Core.dll'

--> Referenced 'E:\Temp\StanfNLP\packages\IKVM\lib\IKVM.OpenJDK.Util.dll'

--> Referenced 'E:\Temp\StanfNLP\packages\Stanford.NLP.CoreNLP\lib\stanford-corenlp-3.5.2.dll'

Adding annotator tokenize
TokenizerAnnotator: No tokenizer type provided. Defaulting to PTBTokenizer.
Adding annotator ssplit
Adding annotator pos
Binding session to 'E:\Temp\StanfNLP\packages\IKVM\lib\IKVM.OpenJDK.Util.dll'...
System.TypeInitializationException: The type initializer for 'edu.stanford.nlp.util.Timing' threw an exception. ---> System.IO.FileNotFoundException: Could not load file or assembly 'IKVM.OpenJDK.Text, Version=8.0.5449.1, Culture=neutral, PublicKeyToken=13235d27fcbfff58' or one of its dependencies. The system cannot find the file specified.
   at edu.stanford.nlp.util.Timing..cctor()
   --- End of inner exception stack trace ---
   at edu.stanford.nlp.util.Timing..ctor()
   at edu.stanford.nlp.tagger.maxent.MaxentTagger.readModelAndInit(Properties config, DataInputStream rf, Boolean printLoading)
   at edu.stanford.nlp.tagger.maxent.MaxentTagger.readModelAndInit(Properties config, String modelFileOrUrl, Boolean printLoading)
   at edu.stanford.nlp.tagger.maxent.MaxentTagger..ctor(String modelFile, Properties config, Boolean printLoading)
   at edu.stanford.nlp.tagger.maxent.MaxentTagger..ctor(String modelFile)
   at edu.stanford.nlp.pipeline.POSTaggerAnnotator.loadModel(String , Boolean )
   at edu.stanford.nlp.pipeline.POSTaggerAnnotator..ctor(String annotatorName, Properties props)
   at edu.stanford.nlp.pipeline.AnnotatorImplementations.posTagger(Properties properties)
   at edu.stanford.nlp.pipeline.AnnotatorFactories.4.create()
   at edu.stanford.nlp.pipeline.AnnotatorPool.get(String name)
   at edu.stanford.nlp.pipeline.StanfordCoreNLP.construct(Properties , Boolean , AnnotatorImplementations )
   at edu.stanford.nlp.pipeline.StanfordCoreNLP..ctor(Properties props, Boolean enforceRequirements)
   at edu.stanford.nlp.pipeline.StanfordCoreNLP..ctor(Properties props)
   at <StartupCode$FSI_0002>.$FSI_0002.main@() in E:\Temp\StanfNLP\annotation.fsx:line 25
Stopped due to error

I've downloaded packages with Paket and extracted the models dir from the stanford-corenlp-3.5.2-models.jar.

Am I missing something?

Thanks in advance.

Coreference resolution always Null when emulating PrettyPrint

First off: great work with the port

I'm running into an issue with correference resolution: I'm trying to produce the same output as prettyPrint and I'm almost there ... but struggling with outputting the correference line at the end:

Coreference set:
        (2,1,[1,2]) -> (1,1,[1,2]), that is: "She" -> "Jane"

For the record I can get other annotations fine. But am running into some issues:
Map<Integer, CorefChain> graph = document.get(CorefChainAnnotation.class);
is the way to instantiate the graph in java but in .NET under IKVM there is no straightforward mapping to .NET generics.

So I'm trying it this way:

public class Indexer
{
    private string _nlpModelPath;
    private StanfordCoreNLP _pipeline;

    public Indexer(string modeldir)
    {
        // Set our path to stanford toolkit
        _nlpModelPath = modeldir;

        // NLP: Setup the annotation pipeline configuration
        var props = new Properties();

        props.setProperty("annotators", "tokenize, ssplit, pos, lemma, parse, ner, mention, coref");
        // props.setProperty("annotators", "tokenize, ssplit, pos, lemma, parse, ner, dcoref");
        props.setProperty("dcoref.score", "1");
        props.setProperty("ner.useSUTime", "0");

        // We should change current directory, so StanfordCoreNLP could find all the model files automatically
        var curDir = Environment.CurrentDirectory;
        Directory.SetCurrentDirectory(_nlpModelPath);
        _pipeline = new StanfordCoreNLP(props);

        // Change it back now we're done.
        Directory.SetCurrentDirectory(curDir);
    }


    public void IndexNLPText()
    {
        // Text for processing
    var text  = "Jane went to the store. She was purchasing bread.";

        // Annotation
        Annotation annotation = new Annotation(text);
        _pipeline.annotate(annotation);

        CorefCoreAnnotations.CorefChainAnnotation coref = new CorefCoreAnnotations.CorefChainAnnotation();
        var graph = annotation.get(coref.getClass());
        Console.WriteLine(graph); 

        //iterator it = graph.entryset().iterator();
        //while (it.hasnext())
        //{
        //    map.entry kvpair = (map.entry)it.next();
        //    console.writeline(kvpair.getkey() + " = = " + kvpair.getvalue());
        //    it.remove();
        //}

        var sentences = annotation.get(new CoreAnnotations.SentencesAnnotation().getClass()) as ArrayList;
        foreach (CoreMap sentence in sentences)
        {
            var tokens = sentence.get(new CoreAnnotations.TokensAnnotation().getClass()) as ArrayList;
            foreach (CoreLabel token in tokens)
            {
                var tword = token.get(new CoreAnnotations.TextAnnotation().getClass());
                var tpos = token.get(new CoreAnnotations.PartOfSpeechAnnotation().getClass());
                var tner = token.get(new CoreAnnotations.NamedEntityTagAnnotation().getClass());
                var tnormalizedner = token.get(new CoreAnnotations.NormalizedNamedEntityTagAnnotation().getClass());
                Console.WriteLine("{0} \t[pos={1}; \tner={2}; \tnormner={3}", tword, tpos, tner, tnormalizedner);
            }

            var tsemgraph = sentence.get(new SemanticGraphCoreAnnotations.CollapsedDependenciesAnnotation().getClass()) as SemanticGraph;

            foreach (SemanticGraphEdge edge in tsemgraph.edgeListSorted().toArray())
            {
                var gov = edge.getGovernor();
                var dep = edge.getDependent();
                Console.WriteLine("{0} \t ({1}-{2},{3}-{4})", edge.getRelation(), gov.word(), gov.index(), dep.word(), dep.index());
            }

        }

        //// Pretty Print
        using (var stream = new ByteArrayOutputStream())
        {
            _pipeline.prettyPrint(annotation, new PrintWriter(stream));
            Console.WriteLine(stream.toString());
            stream.close();
        }

    }
}

'

Meanwhile prettyPrint seems to output correferences just fine - heres the output:

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Reading POS tagger model from edu/stanford/nlp/models/pos-tagger/english-left3words/english-left3words-distsim.tagger ... done [3.1 sec].
done [1.5 sec].
Loading classifier from \bin\Data\model\stanford-corenlp-3.6.0-models\edu\stanford\nlp\models\ner\english.all.3class.distsim.crf.ser.gz ... done [4.7 sec].
Loading classifier from \bin\Data\model\stanford-corenlp-3.6.0-models\edu\stanford\nlp\models\ner\english.muc.7class.distsim.crf.ser.gz ... done [2.5 sec].
Loading classifier from \bin\Data\model\stanford-corenlp-3.6.0-models\edu\stanford\nlp\models\ner\english.conll.4class.distsim.crf.ser.gz ... done [2.4 sec].
Using mention detector type: rule

Jane    [pos=NNP;       ner=PERSON;     normner=        coref=
went    [pos=VBD;       ner=O;  normner=        coref=
to      [pos=TO;        ner=O;  normner=        coref=
the     [pos=DT;        ner=O;  normner=        coref=
store   [pos=NN;        ner=O;  normner=        coref=
.       [pos=.;         ner=O;  normner=        coref=
nsubj    (went-2,Jane-1)
case     (store-5,to-3)
det      (store-5,the-4)
nmod:to          (went-2,store-5)
punct    (went-2,.-6)
She     [pos=PRP;       ner=O;  normner=        coref=
was     [pos=VBD;       ner=O;  normner=        coref=
purchasing      [pos=VBG;       ner=O;  normner=        coref=
bread   [pos=NN;        ner=O;  normner=        coref=
.       [pos=.;         ner=O;  normner=        coref=
nsubj    (purchasing-3,She-1)
aux      (purchasing-3,was-2)
dobj     (purchasing-3,bread-4)
punct    (purchasing-3,.-5)
Jane went to the store.
She was purchasing bread.

Sentence #1 (6 tokens):
Jane went to the store.
[Text=Jane CharacterOffsetBegin=0 CharacterOffsetEnd=4 PartOfSpeech=NNP Lemma=Jane NamedEntityTag=PERSON]
[Text=went CharacterOffsetBegin=5 CharacterOffsetEnd=9 PartOfSpeech=VBD Lemma=go NamedEntityTag=O]
[Text=to CharacterOffsetBegin=10 CharacterOffsetEnd=12 PartOfSpeech=TO Lemma=to NamedEntityTag=O]
[Text=the CharacterOffsetBegin=13 CharacterOffsetEnd=16 PartOfSpeech=DT Lemma=the NamedEntityTag=O]
[Text=store CharacterOffsetBegin=17 CharacterOffsetEnd=22 PartOfSpeech=NN Lemma=store NamedEntityTag=O]
[Text=. CharacterOffsetBegin=22 CharacterOffsetEnd=23 PartOfSpeech=. Lemma=. NamedEntityTag=O]
(ROOT
  (S
    (NP (NNP Jane))
    (VP (VBD went)
      (PP (TO to)
        (NP (DT the) (NN store))))
    (. .)))

root(ROOT-0, went-2)
nsubj(went-2, Jane-1)
case(store-5, to-3)
det(store-5, the-4)
nmod:to(went-2, store-5)
punct(went-2, .-6)

Sentence #2 (5 tokens):
She was purchasing bread.
[Text=She CharacterOffsetBegin=24 CharacterOffsetEnd=27 PartOfSpeech=PRP Lemma=she NamedEntityTag=O]
[Text=was CharacterOffsetBegin=28 CharacterOffsetEnd=31 PartOfSpeech=VBD Lemma=be NamedEntityTag=O]
[Text=purchasing CharacterOffsetBegin=32 CharacterOffsetEnd=42 PartOfSpeech=VBG Lemma=purchase NamedEntityTag=O]
[Text=bread CharacterOffsetBegin=43 CharacterOffsetEnd=48 PartOfSpeech=NN Lemma=bread NamedEntityTag=O]
[Text=. CharacterOffsetBegin=48 CharacterOffsetEnd=49 PartOfSpeech=. Lemma=. NamedEntityTag=O]
(ROOT
  (S
    (NP (PRP She))
    (VP (VBD was)
      (VP (VBG purchasing)
        (NP (NN bread))))
    (. .)))

root(ROOT-0, purchasing-3)
nsubj(purchasing-3, She-1)
aux(purchasing-3, was-2)
dobj(purchasing-3, bread-4)
punct(purchasing-3, .-5)

Coreference set:
        (2,1,[1,2]) -> (1,1,[1,2]), that is: "She" -> "Jane"

So it doesn't seem like its missing the model or anything. Am I using the wrong Annotator? Wrong pipeline properties?

Environment: Using Visual Studio 2015 with the nuget package on a standard console program.

Timex not converting to actual time

I have the following code:

// Path to the folder with models extracted from `stanford-corenlp-3.6.0-models.jar`
var folderPath = HttpContext.Current.Server.MapPath("~/App_Data/stanford-corenlp-full-2015-12-09");
var modelsFolderPath = Path.Combine(folderPath, "models");
 
// SUTime configuration
var suTimeFolderPath = Path.Combine(folderPath, "sutime");
var suTimeRules = new[] { "defs.sutime.txt""english.holidays.sutime.txt""english.sutime.txt" }.Select(suTimeRule => Path.Combine(suTimeFolderPath, suTimeRule));
 
var coreProperties = new Properties();
coreProperties.setProperty("annotators", requestProperties.Annotators);
coreProperties.setProperty("date"DateTime.Parse(requestProperties.Date).ToShortDateString());
// http://stanfordnlp.github.io/CoreNLP/ner.html
coreProperties.setProperty("ner.useSUTime""true");
//http://nlp.stanford.edu/software/sutime.shtml
coreProperties.setProperty("sutime.rules"string.Join(",", suTimeRules));
coreProperties.setProperty("sutime.binders""0");
//coreProperties.setProperty("sutime.markTimeRanges", "true");
 
// We should change current directory, so StanfordCoreNLP could find all the model files automatically
var curDir = Environment.CurrentDirectory;
Directory.SetCurrentDirectory(modelsFolderPath);
var pipeline = new StanfordCoreNLP(coreProperties);
Directory.SetCurrentDirectory(curDir);
 
var props = new Properties();
props.setProperty("sutime.rules"string.Join(",", suTimeRules));
props.setProperty("sutime.binders""0");
 
pipeline.addAnnotator(new TimeAnnotator("sutime", props));
 
var decodedValue = HttpUtility.UrlDecode(value);
var annotation = new Annotation(decodedValue);
annotation.set(new CoreAnnotations.DocDateAnnotation().getClass(), DateTime.Parse(requestProperties.Date).ToShortDateString());
pipeline.annotate(annotation);
 
using (var stream = new ByteArrayOutputStream())
{
    using (var printWriter = new PrintWriter(stream))
    {
        pipeline.jsonPrint(annotation, printWriter);
        return Ok(JsonConvert.DeserializeObject(stream.toString()));
    }
}

Call with the following properies:
{ "annotators": "tokenize,ssplit,pos,parse,depparse,lemma,ner", "date": "2016-07-30T20:13:22.157Z" }

And tokens like so:
"tokens": [ { "index": 1, "word": "now", "originalText": "now", "lemma": "now", "characterOffsetBegin": 0, "characterOffsetEnd": 3, "pos": "RB", "ner": "DATE", "normalizedNER": "PRESENT_REF", "before": "", "after": "", "timex": { "tid": "t1", "type": "DATE", "value": "PRESENT_REF" } } ]

With text: Now

Why is 'PRESENT_REF' not converted to the actual time?

Thanks to anyone for any assistance!

Please distribute c# console projects running the different samples

I agree with many different issues participants here.
We follow the sample codes. Although we get 80% of the expected outputs. There are so so so long exceptions list on the output DURING RUNNING that we wonder what else we could have done wrong.

Could you please kindly provide the sample codes in project files so we also understand how you arrange the model directory in optimum ways.

Why, I am still trying to figure out how to arrange the different functionalities e.g. parser, NER, seg into a kind of workflow. However, I find many conflicting duplicating classes. I am still trying to solve how to do that.

With your samples, we could figure what are your experience and learn from the good practice .

Thanks for making stanfordNLP to .NET community

Cannot evaluate expression because the current thread is in a stack overflow state

After implementing the example as shown on the project page, during execution I ran into a stackoverflowexception when executing this step:

            var annotation = new Annotation(inputText);
    -->    pipeline.annotate(annotation);

I have enclosed an abbreviated stack list. The upper portion is the looped stack, the lower is where this code is called. Any insight would be greatly appreciated.

Exception message: Cannot evaluate expression because the current thread is in a stack overflow state.

Loop:
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.CharProperty.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.Branch.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.GroupHead.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.Loop.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.GroupTail.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.BranchConn.match() Unknown
...
Call Stack:
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.GroupHead.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.Loop.matchInit() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.Prolog.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.GroupHead.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Pattern.Slice.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Matcher.match() Unknown
IKVM.OpenJDK.Core.dll!java.util.regex.Matcher.matches() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.DescriptionPattern.DescriptionPattern() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Description() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ModDescription() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Node() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Relation() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Child() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ModChild() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ChildrenConj() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ChildrenDisj() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.SubNode() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Node() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Relation() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Child() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ModChild() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ChildrenConj() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ChildrenDisj() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Child() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ModChild() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ChildrenConj() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ChildrenDisj() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.SubNode() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Node() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Relation() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Child() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ModChild() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ChildrenConj() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.ChildrenDisj() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.SubNode() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexParser.Root() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.tregex.TregexPatternCompiler.compile(string tregex) Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.GrammaticalRelation.GrammaticalRelation() Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.GrammaticalRelation.GrammaticalRelation(edu.stanford.nlp.trees.GrammaticalRelation.Language language, string shortName, string longName, edu.stanford.nlp.trees.GrammaticalRelation parent, string sourcePattern, edu.stanford.nlp.trees.tregex.TregexPatternCompiler tregexCompiler, string[] targetPatterns) Unknown
stanford-corenlp-3.5.1.dll!edu.stanford.nlp.trees.EnglishGrammaticalRelations.EnglishGrammaticalRelations() Unknown

Training Custom Entity Relations

Hello,

Thanks so much for making this possible through .Net, I currently have custom entities working and tested. For example, I've managed to train it to know that 'Micheal Jackson' is an 'artist' and to ignore other names that I'm not interested in. I've also got it to know that when talking about 'Thriller' that it knows to label it as entity type 'album'.

However, I'm now to a point where I would like it to build a custom relation between the custom entities, 'artist' & 'album'. Just as we have an Organization (Org) that is Based In (OrgBased_In) a Location (Loc), I would like to have an 'artist' that is 'involved' in an 'album'.

How would one go about doing this? Is there any documents or C# examples of training some relations and then seeing the results printed out with these custom relations to our custom entities all in action?

Here is some code which I have running at the moment.

            // # TRAINING
            // this is working code that generates relations serialized model files
            // defined as serializedRelationExtractorPath & serializedTrainingSentencesPath
            // artist-album.corp file is based off conll04.corp example file (lines 1-2916 but with 'Artist' and a few custom entries for 'Albums' with custom relations added 'Involved_In')
            // serializedEntityExtractorPath is not generated - tmp/roth_entity_model.ser
            Properties props = new Properties();
            props.setProperty("annotators", "pos, lemma, parse");
            props.setProperty("parse.maxlen", "100");
            props.setProperty("datasetReaderClass", "edu.stanford.nlp.ie.machinereading.domains.roth.RothCONLL04Reader");
            props.setProperty("trainPath", "artist-album.corp");
            props.setProperty("crossValidate", "false");
            props.setProperty("kfold", "10");
            props.setProperty("trainUsePipelineNER", "false");
            props.setProperty("serializedTrainingSentencesPath", "tmp/roth_sentences.ser");
            props.setProperty("serializedEntityExtractorPath", "tmp/roth_entity_model.ser");
            props.setProperty("serializedRelationExtractorPath", "tmp/roth_relation_model_pipeline.ser");
            props.setProperty("relationResultsPrinters", "edu.stanford.nlp.ie.machinereading.RelationExtractorResultsPrinter");
            props.setProperty("entityClassifier", "edu.stanford.nlp.ie.machinereading.domains.roth.RothEntityExtractor");
            props.setProperty("extractRelations", "true");
            props.setProperty("extractEvents", "false");
            props.setProperty("extractEntities", "false"); // setting this to 'true' results in the following error ->
            /* at edu.stanford.nlp.ie.machinereading.GenericDataSetReader.parse(String path)
            at edu.stanford.nlp.ie.machinereading.MachineReading.loadOrMakeSerializedSentences(String sentencesPath, GenericDataSetReader reader, File serializedSentences)
            at edu.stanford.nlp.ie.machinereading.MachineReading.run() */

            props.setProperty("trainOnly", "true");
            props.setProperty("relationFeatures", "arg_words,arg_type,dependency_path_lowlevel,dependency_path_words,surface_path_POS,entities_between_args,full_tree_path");

            var propertyKeys = props.keys();
            var propertyStringArray = new List<string>();
            while (propertyKeys.hasMoreElements())
            {
                var key = propertyKeys.nextElement();
                propertyStringArray.Add($"-{key}");
                propertyStringArray.Add(props.getProperty(key.toString(), string.Empty));
            }

            var machineReader = edu.stanford.nlp.ie.machinereading.MachineReading.makeMachineReading(propertyStringArray.ToArray());
            var utestResultList = machineReader.run();

The next section of code is what I'm using in order to test the entity relations model which was generated by the previous training code.

`            // # TESTING
            Properties props = new Properties();
            props.setProperty("annotators", "tokenize, ssplit, pos, lemma, parse, ner, relation");
            props.setProperty("ner.model", @"edu/stanford/nlp/models/ner/ner-trained-model.ser.gz"); // previously generated/trained entity model with Artists and Albums examples, which is tested and works
            props.setProperty("ner.model.3class", string.Empty);
            props.setProperty("ner.model.7class", string.Empty);
            props.setProperty("ner.model.MISCclass", string.Empty);
            props.setProperty("ner.useSUTime", "0");
            props.setProperty("dcoref.dictlist", "coref.dict1.tsv, coref.dict2.tsv, coref.dict3.tsv, coref.dict4.tsv");
            props.setProperty("sup.relation.model", "tmp/roth_relation_model_pipeline.ser");
            props.setProperty("sup.relation.verbose", "true");

            var text = "..."; // text contains text about Micheal Jackson with references to him and his albums, including Thriller.
            var doc = new Annotation(text);
            StanfordCoreNLP pipeline = new StanfordCoreNLP(props);
            pipeline.annotate(doc);

            var sentences = doc.get(new CoreAnnotations.SentencesAnnotation().getClass()) as ArrayList;
            if (sentences == null) { return; }
            foreach (CoreMap sentc in sentences)
            {
                Debug.WriteLine("For sentence: " + sentc.get(new CoreAnnotations.TextAnnotation().getClass()));
                var rls = sentc.get(new MachineReadingAnnotations.RelationMentionsAnnotation().getClass()) as ArrayList;
                if (rls == null) { return; }
                foreach (RelationMention relationMention in rls)
                {
                    Debug.WriteLine(relationMention.toString());
                }
            }

The results from the testing code, only shows relations between PEOPLE and LOCATIONS, nothing about Artists or Albums.
Is there anything I'm missing? I feel that during the training, I make no references to my custom entity models, it shouldn't know about it anyways, but I can not see how I'm meant to get that working?
Any documentation, or better yet a code example please.

Many thanks

CoreNLP c# sample fails on 'ner' load

I faced the following issue with old CoreNLP C# sample:

line 22: props.setProperty("annotators", "tokenize, ssplit, pos, lemma, parse, ner, dcoref"); 

fails on loading ner. I have removed ner and dependent dcoref and sample worked fine.

Could you please check what is wrong with ner or it was my environment issue? (New C# sample contains my comment about this issue and needed to be reverted if it's local problem)

Request for C# sample to extract word, pos, ne etc from CoreMap

Hi Sergey,

Thanks for your great effort in porting to .Net. We are scratching our heads on porting the following code to .Net. (especially the CoreMap sentence , word, pos, and ne portion). Will be great if you can include and expand your StanfordCoreNLP C# sample. Much Appreciated.

Patrick

http://sergey-tihon.github.io/Stanford.NLP.NET/StanfordCoreNLP.html

Request for help to expand the sample C# to include the parsing for POS, Word, and NE, Normalized Entity etc as in

// creates a StanfordCoreNLP object, with POS tagging, lemmatization, NER, parsing, and coreference resolution
Properties props = new Properties();
props.setProperty("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
StanfordCoreNLP pipeline = new StanfordCoreNLP(props);

// read some text in the text variable
String text = ... // Add your text here!

// create an empty Annotation just with the given text
Annotation document = new Annotation(text);

// run all Annotators on this text
pipeline.annotate(document);

// these are all the sentences in this document
// a CoreMap is essentially a Map that uses class objects as keys and has values with custom types
List<CoreMap> sentences = document.get(SentencesAnnotation.class);

for(CoreMap sentence: sentences) {
  // traversing the words in the current sentence
  // a CoreLabel is a CoreMap with additional token-specific methods
  for (CoreLabel token: sentence.get(TokensAnnotation.class)) {
    // this is the text of the token
    String word = token.get(TextAnnotation.class);
    // this is the POS tag of the token
    String pos = token.get(PartOfSpeechAnnotation.class);
    // this is the NER label of the token
    String ne = token.get(NamedEntityTagAnnotation.class);       
  }

  // this is the parse tree of the current sentence
  Tree tree = sentence.get(TreeAnnotation.class);

  // this is the Stanford dependency graph of the current sentence
  SemanticGraph dependencies = sentence.get(CollapsedCCProcessedDependenciesAnnotation.class);
}

// This is the coreference link graph
// Each chain stores a set of mentions that link to each other,
// along with a method for getting the most representative mention
// Both sentence and token offsets start at 1!
Map<Integer, CorefChain> graph = 
  document.get(CorefChainAnnotation.class);

Problem while trying to run corenlp example as a Forms application

Hi,

Not sure if this is the right place to ask this type of question but hopefully you can help. I was trying to run the coreNLP example as a Forms application rather than a Console application. It fails to compile because there is a conflict between the java Properties class and a pre-existing C# Properties class at this line: var props = new Properties();. I think this can be resolved by referring to the full namespace for the java Properties but I can't seem to find what that is. Would you know the namespace or be able to tell me how to find it.

Thanks,

RB

Error parsing on Mono

On trying to setup a pipeline for sentiment analysis on mono, mono crashes during the parsing phase.

Full repro and stack trace available at https://github.com/mavnn/Advent2015-trial; you should be able to clone that repository and reproduce. The stacktrace starts with:

Loading parser from serialized file edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz ... Assertion failed: (0), function amd64_patch, file mini-amd64.c, line 482.
Stacktrace:

  at <unknown> <0xffffffff>
  at java.util.HashMap.putVal (int,object,object,bool,bool) <0x00209>
  at java.util.HashMap.put (object,object) <0x0004a>
  at edu.stanford.nlp.parser.lexparser.BinaryGrammar.readObject (java.io.ObjectInputStream) <0x00171>
  at (wrapper dynamic-method) edu.stanford.nlp.parser.lexparser.BinaryGrammar.__<Invoker> (object,object[],ikvm.internal.CallerID) <0x00177>
  at Java_sun_reflect_ReflectionFactory/FastMethodAccessorImpl.invoke (object,object[],ikvm.internal.CallerID) <0x0003d>
  at java.lang.reflect.Method.invoke (object,object[],ikvm.internal.CallerID) <0x000d4>
...

This is the first time I've used Stanford NLP, so it is entirely possible that I'm at fault here.

Can we have a sample for simple API usage?

The samples existing in the samples directory are good to start. Yet as soon as I change from them, because of the lack of documentation, I encounter many weird Java exceptions and I can't find the problems through searching.

Can we have a sample for simple API calls? I'm talking a sample for this URL:
http://stanfordnlp.github.io/CoreNLP/simple.html

Also can we have a sample of how to access annotations (result of NLP annotators) directly in C#, and not pretty print them to the console?

How to get only the tags of the POS Tagger?

Hello sergey-tihon,

really good work! I managed to get the example in c# (VS2015) to work. Now i want to get only the tags of the POS Tagger.
var text = "Ich. Du. Machen. Legen. Hans. Peter.";
normal output with Console.WriteLine(Sentence.listToString(taggedSentence, false))
"Ich/PPER ./$. Du/PPER ./&. Machen/VVINF ./$. Legen/VVINF ./$. Hans/NE ./$. Peter/NE ./$"

with Console.WriteLine(Sentence.listToString(taggedSentence, true)) i get only the input sentence without the tags. I need only the tags, sort it and analyse the text with some metriks.

Thank you for your help!!!

Error An unhandled exception of type 'System.StackOverflowException' occurred in IKVM.OpenJDK.Core.dll

Hi Sergey,
Do you know why i get the above error on "pipeline.annotate(annotation); ". I have installed Stanford-CoreNLP-3.5.2 and copied "stanford-corenlp-3.5.2-models" folder with "StanfordCoreNlpDemo.java" into my project. Here is the code:

var jarRoot = @"C:\Users\Kamal\Documents\visual studio 2013\Projects\test-stanford\test-stanford\stanford-corenlp-3.5.2-models\";

            // Text for processing
            var text = "Kosgi Santosh sent an email to Stanford University. He didn't get a reply.";

            // Annotation pipeline configuration
            var props = new Properties();
            props.setProperty("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
            //props.setProperty("sutime.binders", "0");
            props.setProperty("ner.useSUTime", "0");
            // We should change current directory, so StanfordCoreNLP could find all the model files automatically
            var curDir = Environment.CurrentDirectory;
            Directory.SetCurrentDirectory(jarRoot);
            StanfordCoreNLP pipeline = new StanfordCoreNLP(props);
            Directory.SetCurrentDirectory(curDir);

            // Annotation
            Annotation annotation = new Annotation(text);

            pipeline.annotate(annotation);

            // Result - Pretty Print
            using (var stream = new ByteArrayOutputStream())
            {
                pipeline.prettyPrint(annotation, new PrintWriter(stream));
                //Console.WriteLine(stream.toString());
                stream.close();
            }

Thanks for any advice.

Your sincerely
Kamal

Exception Thrown when trying to use NLP Simple CoreNLP

1.6.0 Simple reference here: http://stanfordnlp.github.io/CoreNLP/simple.html#simple-corenlp

Exception java.lang.NoClassDefFoundError "com.google.protobuf.GeneratedMessage$ExtendableMessage"

Exception Thrown at: Document doc = new Document(inText)

using edu.stanford.nlp.simple;
public List<string> SentenceDetect(string inText)
{
    Document doc = new Document(inText);
    var sents = doc.sentences();
    var l = ((Sentence)sents.get(0)).lemmas();
    return new List<string>(sentenceParser.SentenceDetect(inText));
}

SentimentCoreAnnotations returns null

Hi! I have managed to run the examples on the website, but I am missing an example for sentiment analysis. I have found an example here: http://stackoverflow.com/questions/31832387/using-stanford-nlp-lib-in-c-sharp-while-trying-to-get-sentiment-positive-nega, but it doesn't work for me.

After adapting it to a C# class, I ended up with code that compiles:

using System;

namespace PureCS {
    class Program {
        static void Main() {
            var sentimentHelper = new SentimentHelper();
            var sentiment = sentimentHelper.Analyze("This is freaking awesome!");
        }
    }
}
using edu.stanford.nlp.ling;
using edu.stanford.nlp.neural.rnn;
using edu.stanford.nlp.pipeline;
using edu.stanford.nlp.sentiment;
using edu.stanford.nlp.trees;
using edu.stanford.nlp.util;
using java.io;
using java.text;
using java.util;
using System;
using System.IO;

namespace PureCS {
    public class StanfordNLPModelNotFoundExpection : Exception {
    }

    public class SentimentHelper {
        private string jarRoot;
        public string LastError;

        public SentimentHelper() {
            //JarRoot = @"..\..\..\..\paket-files\nlp.stanford.edu\stanford-corenlp-full-2015-12-09\models";
            jarRoot = "C:\\www\\warpech\\Crystal\\stanford-corenlp-full-2015-12-09\\stanford-corenlp-3.6.0-models";

            if (Directory.Exists(jarRoot) == false) {
                LastError = typeof(StanfordNLPModelNotFoundExpection).Name;
            }
        }

        public int Analyze(string text) {
            var result = "";

            // Annotation pipeline configuration
            var props = new java.util.Properties();

            props.setProperty("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
            //props.setProperty("sutime.binders", "0");
            //props.setProperty("ner.useSUTime", "false");
            props.setProperty("ner.useSUTime", "0");

            // We should change current directory, so D:\Core NLP Files\stanford-corenlp-full-2015-04-20\stanford-corenlp-full-2015-04-20 could find all the model files automatically
            var curDir = Environment.CurrentDirectory;
            Directory.SetCurrentDirectory(jarRoot);
            var pipeline = new StanfordCoreNLP(props);
            Directory.SetCurrentDirectory(curDir);

            // Annotation
            var annotation = new edu.stanford.nlp.pipeline.Annotation(text);
            pipeline.annotate(annotation);

            // Result - Pretty Print
            using (var stream = new ByteArrayOutputStream()) {
                pipeline.prettyPrint(annotation, new PrintWriter(stream));

                //Analyze the statement as positive or negative
                int mainSentiment = 0;
                int longest = 0;
                String[] sentimentText = { "Very Negative", "Negative", "Neutral", "Positive", "Very Positive" };

                NumberFormat NF = new DecimalFormat("0.0000");

                var sentences = annotation.get(new CoreAnnotations.SentencesAnnotation().getClass()) as ArrayList;

                foreach (CoreMap sentence in sentences) {
                    Tree tree = sentence.get(new SentimentCoreAnnotations.SentimentAnnotatedTree().getClass()) as Tree;

                    int sentiment = RNNCoreAnnotations.getPredictedClass(tree);

                    String partText = sentence.ToString();
                    result += "Sentence: '" + partText + "' is rather " + sentimentText[sentiment] + ". ";

                    if (partText.Length > longest) {
                        mainSentiment = sentiment;
                        longest = partText.Length;
                    }
                }

                if (mainSentiment == 2 || mainSentiment > 4 || mainSentiment < 0) {
                    result += "Overall it was sort of neutral review";
                }
                else if (mainSentiment > 2) {
                    result += "Overall we are happy";
                }
                else {
                    result += "Bottom line. We are displeased";
                }

                stream.close();
                return mainSentiment;
            }

        }
    }
}

The problem that I have is that this line returns null:

Tree tree = sentence.get(new SentimentCoreAnnotations.SentimentAnnotatedTree().getClass()) as Tree;

Why so many warning and exceptions?

I follow the example and get the expected results, However, it takes a long time to get the expected results. Why?
http://sergey-tihon.github.io/Stanford.NLP.NET/StanfordParser.html

A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchFieldException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.lang.NoSuchMethodException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
The thread 0x47dc has exited with code 0 (0x0).
(ROOT
  (S
    (NP (DT This))
    (VP (VBZ is)
      (NP (DT an) (JJ easy) (NN sentence)))
    (. .)))
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.tsurgeon.TsurgeonParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll
A first chance exception of type 'java.io.IOException' occurred in IKVM.OpenJDK.Core.dll
A first chance exception of type 'java.io.IOException' occurred in stanford-parser.dll

[nsubj(sentence-4, This-1), cop(sentence-4, is-2), det(sentence-4, another-3), root(ROOT-0, sentence-4)]

A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
A first chance exception of type 'edu.stanford.nlp.trees.tregex.TregexParser.LookaheadSuccess' occurred in stanford-parser.dll
(ROOT
  (S
    (NP (DT This))
    (VP (VBZ is)
      (NP (DT another) (NN sentence)))
    (. .)))

nsubj(sentence-4, This-1)
cop(sentence-4, is-2)
det(sentence-4, another-3)
root(ROOT-0, sentence-4)


StackOverflow when running C# samples

Hi,

I'm getting the following error when running the Parser's sample C# code from the site [1]:
An unhandled exception of type 'System.StackOverflowException' occurred in IKVM.OpenJDK.Core.dll
on line:
var gs = gsf.newGrammaticalStructure(tree2);
It's all good up to that point.

CoreNLP sample in C# also fails with StackOverflow exception on the following line if annotators include "parse":
pipeline.annotate(annotation);
// With this, it works: props.setProperty("annotators", "tokenize, ssplit, pos, lemma, ner");

Tests in F# are running fine. I'm using the same CoreNLP library downloaded under "\paket-files\nlp.stanford.edu\stanford-corenlp-full-2015-01-30\models" through build.cmd.

I couldn't be able to identify any differences between C# sample and F# tests so I'm quite stuck figuring what's going on. Any help would be appreciated.

Thanks.

[1] http://sergey-tihon.github.io/Stanford.NLP.NET/StanfordParser.html

Stanford.NLP.NET/StanfordWordSegmenter.html cSharp fails

https://sergey-tihon.github.io/Stanford.NLP.NET/StanfordWordSegmenter.html

I create a console project, use nuget to install the segmentation library. I hope this naturally install all other relevant dependent ikvm library.

Copy and past the code and modify to include the right model and test file directoriy

The program fails ONLY AT THIS STEP:
segmenter.loadClassifierNoExceptions(segmenterData + @"ctb.gz", props);

outout: The thread 0x262c has exited with code 0 (0x0).

Could someone repeat to let me know if there is something I miss

Sample code for using ArabicTokenizer

Sergey, i did my best to understand how to use the ArabicTokenizer, you can see my try in the following code. i hope to check it and see if this is the best way of use.
i am also trying to set the parameters in the main method, but it doesn't seem to work at all. for example it neither removes the diacritics nor removingTatweel.

       ArabicTokenizer.main(new string[] { "normArDigits", "normAlif", "normYa", "removeDiacritics", "removeTatweel", "removeProMarker", "removeSegMarker", "removeMorphMarker", "removeLengthening", "atbEscaping" });
        string s = textBox2.Text;
        java.io.StringReader sr = new StringReader(s);
        ArabicTokenizer tokenizer = new ArabicTokenizer(sr, new edu.stanford.nlp.process.WordTokenFactory(), new java.util.Properties());

        java.util.List al = tokenizer.tokenize();
        int size = al.size();
        string container = "";
        for (int i = 0; i < size; i++)
        {
           Word w = (Word)al.get(i);
           container = container + " ^ " + w.word();
        }
        textBox1.Text = container;

image

Error creating edu.stanford.nlp.time.TimeExpressionExtractorImpl

Hello, I am trying to run through your example code, and I ran into this error:
An unhandled exception of type 'edu.stanford.nlp.util.ReflectionLoading.ReflectionLoadingException' occurred in stanford-corenlp-3.5.2.dll
Additional information: Error creating edu.stanford.nlp.time.TimeExpressionExtractorImpl

I copied your example exactly, and I am using 3.5.2. What could I be doing wrong?

sutime sample code throws exceptions

I am getting the following exception while running the sutime sample code. I have included all the dlls. Do you have any suggestions?

An exception of type 'System.TypeInitializationException' occurred in stanford-corenlp-3.6.0.dll but was not handled in user code

Additional information: The type initializer for 'edu.stanford.nlp.time.XMLUtils' threw an exception.

Large number of errors during build

I just did a Git pull to get the latest full source. I am getting a large number of errors and warnings when I try to build the solution with Visual Studio 2013 Ultimate, Update 4:

Errors:

Error 89 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 18 21 Stanford.NLP.CoreNLP.FSharp.Tests
Error 93 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 23 22 Stanford.NLP.CoreNLP.FSharp.Tests
Error 97 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 26 24 Stanford.NLP.CoreNLP.FSharp.Tests
Error 99 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 28 24 Stanford.NLP.CoreNLP.FSharp.Tests
Error 101 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 30 24 Stanford.NLP.CoreNLP.FSharp.Tests
Error 103 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 35 20 Stanford.NLP.CoreNLP.FSharp.Tests
Error 107 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 38 9 Stanford.NLP.CoreNLP.FSharp.Tests
Error 108 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 39 57 Stanford.NLP.CoreNLP.FSharp.Tests
Error 109 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 42 20 Stanford.NLP.CoreNLP.FSharp.Tests
Error 112 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 44 21 Stanford.NLP.CoreNLP.FSharp.Tests
Error 114 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 45 23 Stanford.NLP.CoreNLP.FSharp.Tests
Error 116 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 47 23 Stanford.NLP.CoreNLP.FSharp.Tests
Error 118 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 50 18 Stanford.NLP.CoreNLP.FSharp.Tests
Error 119 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 51 18 Stanford.NLP.CoreNLP.FSharp.Tests
Error 120 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 51 31 Stanford.NLP.CoreNLP.FSharp.Tests
Error 121 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 52 18 Stanford.NLP.CoreNLP.FSharp.Tests
Error 122 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 52 31 Stanford.NLP.CoreNLP.FSharp.Tests
Error 125 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 59 5 Stanford.NLP.CoreNLP.FSharp.Tests
Error 126 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 60 5 Stanford.NLP.CoreNLP.FSharp.Tests
Error 127 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 61 5 Stanford.NLP.CoreNLP.FSharp.Tests
Error 130 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 71 5 Stanford.NLP.CoreNLP.FSharp.Tests
Error 132 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 75 5 Stanford.NLP.CoreNLP.FSharp.Tests
Error 133 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 76 21 Stanford.NLP.CoreNLP.FSharp.Tests
Error 136 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 88 27 Stanford.NLP.CoreNLP.FSharp.Tests
Error 159 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 134 5 Stanford.NLP.CoreNLP.FSharp.Tests
Error 161 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 138 5 Stanford.NLP.CoreNLP.FSharp.Tests
Error 162 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 139 21 Stanford.NLP.CoreNLP.FSharp.Tests
Error 173 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 15 5 Stanford.NLP.CoreNLP.FSharp.Tests
Error 174 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 16 5 Stanford.NLP.CoreNLP.FSharp.Tests
Error 222 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 28 21 Stanford.NLP.NER.FSharp.Tests
Error 223 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 29 21 Stanford.NLP.NER.FSharp.Tests
Error 224 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 30 21 Stanford.NLP.NER.FSharp.Tests
Error 225 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 32 19 Stanford.NLP.NER.FSharp.Tests
Error 230 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 44 21 Stanford.NLP.NER.FSharp.Tests
Error 233 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 50 24 Stanford.NLP.NER.FSharp.Tests
Error 236 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 55 30 Stanford.NLP.NER.FSharp.Tests
Error 238 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 57 30 Stanford.NLP.NER.FSharp.Tests
Error 282 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\Config.fs 17 16 Stanford.NLP.Parser.FSharp.Tests
Error 283 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\Config.fs 18 23 Stanford.NLP.Parser.FSharp.Tests
Error 284 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\Config.fs 21 5 Stanford.NLP.Parser.FSharp.Tests
Error 302 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 24 17 Stanford.NLP.Parser.FSharp.Tests
Error 304 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 26 5 Stanford.NLP.Parser.FSharp.Tests
Error 307 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 32 21 Stanford.NLP.Parser.FSharp.Tests
Error 308 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 33 17 Stanford.NLP.Parser.FSharp.Tests
Error 311 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 37 15 Stanford.NLP.Parser.FSharp.Tests
Error 312 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 38 14 Stanford.NLP.Parser.FSharp.Tests
Error 313 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 39 15 Stanford.NLP.Parser.FSharp.Tests
Error 316 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 44 5 Stanford.NLP.Parser.FSharp.Tests
Error 321 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 51 15 Stanford.NLP.Parser.FSharp.Tests
Error 324 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 58 21 Stanford.NLP.Parser.FSharp.Tests
Error 326 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 60 9 Stanford.NLP.Parser.FSharp.Tests
Error 327 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 62 18 Stanford.NLP.Parser.FSharp.Tests
Error 328 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 63 19 Stanford.NLP.Parser.FSharp.Tests
Error 461 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 23 5 Stanford.NLP.Segmenter.FSharp.Tests
Error 462 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 24 5 Stanford.NLP.Segmenter.FSharp.Tests
Error 463 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 25 5 Stanford.NLP.Segmenter.FSharp.Tests
Error 464 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 27 5 Stanford.NLP.Segmenter.FSharp.Tests
Error 465 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 28 5 Stanford.NLP.Segmenter.FSharp.Tests
Error 466 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 29 5 Stanford.NLP.Segmenter.FSharp.Tests
Error 467 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 30 5 Stanford.NLP.Segmenter.FSharp.Tests
Error 469 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 33 5 Stanford.NLP.Segmenter.FSharp.Tests
Error 470 Lookup on object of indeterminate type based on information prior to this program point. A type annotation may be needed prior to this program point to constrain the type of the object. This may allow the lookup to be resolved. C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 34 5 Stanford.NLP.Segmenter.FSharp.Tests
Error 140 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 96 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 141 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 97 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 142 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 98 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 143 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 99 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 144 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 100 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 145 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 101 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 146 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 102 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 147 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 103 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 148 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 104 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 149 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 105 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 150 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 106 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 151 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 107 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 152 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 108 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 153 The field, constructor or member 'dcoref' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 110 44 Stanford.NLP.CoreNLP.FSharp.Tests
Error 139 The field, constructor or member 'lexparser' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 94 32 Stanford.NLP.CoreNLP.FSharp.Tests
Error 293 The field, constructor or member 'lexparser' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 13 16 Stanford.NLP.Parser.FSharp.Tests
Error 294 The field, constructor or member 'lexparser' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 14 16 Stanford.NLP.Parser.FSharp.Tests
Error 295 The field, constructor or member 'lexparser' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 15 16 Stanford.NLP.Parser.FSharp.Tests
Error 296 The field, constructor or member 'lexparser' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 16 16 Stanford.NLP.Parser.FSharp.Tests
Error 138 The field, constructor or member 'ner' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 91 32 Stanford.NLP.CoreNLP.FSharp.Tests
Error 137 The field, constructor or member 'pos-tagger' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 90 32 Stanford.NLP.CoreNLP.FSharp.Tests
Error 229 The field, constructor or member 'SampleText.txt' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 42 60 Stanford.NLP.NER.FSharp.Tests
Error 383 The field, constructor or member 'SampleText.txt' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 22 30 Stanford.NLP.POSTagger.FSharp.Tests
Error 154 The field, constructor or member 'sutime' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 123 19 Stanford.NLP.CoreNLP.FSharp.Tests
Error 155 The field, constructor or member 'sutime' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 124 19 Stanford.NLP.CoreNLP.FSharp.Tests
Error 156 The field, constructor or member 'sutime' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 125 19 Stanford.NLP.CoreNLP.FSharp.Tests
Error 380 The field, constructor or member 'tagSentence' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 16 32 Stanford.NLP.POSTagger.FSharp.Tests
Error 221 The namespace or module 'CRFClassifier' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 24 9 Stanford.NLP.NER.FSharp.Tests
Error 228 The namespace or module 'CRFClassifier' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 41 9 Stanford.NLP.NER.FSharp.Tests
Error 82 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 7 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 83 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 8 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 84 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 9 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 85 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 10 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 86 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 11 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 87 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 12 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 166 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 6 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 167 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 7 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 168 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 8 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 169 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 9 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 170 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 10 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 214 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 5 6 Stanford.NLP.NER.FSharp.Tests
Error 215 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 6 6 Stanford.NLP.NER.FSharp.Tests
Error 216 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 7 6 Stanford.NLP.NER.FSharp.Tests
Error 217 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 8 6 Stanford.NLP.NER.FSharp.Tests
Error 288 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 6 6 Stanford.NLP.Parser.FSharp.Tests
Error 289 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 7 6 Stanford.NLP.Parser.FSharp.Tests
Error 290 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 8 6 Stanford.NLP.Parser.FSharp.Tests
Error 291 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 9 6 Stanford.NLP.Parser.FSharp.Tests
Error 292 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 10 6 Stanford.NLP.Parser.FSharp.Tests
Error 297 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 17 17 Stanford.NLP.Parser.FSharp.Tests
Error 367 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\Config.fs 11 5 Stanford.NLP.POSTagger.FSharp.Tests
Error 374 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 7 6 Stanford.NLP.POSTagger.FSharp.Tests
Error 375 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 8 6 Stanford.NLP.POSTagger.FSharp.Tests
Error 456 The namespace or module 'edu' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 6 6 Stanford.NLP.Segmenter.FSharp.Tests
Error 77 The namespace or module 'FSharp' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\Config.fs 6 15 Stanford.NLP.CoreNLP.FSharp.Tests
Error 218 The namespace or module 'FSharp' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 19 20 Stanford.NLP.NER.FSharp.Tests
Error 219 The namespace or module 'FSharp' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 20 18 Stanford.NLP.NER.FSharp.Tests
Error 276 The namespace or module 'FSharp' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\Config.fs 6 15 Stanford.NLP.Parser.FSharp.Tests
Error 277 The namespace or module 'FSharp' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\Config.fs 9 18 Stanford.NLP.Parser.FSharp.Tests
Error 365 The namespace or module 'FSharp' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\Config.fs 5 15 Stanford.NLP.POSTagger.FSharp.Tests
Error 366 The namespace or module 'FSharp' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\Config.fs 8 18 Stanford.NLP.POSTagger.FSharp.Tests
Error 457 The namespace or module 'FSharp' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 9 22 Stanford.NLP.Segmenter.FSharp.Tests
Error 458 The namespace or module 'FSharp' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 12 18 Stanford.NLP.Segmenter.FSharp.Tests
Error 79 The namespace or module 'FsUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 4 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 164 The namespace or module 'FsUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 4 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 213 The namespace or module 'FsUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 4 6 Stanford.NLP.NER.FSharp.Tests
Error 286 The namespace or module 'FsUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 4 6 Stanford.NLP.Parser.FSharp.Tests
Error 368 The namespace or module 'FsUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\Config.fs 13 6 Stanford.NLP.POSTagger.FSharp.Tests
Error 371 The namespace or module 'FsUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 4 6 Stanford.NLP.POSTagger.FSharp.Tests
Error 454 The namespace or module 'FsUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 4 6 Stanford.NLP.Segmenter.FSharp.Tests
Error 80 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 5 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 81 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 6 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 90 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 18 90 Stanford.NLP.CoreNLP.FSharp.Tests
Error 94 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 23 86 Stanford.NLP.CoreNLP.FSharp.Tests
Error 165 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 5 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 232 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 48 17 Stanford.NLP.NER.FSharp.Tests
Error 278 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\Config.fs 11 6 Stanford.NLP.Parser.FSharp.Tests
Error 279 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\Config.fs 12 6 Stanford.NLP.Parser.FSharp.Tests
Error 287 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 5 6 Stanford.NLP.Parser.FSharp.Tests
Error 323 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 56 17 Stanford.NLP.Parser.FSharp.Tests
Error 372 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 5 6 Stanford.NLP.POSTagger.FSharp.Tests
Error 373 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 6 6 Stanford.NLP.POSTagger.FSharp.Tests
Error 455 The namespace or module 'java' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 5 6 Stanford.NLP.Segmenter.FSharp.Tests
Error 377 The namespace or module 'MaxentTagger' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 11 21 Stanford.NLP.POSTagger.FSharp.Tests
Error 78 The namespace or module 'NUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 3 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 163 The namespace or module 'NUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 3 6 Stanford.NLP.CoreNLP.FSharp.Tests
Error 212 The namespace or module 'NUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 3 6 Stanford.NLP.NER.FSharp.Tests
Error 285 The namespace or module 'NUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 3 6 Stanford.NLP.Parser.FSharp.Tests
Error 370 The namespace or module 'NUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 3 6 Stanford.NLP.POSTagger.FSharp.Tests
Error 453 The namespace or module 'NUnit' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 3 6 Stanford.NLP.Segmenter.FSharp.Tests
Error 305 The namespace or module 'PTBTokenizer' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 30 28 Stanford.NLP.Parser.FSharp.Tests
Error 301 The namespace or module 'Sentence' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 23 20 Stanford.NLP.Parser.FSharp.Tests
Error 381 The namespace or module 'Sentence' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 17 23 Stanford.NLP.POSTagger.FSharp.Tests
Error 88 The type 'Annotation' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 14 39 Stanford.NLP.CoreNLP.FSharp.Tests
Error 384 The type 'BufferedReader' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 23 20 Stanford.NLP.POSTagger.FSharp.Tests
Error 106 The type 'ByteArrayOutputStream' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 37 26 Stanford.NLP.CoreNLP.FSharp.Tests
Error 131 The type 'ByteArrayOutputStream' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 74 22 Stanford.NLP.CoreNLP.FSharp.Tests
Error 160 The type 'ByteArrayOutputStream' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 137 22 Stanford.NLP.CoreNLP.FSharp.Tests
Error 96 The type 'CoreLabel' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 25 42 Stanford.NLP.CoreNLP.FSharp.Tests
Error 235 The type 'CoreLabel' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 53 21 Stanford.NLP.NER.FSharp.Tests
Error 92 The type 'CoreMap' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 20 43 Stanford.NLP.CoreNLP.FSharp.Tests
Error 280 The type 'Iterable' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\Config.fs 14 17 Stanford.NLP.Parser.FSharp.Tests
Error 281 The type 'Iterator' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\Config.fs 15 21 Stanford.NLP.Parser.FSharp.Tests
Error 300 The type 'LexicalizedParser' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 20 42 Stanford.NLP.Parser.FSharp.Tests
Error 319 The type 'LexicalizedParser' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 47 65 Stanford.NLP.Parser.FSharp.Tests
Error 376 The type 'Reader' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 10 23 Stanford.NLP.POSTagger.FSharp.Tests
Error 110 The type 'SemanticGraph' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 42 112 Stanford.NLP.CoreNLP.FSharp.Tests
Error 113 The type 'SemanticGraphEdge' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 44 65 Stanford.NLP.CoreNLP.FSharp.Tests
Error 306 The type 'StringReader' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 31 27 Stanford.NLP.Parser.FSharp.Tests
Error 386 The type 'StringReader' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 27 20 Stanford.NLP.POSTagger.FSharp.Tests
Error 123 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 54 7 Stanford.NLP.CoreNLP.FSharp.Tests
Error 134 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 83 7 Stanford.NLP.CoreNLP.FSharp.Tests
Error 171 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 13 7 Stanford.NLP.CoreNLP.FSharp.Tests
Error 220 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 22 7 Stanford.NLP.NER.FSharp.Tests
Error 227 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 39 7 Stanford.NLP.NER.FSharp.Tests
Error 299 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 20 7 Stanford.NLP.Parser.FSharp.Tests
Error 318 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 47 7 Stanford.NLP.Parser.FSharp.Tests
Error 382 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 21 7 Stanford.NLP.POSTagger.FSharp.Tests
Error 385 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 25 7 Stanford.NLP.POSTagger.FSharp.Tests
Error 459 The type 'Test' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 21 7 Stanford.NLP.Segmenter.FSharp.Tests
Error 298 The type 'TestCaseSourceAttribute' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 19 3 Stanford.NLP.Parser.FSharp.Tests
Error 317 The type 'TestCaseSourceAttribute' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 46 3 Stanford.NLP.Parser.FSharp.Tests
Error 104 The type 'Tree' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 35 86 Stanford.NLP.CoreNLP.FSharp.Tests
Error 314 The type 'TreePrint' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 42 18 Stanford.NLP.Parser.FSharp.Tests
Error 2 The type or namespace name 'edu' could not be found (are you missing a using directive or an assembly reference?) C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\samples\Stanford.NLP.Parser.CSharp\Program.cs 2 7 Stanford.NLP.Parser.CSharp
Error 3 The type or namespace name 'edu' could not be found (are you missing a using directive or an assembly reference?) C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\samples\Stanford.NLP.Parser.CSharp\Program.cs 3 7 Stanford.NLP.Parser.CSharp
Error 4 The type or namespace name 'edu' could not be found (are you missing a using directive or an assembly reference?) C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\samples\Stanford.NLP.Parser.CSharp\Program.cs 4 7 Stanford.NLP.Parser.CSharp
Error 5 The type or namespace name 'edu' could not be found (are you missing a using directive or an assembly reference?) C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\samples\Stanford.NLP.Parser.CSharp\Program.cs 5 7 Stanford.NLP.Parser.CSharp
Error 1 The type or namespace name 'java' could not be found (are you missing a using directive or an assembly reference?) C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\samples\Stanford.NLP.Parser.CSharp\Program.cs 1 7 Stanford.NLP.Parser.CSharp
Error 129 The value or constructor 'Annotation' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 70 22 Stanford.NLP.CoreNLP.FSharp.Tests
Error 158 The value or constructor 'Annotation' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 133 22 Stanford.NLP.CoreNLP.FSharp.Tests
Error 172 The value or constructor 'AnnotationPipeline' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 14 20 Stanford.NLP.CoreNLP.FSharp.Tests
Error 468 The value or constructor 'CRFClassifier' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 32 21 Stanford.NLP.Segmenter.FSharp.Tests
Error 322 The value or constructor 'DocumentPreprocessor' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 54 5 Stanford.NLP.Parser.FSharp.Tests
Error 175 The value or constructor 'MaxentTagger' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\SUTime.fs 18 18 Stanford.NLP.CoreNLP.FSharp.Tests
Error 310 The value or constructor 'PennTreebankLanguagePack' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 36 15 Stanford.NLP.Parser.FSharp.Tests
Error 320 The value or constructor 'PennTreebankLanguagePack' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 50 15 Stanford.NLP.Parser.FSharp.Tests
Error 124 The value or constructor 'Properties' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 58 17 Stanford.NLP.CoreNLP.FSharp.Tests
Error 135 The value or constructor 'Properties' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 87 17 Stanford.NLP.CoreNLP.FSharp.Tests
Error 460 The value or constructor 'Properties' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Segmenter.FSharp.Tests\Segmenter.fs 22 17 Stanford.NLP.Segmenter.FSharp.Tests
Error 91 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 19 18 Stanford.NLP.CoreNLP.FSharp.Tests
Error 95 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 24 19 Stanford.NLP.CoreNLP.FSharp.Tests
Error 98 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 27 21 Stanford.NLP.CoreNLP.FSharp.Tests
Error 100 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 29 20 Stanford.NLP.CoreNLP.FSharp.Tests
Error 102 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 31 20 Stanford.NLP.CoreNLP.FSharp.Tests
Error 105 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 36 17 Stanford.NLP.CoreNLP.FSharp.Tests
Error 111 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 43 17 Stanford.NLP.CoreNLP.FSharp.Tests
Error 115 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 46 20 Stanford.NLP.CoreNLP.FSharp.Tests
Error 117 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 48 20 Stanford.NLP.CoreNLP.FSharp.Tests
Error 226 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 33 15 Stanford.NLP.NER.FSharp.Tests
Error 231 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 45 18 Stanford.NLP.NER.FSharp.Tests
Error 234 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 51 21 Stanford.NLP.NER.FSharp.Tests
Error 237 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.NER.FSharp.Tests\NER.fs 56 27 Stanford.NLP.NER.FSharp.Tests
Error 303 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 25 14 Stanford.NLP.Parser.FSharp.Tests
Error 309 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 34 14 Stanford.NLP.Parser.FSharp.Tests
Error 315 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 43 11 Stanford.NLP.Parser.FSharp.Tests
Error 325 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.Parser.FSharp.Tests\ParserDemo.fs 59 18 Stanford.NLP.Parser.FSharp.Tests
Error 369 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\Config.fs 14 11 Stanford.NLP.POSTagger.FSharp.Tests
Error 378 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 12 18 Stanford.NLP.POSTagger.FSharp.Tests
Error 379 The value or constructor 'should' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.POSTagger.FSharp.Tests\TaggerDemo.fs 15 21 Stanford.NLP.POSTagger.FSharp.Tests
Error 128 The value or constructor 'StanfordCoreNLP' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 66 20 Stanford.NLP.CoreNLP.FSharp.Tests
Error 157 The value or constructor 'StanfordCoreNLP' is not defined C:\Users\Robert\Documents\GitHub\Stanford.NLP.NET\tests\Stanford.NLP.CoreNLP.FSharp.Tests\CoreNLP.fs 130 20 Stanford.NLP.CoreNLP.FSharp.Tests

Warnings

Warning 6 Could not resolve this reference. Could not locate the assembly "ejml-0.23". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 55 Could not resolve this reference. Could not locate the assembly "ejml-0.23". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 256 Could not resolve this reference. Could not locate the assembly "ejml-0.23". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 44 Could not resolve this reference. Could not locate the assembly "FSharp.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 190 Could not resolve this reference. Could not locate the assembly "FSharp.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 249 Could not resolve this reference. Could not locate the assembly "FSharp.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 358 Could not resolve this reference. Could not locate the assembly "FSharp.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 446 Could not resolve this reference. Could not locate the assembly "FSharp.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 47 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 208 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 252 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 361 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 449 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 48 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell.ExternalRuntime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 209 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell.ExternalRuntime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 253 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell.ExternalRuntime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 362 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell.ExternalRuntime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 450 Could not resolve this reference. Could not locate the assembly "FSharp.Management.PowerShell.ExternalRuntime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 45 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 176 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 250 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 359 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 447 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 46 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI.DesignTime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 211 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI.DesignTime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 251 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI.DesignTime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 360 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI.DesignTime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 448 Could not resolve this reference. Could not locate the assembly "FSharp.Management.WMI.DesignTime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 43 Could not resolve this reference. Could not locate the assembly "FsUnit.NUnit". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 177 Could not resolve this reference. Could not locate the assembly "FsUnit.NUnit". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 248 Could not resolve this reference. Could not locate the assembly "FsUnit.NUnit". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 329 Could not resolve this reference. Could not locate the assembly "FsUnit.NUnit". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 445 Could not resolve this reference. Could not locate the assembly "FsUnit.NUnit". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 8 Could not resolve this reference. Could not locate the assembly "IKVM.AWT.WinForms". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 42 Could not resolve this reference. Could not locate the assembly "IKVM.AWT.WinForms". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 178 Could not resolve this reference. Could not locate the assembly "IKVM.AWT.WinForms". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 247 Could not resolve this reference. Could not locate the assembly "IKVM.AWT.WinForms". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 356 Could not resolve this reference. Could not locate the assembly "IKVM.AWT.WinForms". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 444 Could not resolve this reference. Could not locate the assembly "IKVM.AWT.WinForms". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 9 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Beans". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 41 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Beans". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 179 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Beans". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 246 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Beans". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 355 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Beans". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 417 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Beans". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 10 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Charsets". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 40 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Charsets". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 180 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Charsets". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 245 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Charsets". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 330 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Charsets". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 442 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Charsets". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 11 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Cldrdata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 39 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Cldrdata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 181 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Cldrdata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 244 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Cldrdata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 331 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Cldrdata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 441 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Cldrdata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 12 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Corba". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 38 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Corba". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 182 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Corba". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 243 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Corba". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 332 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Corba". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 418 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Corba". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 13 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Core". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 37 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Core". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 183 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Core". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 242 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Core". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 333 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Core". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 419 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Core". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 14 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Jdbc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 54 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Jdbc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 184 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Jdbc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 241 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Jdbc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 334 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Jdbc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 420 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Jdbc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 15 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Localedata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 56 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Localedata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 185 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Localedata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 240 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Localedata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 335 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Localedata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 421 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Localedata". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 16 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 75 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 186 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 255 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 336 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 422 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Management". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 17 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Media". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 57 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Media". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 187 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Media". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 257 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Media". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 337 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Media". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 423 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Media". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 18 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Misc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 74 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Misc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 188 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Misc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 274 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Misc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 338 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Misc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 424 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Misc". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 19 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Naming". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 73 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Naming". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 189 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Naming". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 258 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Naming". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 339 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Naming". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 425 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Naming". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 20 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Nashorn". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 72 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Nashorn". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 191 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Nashorn". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 273 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Nashorn". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 340 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Nashorn". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 426 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Nashorn". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 21 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Remoting". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 71 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Remoting". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 205 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Remoting". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 272 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Remoting". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 341 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Remoting". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 427 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Remoting". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 22 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Security". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 70 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Security". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 192 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Security". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 271 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Security". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 342 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Security". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 428 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Security". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 23 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.SwingAWT". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 69 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.SwingAWT". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 193 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.SwingAWT". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 270 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.SwingAWT". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 343 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.SwingAWT". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 429 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.SwingAWT". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 24 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Text". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 68 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Text". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 194 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Text". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 269 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Text". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 344 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Text". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 430 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Text". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 25 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Tools". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 67 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Tools". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 195 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Tools". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 268 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Tools". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 345 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Tools". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 431 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Tools". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 26 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Util". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 66 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Util". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 196 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Util". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 267 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Util". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 346 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Util". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 432 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.Util". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 27 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.API". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 65 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.API". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 197 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.API". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 266 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.API". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 347 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.API". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 433 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.API". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 28 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Bind". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 64 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Bind". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 198 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Bind". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 265 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Bind". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 348 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Bind". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 434 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Bind". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 29 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Crypto". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 63 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Crypto". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 199 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Crypto". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 264 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Crypto". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 349 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Crypto". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 435 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Crypto". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 30 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Parse". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 62 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Parse". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 200 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Parse". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 263 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Parse". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 350 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Parse". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 436 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Parse". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 31 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Transform". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 61 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Transform". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 201 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Transform". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 262 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Transform". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 351 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Transform". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 437 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.Transform". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 32 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.WebServices". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 60 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.WebServices". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 202 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.WebServices". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 261 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.WebServices". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 352 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.WebServices". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 438 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.WebServices". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 33 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.XPath". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 59 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.XPath". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 203 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.XPath". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 260 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.XPath". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 353 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.XPath". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 439 Could not resolve this reference. Could not locate the assembly "IKVM.OpenJDK.XML.XPath". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 35 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 76 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 206 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 275 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 364 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 452 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 34 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime.JNI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 58 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime.JNI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 204 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime.JNI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 259 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime.JNI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 354 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime.JNI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 440 Could not resolve this reference. Could not locate the assembly "IKVM.Runtime.JNI". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 53 Could not resolve this reference. Could not locate the assembly "javax.json". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 52 Could not resolve this reference. Could not locate the assembly "joda-time". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 51 Could not resolve this reference. Could not locate the assembly "jollyday". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 36 Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 207 Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 239 Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 357 Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 443 Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 50 Could not resolve this reference. Could not locate the assembly "stanford-corenlp-3.5.2". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 210 Could not resolve this reference. Could not locate the assembly "stanford-ner". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.NER.FSharp.Tests
Warning 7 Could not resolve this reference. Could not locate the assembly "stanford-parser". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Stanford.NLP.Parser.CSharp
Warning 254 Could not resolve this reference. Could not locate the assembly "stanford-parser". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Parser.FSharp.Tests
Warning 363 Could not resolve this reference. Could not locate the assembly "stanford-postagger-3.5.2". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.POSTagger.FSharp.Tests
Warning 451 Could not resolve this reference. Could not locate the assembly "stanford-segmenter-3.5.2". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.Segmenter.FSharp.Tests
Warning 49 Could not resolve this reference. Could not locate the assembly "xom". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets 1697 5 Stanford.NLP.CoreNLP.FSharp.Tests
Warning 387 The referenced component 'ejml-0.23' could not be found. Stanford.NLP.Parser.CSharp
Warning 389 The referenced component 'IKVM.AWT.WinForms' could not be found. Stanford.NLP.Parser.CSharp
Warning 390 The referenced component 'IKVM.OpenJDK.Beans' could not be found. Stanford.NLP.Parser.CSharp
Warning 391 The referenced component 'IKVM.OpenJDK.Charsets' could not be found. Stanford.NLP.Parser.CSharp
Warning 392 The referenced component 'IKVM.OpenJDK.Cldrdata' could not be found. Stanford.NLP.Parser.CSharp
Warning 393 The referenced component 'IKVM.OpenJDK.Corba' could not be found. Stanford.NLP.Parser.CSharp
Warning 394 The referenced component 'IKVM.OpenJDK.Core' could not be found. Stanford.NLP.Parser.CSharp
Warning 395 The referenced component 'IKVM.OpenJDK.Jdbc' could not be found. Stanford.NLP.Parser.CSharp
Warning 396 The referenced component 'IKVM.OpenJDK.Localedata' could not be found. Stanford.NLP.Parser.CSharp
Warning 397 The referenced component 'IKVM.OpenJDK.Management' could not be found. Stanford.NLP.Parser.CSharp
Warning 398 The referenced component 'IKVM.OpenJDK.Media' could not be found. Stanford.NLP.Parser.CSharp
Warning 399 The referenced component 'IKVM.OpenJDK.Misc' could not be found. Stanford.NLP.Parser.CSharp
Warning 400 The referenced component 'IKVM.OpenJDK.Naming' could not be found. Stanford.NLP.Parser.CSharp
Warning 401 The referenced component 'IKVM.OpenJDK.Nashorn' could not be found. Stanford.NLP.Parser.CSharp
Warning 402 The referenced component 'IKVM.OpenJDK.Remoting' could not be found. Stanford.NLP.Parser.CSharp
Warning 403 The referenced component 'IKVM.OpenJDK.Security' could not be found. Stanford.NLP.Parser.CSharp
Warning 404 The referenced component 'IKVM.OpenJDK.SwingAWT' could not be found. Stanford.NLP.Parser.CSharp
Warning 405 The referenced component 'IKVM.OpenJDK.Text' could not be found. Stanford.NLP.Parser.CSharp
Warning 406 The referenced component 'IKVM.OpenJDK.Tools' could not be found. Stanford.NLP.Parser.CSharp
Warning 407 The referenced component 'IKVM.OpenJDK.Util' could not be found. Stanford.NLP.Parser.CSharp
Warning 408 The referenced component 'IKVM.OpenJDK.XML.API' could not be found. Stanford.NLP.Parser.CSharp
Warning 409 The referenced component 'IKVM.OpenJDK.XML.Bind' could not be found. Stanford.NLP.Parser.CSharp
Warning 410 The referenced component 'IKVM.OpenJDK.XML.Crypto' could not be found. Stanford.NLP.Parser.CSharp
Warning 411 The referenced component 'IKVM.OpenJDK.XML.Parse' could not be found. Stanford.NLP.Parser.CSharp
Warning 412 The referenced component 'IKVM.OpenJDK.XML.Transform' could not be found. Stanford.NLP.Parser.CSharp
Warning 413 The referenced component 'IKVM.OpenJDK.XML.WebServices' could not be found. Stanford.NLP.Parser.CSharp
Warning 414 The referenced component 'IKVM.OpenJDK.XML.XPath' could not be found. Stanford.NLP.Parser.CSharp
Warning 416 The referenced component 'IKVM.Runtime' could not be found. Stanford.NLP.Parser.CSharp
Warning 415 The referenced component 'IKVM.Runtime.JNI' could not be found. Stanford.NLP.Parser.CSharp
Warning 388 The referenced component 'stanford-parser' could not be found. Stanford.NLP.Parser.CSharp

Example code fails with "Error creating > edu.stanford.nlp.time.TimeExpressionExtractorImpl" when using Stanford CoreNLP version 3.5.1

I am trying to learn the Stanford CoreNLP library. I am using C# with the posted example (https://sergey-tihon.github.io/Stanford.NLP.NET/StanfordCoreNLP.html). I loaded the package “Stanford.NLP.CoreNLP” (it added IKVM.NET) via nuget and downloaded the code. Unzipped the .jar models. My directory is correct. I get the following error:

edu.stanford.nlp.util.ReflectionLoading.ReflectionLoadingException was
unhandled HResult=-2146233088 Message=Error creating
edu.stanford.nlp.time.TimeExpressionExtractorImpl
Source=stanford-corenlp-3.5.0 StackTrace: at
edu.stanford.nlp.util.ReflectionLoading.loadByReflection(String
className, Object[] arguments) at
edu.stanford.nlp.time.TimeExpressionExtractorFactory.create(String
className, String name, Properties props) at
edu.stanford.nlp.time.TimeExpressionExtractorFactory.createExtractor(String
name, Properties props) at
edu.stanford.nlp.ie.regexp.NumberSequenceClassifier..ctor(Properties
props, Boolean useSUTime, Properties sutimeProps) at
edu.stanford.nlp.ie.NERClassifierCombiner..ctor(Boolean
applyNumericClassifiers, Boolean useSUTime, Properties nscProps,
String[] loadPaths) at
edu.stanford.nlp.pipeline.AnnotatorImplementations.ner(Properties
properties) at edu.stanford.nlp.pipeline.AnnotatorFactories.6.create()
at edu.stanford.nlp.pipeline.AnnotatorPool.get(String name) at
edu.stanford.nlp.pipeline.StanfordCoreNLP.construct(Properties A_1,
Boolean A_2, AnnotatorImplementations A_3) at
edu.stanford.nlp.pipeline.StanfordCoreNLP..ctor(Properties props,
Boolean enforceRequirements) at
edu.stanford.nlp.pipeline.StanfordCoreNLP..ctor(Properties props) at
ConsoleApplication1.Program.Main(String[] args) in
d:\Programming_Code\VisualStudio\visual studio
2013\Projects\AutoWikify\ConsoleApplication1\ConsoleApplication1\Program.cs:line
30 at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly,
String[] args) at
Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() at
System.Threading.ExecutionContext.RunInternal(ExecutionContext
executionContext, ContextCallback callback, Object state, Boolean
preserveSyncCtx) at
System.Threading.ExecutionContext.Run(ExecutionContext
executionContext, ContextCallback callback, Object state, Boolean
preserveSyncCtx) at
System.Threading.ExecutionContext.Run(ExecutionContext
executionContext, ContextCallback callback, Object state) at
System.Threading.ThreadHelper.ThreadStart() InnerException:
edu.stanford.nlp.util.MetaClass.ClassCreationException
HResult=-2146233088 Message=MetaClass couldn’t create public
edu.stanford.nlp.time.TimeExpressionExtractorImpl(java.lang.String,java.util.Properties)
with args [sutime, {sutime.binders=0, annotators=tokenize, ssplit,
pos, lemma, ner, parse, dcoref}] Source=stanford-corenlp-3.5.0
StackTrace: at
edu.stanford.nlp.util.MetaClass.ClassFactory.createInstance(Object[]
params) at edu.stanford.nlp.util.MetaClass.createInstance(Object[]
objects) at
edu.stanford.nlp.util.ReflectionLoading.loadByReflection(String
className, Object[] arguments) InnerException:
java.lang.reflect.InvocationTargetException HResult=-2146233088
Message=”” Source=stanford-corenlp-3.5.0 StackTrace: at __(Object[] )
at
Java_sun_reflect_ReflectionFactory.FastConstructorAccessorImpl.newInstance(Object[]
args) at java.lang.reflect.Constructor.newInstance(Object[] initargs,
CallerID ) at
edu.stanford.nlp.util.MetaClass.ClassFactory.createInstance(Object[]
params) InnerException:

Here is my code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using java.util;
using java.io;
using edu.stanford.nlp.pipeline;
using Console = System.Console;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// Path to the folder with models extracted from `stanford-corenlp-3.4-models.jar`
var jarRoot = @"D:\Programming_SDKs\stanford-corenlp-full-2015-01-30\stanford-corenlp-3.5.1-models\";

// Text for processing
var text = "Kosgi Santosh sent an email to Stanford University. He didn't get a reply.";

// Annotation pipeline configuration
var props = new Properties();
props.setProperty("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
props.setProperty("sutime.binders", "0");

// We should change current directory, so StanfordCoreNLP could find all the model files automatically
var curDir = Environment.CurrentDirectory;
System.IO.Directory.SetCurrentDirectory(jarRoot);
var pipeline = new StanfordCoreNLP(props);
System.IO.Directory.SetCurrentDirectory(curDir);

// Annotation
var annotation = new Annotation(text);
pipeline.annotate(annotation);

// Result – Pretty Print
using (var stream = new ByteArrayOutputStream())
{
pipeline.prettyPrint(annotation, new PrintWriter(stream));
Console.WriteLine(stream.toString());
stream.close();
}
}
}
}

NOTE: After more exploring, I only get the above error when using the 3.5.1. If I use the corenlp linked to in the original article (stanford-corenlp-full-2014-10-31), it works fine.

Scores for tagged NER results?

Hi Sergey,

Great work on this port by the way!

I'm using the Sandford CoreNLP.NET module and its CRFClassifier to find Named Entities in a document. I am able to get the entities by using classifyWithInlineXML, but would you know how to get the entities along with their relevance/confidence scores (0-1)?

Would love an example in C# on how to do this.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.