Soy un novato con Java y Stanford NLP toolkit e intento usarlos para un proyecto. Específicamente, estoy tratando de usar el kit de herramientas de Stanford Corenlp para anotar un texto (con Netbeans y no con la línea de comandos) y traté de usar el código provisto en http://nlp.stanford.edu/software/corenlp.shtml#Usage (usando la API Stanford CoreNLP) ... ¿alguien puede decirme cómo? Puedo obtener el resultado en un archivo para poder procesarlo aún más?stanford core nlp java output
He intentado imprimir los gráficos y la frase en la consola, solo para ver el contenido. Eso funciona. Básicamente lo que necesitaría es devolver el documento anotado, para poder llamarlo desde mi clase principal y sacar un archivo de texto (si es posible). Estoy tratando de buscar en la API de stanford Corenlp, pero realmente no sé cuál es la mejor manera de devolver ese tipo de información, dada mi falta de experiencia.
Aquí está el código:
Properties props = new Properties();
props.put("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
StanfordCoreNLP pipeline = new StanfordCoreNLP(props);
// read some text in the text variable
String text = "the quick fox jumps over the lazy dog";
// 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);
He intentado imprimir los gráficos y la condena a la consola, sólo para ver el contenido . Eso funciona. Básicamente lo que necesitaría es devolver el documento anotado, para poder llamarlo desde mi clase principal y sacar un archivo de texto (si es posible). Estoy tratando de buscar en la API de stanford Corenlp, pero realmente no sé cuál es la mejor manera de devolver ese tipo de información, dada mi falta de experiencia. Gracias de antemano – SophieM
@SophieM He añadido esa información a la pregunta. En el futuro, siéntete libre de hacerlo tú mismo editando (¡incluso obtienes una insignia!) – SomeKittens
¡gracias! @SomeKittens – SophieM