Skip to content

Commit b1d8c5c

Browse files
AngledLuffaStanford NLP
authored andcommitted
Merge branch 'release-4.1.0'
1 parent 39e1bda commit b1d8c5c

File tree

8 files changed

+16952
-258
lines changed

8 files changed

+16952
-258
lines changed

doc/corenlp/pom-full.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
</license>
1515
</licenses>
1616
<scm>
17-
<url>https://nlp.stanford.edu/software/stanford-corenlp-full-2020-07-31.zip</url>
18-
<connection>https://nlp.stanford.edu/software/stanford-corenlp-full-2020-07-31.zip</connection>
17+
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.1.0.zip</url>
18+
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.1.0.zip</connection>
1919
</scm>
2020
<developers>
2121
<developer>

doc/releasenotes/v4.1.0/corenlp.out

Lines changed: 16938 additions & 0 deletions
Large diffs are not rendered by default.

itest/src/edu/stanford/nlp/international/german/process/GermanNERCoreLabelProcessorITest.java

Lines changed: 0 additions & 120 deletions
This file was deleted.

itest/src/edu/stanford/nlp/pipeline/GermanNERTokenizerAnnotator.java

Lines changed: 0 additions & 36 deletions
This file was deleted.

pom-java-11.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>edu.stanford.nlp</groupId>
44
<artifactId>stanford-corenlp</artifactId>
5-
<version>4.0.0</version>
5+
<version>4.1.0</version>
66
<packaging>jar</packaging>
77
<name>Stanford CoreNLP</name>
88
<description>Stanford CoreNLP provides a set of natural language analysis tools which can take raw English language text input and give the base forms of words, their parts of speech, whether they are names of companies, people, etc., normalize dates, times, and numeric quantities, mark up the structure of sentences in terms of phrases and word dependencies, and indicate which noun phrases refer to the same entities. It provides the foundational building blocks for higher level text understanding applications.</description>
@@ -14,8 +14,8 @@
1414
</license>
1515
</licenses>
1616
<scm>
17-
<url>https://nlp.stanford.edu/software/stanford-corenlp-full-2020-04-16.zip</url>
18-
<connection>https://nlp.stanford.edu/software/stanford-corenlp-full-2020-04-16.zip</connection>
17+
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.1.0.zip</url>
18+
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.1.0.zip</connection>
1919
</scm>
2020
<developers>
2121
<developer>
@@ -193,7 +193,7 @@
193193
<configuration>
194194
<artifacts>
195195
<artifact>
196-
<file>${project.basedir}/stanford-corenlp-4.0.0-models.jar</file>
196+
<file>${project.basedir}/stanford-corenlp-4.1.0-models.jar</file>
197197
<type>jar</type>
198198
<classifier>models</classifier>
199199
</artifact>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>edu.stanford.nlp</groupId>
44
<artifactId>stanford-corenlp</artifactId>
5-
<version>4.0.0</version>
5+
<version>4.1.0</version>
66
<packaging>jar</packaging>
77
<name>Stanford CoreNLP</name>
88
<description>Stanford CoreNLP provides a set of natural language analysis tools which can take raw English language text input and give the base forms of words, their parts of speech, whether they are names of companies, people, etc., normalize dates, times, and numeric quantities, mark up the structure of sentences in terms of phrases and word dependencies, and indicate which noun phrases refer to the same entities. It provides the foundational building blocks for higher level text understanding applications.</description>
@@ -14,8 +14,8 @@
1414
</license>
1515
</licenses>
1616
<scm>
17-
<url>https://nlp.stanford.edu/software/stanford-corenlp-full-2020-04-16.zip</url>
18-
<connection>https://nlp.stanford.edu/software/stanford-corenlp-full-2020-04-16.zip</connection>
17+
<url>https://nlp.stanford.edu/software/stanford-corenlp-4.1.0.zip</url>
18+
<connection>https://nlp.stanford.edu/software/stanford-corenlp-4.1.0.zip</connection>
1919
</scm>
2020
<developers>
2121
<developer>
@@ -195,7 +195,7 @@
195195
<configuration>
196196
<artifacts>
197197
<artifact>
198-
<file>${project.basedir}/stanford-corenlp-4.0.0-models.jar</file>
198+
<file>${project.basedir}/stanford-corenlp-4.1.0-models.jar</file>
199199
<type>jar</type>
200200
<classifier>models</classifier>
201201
</artifact>

src/edu/stanford/nlp/ie/util/RelationTriple.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package edu.stanford.nlp.ie.util;
22

3+
import java.io.Serializable;
34
import java.text.DecimalFormat;
45
import java.util.*;
56
import java.util.function.ToIntFunction;
@@ -22,7 +23,9 @@
2223
* @author Gabor Angeli
2324
*/
2425
@SuppressWarnings("UnusedDeclaration")
25-
public class RelationTriple implements Comparable<RelationTriple>, Iterable<CoreLabel> {
26+
public class RelationTriple implements Comparable<RelationTriple>, Iterable<CoreLabel>, Serializable {
27+
28+
private static final long serialVersionUID = 43758623469716523L;
2629

2730
/** The subject (first argument) of this triple */
2831
public final List<CoreLabel> subject;

src/edu/stanford/nlp/international/german/process/GermanNERCoreLabelProcessor.java

Lines changed: 0 additions & 91 deletions
This file was deleted.

0 commit comments

Comments
 (0)