This is an automated email from the ASF dual-hosted git repository.

mawiesne pushed a change to branch 
OPENNLP-1613-Provide-basic-set-of-JUnit-tests-for-Coref-component
in repository https://gitbox.apache.org/repos/asf/opennlp-sandbox.git


 discard ed5996b  OPENNLP-1613 Provide basic set of JUnit tests for Coref 
component - integrates JUnit into this components pom.xml - adds 
DefaultsLinkerTest and TreebankLinkerTest working with old binary Coref files 
(OpenNLP v1.4) - adds CorefModelTest to check handling of CorefModel - changes 
wordnet dependency to extjwnl (already in the sandbox) to avoid custom 
configuration hell and absolute path dependencies - adds wordnet-dict v3.1 in 
test scope, via download plugin - removes duplic [...]
     new 275862c  OPENNLP-1613 Provide basic set of JUnit tests for Coref 
component - integrates JUnit into this components pom.xml - adds CorefModelTest 
to check handling of CorefModel - adds DefaultsLinkerTest and 
TreebankLinkerTest working with old binary Coref files (OpenNLP v1.4) - adds 
DefaultLinkerModelTrainingTest to check training of Coref models from scratch - 
adds raw resource files in a compressed form to check training of model files - 
changes wordnet dependency to extjwnl (a [...]

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ed5996b)
            \
             N -- N -- N   
refs/heads/OPENNLP-1613-Provide-basic-set-of-JUnit-tests-for-Coref-component 
(275862c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../main/java/opennlp/tools/coref/CorefModel.java  | 164 +++++++++++++--------
 .../main/java/opennlp/tools/coref/CorefParse.java  |   4 +-
 .../main/java/opennlp/tools/coref/CorefSample.java |   3 +-
 .../java/opennlp/tools/coref/DiscourseElement.java |   8 +-
 .../java/opennlp/tools/coref/DiscourseEntity.java  |   4 +-
 .../java/opennlp/tools/coref/DiscourseModel.java   |  19 +--
 .../tools/coref/dictionary/DictionaryFactory.java  |   3 +-
 .../tools/coref/dictionary/JWNLDictionary.java     |   1 -
 .../tools/coref/{ => linker}/AbstractLinker.java   |  24 +--
 .../opennlp/tools/coref/linker/DefaultLinker.java  |  19 ++-
 .../opennlp/tools/coref/linker/TreebankLinker.java |  12 +-
 .../resolver/DefaultNonReferentialResolver.java    |  16 +-
 .../tools/coref/resolver/MaxentResolver.java       |   7 +-
 .../java/opennlp/tools/coref/sim/GenderModel.java  |   3 +-
 .../tools/coref/sim/MaxentCompatibilityModel.java  |  13 +-
 .../opennlp/tools/coref/AbstractCorefTest.java     |   1 +
 .../java/opennlp/tools/coref/CorefModelTest.java   | 108 ++++++++++++--
 .../tools/coref/linker/AbstractLinkerTest.java     |   6 +-
 .../linker/DefaultLinkerModelTrainingTest.java     |  60 ++++++++
 .../tools/coref/linker/DefaultLinkerTest.java      |   4 +-
 .../tools/coref/linker/TreebankLinkerTest.java     |   4 +-
 .../resolver/DefaultLinkerModelTrainingTest.java   |  36 -----
 opennlp-coref/src/test/resources/log4j2.xml        |   5 +-
 opennlp-coref/src/test/resources/models/notes.txt  |   7 +
 .../resources/models/training/cmodel.events.gz     | Bin 0 -> 118396 bytes
 .../resources/models/training/defmodel.events.gz   | Bin 0 -> 991142 bytes
 .../resources/models/training/fmodel.events.gz     | Bin 0 -> 1869 bytes
 .../test/resources/models/training/gen.events.gz   | Bin 0 -> 19908 bytes
 .../resources/models/training/imodel.events.gz     | Bin 0 -> 24282 bytes
 .../resources/models/training/plmodel.events.gz    | Bin 0 -> 90258 bytes
 .../resources/models/training/pmodel.events.gz     | Bin 0 -> 90120 bytes
 .../resources/models/training/pnmodel.events.gz    | Bin 0 -> 65758 bytes
 .../resources/models/training/tmodel.events.gz     | Bin 0 -> 42299 bytes
 33 files changed, 354 insertions(+), 177 deletions(-)
 rename opennlp-coref/src/main/java/opennlp/tools/coref/{ => 
linker}/AbstractLinker.java (93%)
 create mode 100644 
opennlp-coref/src/test/java/opennlp/tools/coref/linker/DefaultLinkerModelTrainingTest.java
 delete mode 100644 
opennlp-coref/src/test/java/opennlp/tools/coref/resolver/DefaultLinkerModelTrainingTest.java
 create mode 100644 opennlp-coref/src/test/resources/models/notes.txt
 create mode 100755 
opennlp-coref/src/test/resources/models/training/cmodel.events.gz
 create mode 100755 
opennlp-coref/src/test/resources/models/training/defmodel.events.gz
 create mode 100755 
opennlp-coref/src/test/resources/models/training/fmodel.events.gz
 create mode 100755 
opennlp-coref/src/test/resources/models/training/gen.events.gz
 create mode 100755 
opennlp-coref/src/test/resources/models/training/imodel.events.gz
 create mode 100755 
opennlp-coref/src/test/resources/models/training/plmodel.events.gz
 create mode 100755 
opennlp-coref/src/test/resources/models/training/pmodel.events.gz
 create mode 100755 
opennlp-coref/src/test/resources/models/training/pnmodel.events.gz
 create mode 100755 
opennlp-coref/src/test/resources/models/training/tmodel.events.gz

Reply via email to