我正在为Stanford Parser使用Proxem包装器,而我在ASP.NET MVC 3和4应用程序中遇到了Parsing的问题。它抛出
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object.
at Proxem.Antelope.Parsing.Sentence.a(List`1 A_0)
at Proxem.Antelope.Parsing.Sentence..ctor(SerializationInfo info, StreamingContext ctxt)
--- End of inner exception stack trace ---
在WPF和控制台应用程序中,它可以正常工作。
答案 0 :(得分:0)
我修好了。构造函数解析器(字符串路径)正在使用poolsize Parser(string path, int poolsize)
调用构造函数value = 1
。使用带有值的构造函数Parser(string path, int poolsize)
- > Parser(yourPath,0)使其适用于MVC和WCF。