Skip to content

Commit

Permalink
Release 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
khituras committed Aug 10, 2018
1 parent 8eec984 commit 61aa24c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
1 change: 1 addition & 0 deletions configs/config_template_testmodeling.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<subset>
<table>testmodeling</table>
<reset>false</reset>
<annotationpgschema>_data_xmi</annotationpgschema>
</subset>
<costosys>
<configurationFile>costosys.xml</configurationFile>
Expand Down
6 changes: 6 additions & 0 deletions julielab-topic-modeling/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
MalletTopicModelGenerator.log
.idea
*iml
/target
src/test/resources/test_topic_model.ser
src/test/resources/test_model
17 changes: 9 additions & 8 deletions julielab-topic-modeling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jcore-version>2.3.0</jcore-version>
</properties>

<dependencies>
Expand All @@ -30,17 +31,17 @@
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-jtbd-ae-biomedical-english</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>${jcore-version}</version>
</dependency>
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-jsbd-ae-biomedical-english</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>${jcore-version}</version>
</dependency>
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-biolemmatizer-ae</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>${jcore-version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -55,7 +56,7 @@
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-pubmed-reader</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>${jcore-version}</version>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
Expand All @@ -73,17 +74,17 @@
<artifactId>
jcore-opennlp-postag-ae-biomedical-english
</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>${jcore-version}</version>
</dependency>
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-xmi-db-reader</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>${jcore-version}</version>
</dependency>
<dependency>
<groupId>de.julielab</groupId>
<artifactId>jcore-db-reader</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>${jcore-version}</version>
</dependency>
<dependency>
<groupId>de.julielab</groupId>
Expand Down Expand Up @@ -144,6 +145,6 @@
<artifactId>julielab-parent</artifactId>
<version>2.2.0</version>
</parent>
<version>1.9.0-SNAPSHOT</version>
<version>1.9.0</version>
<artifactId>julielab-topic-modeling</artifactId>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,6 @@ public InstanceList malletPreprocess(List<TokenSequence> data) {
InstanceList instances = new InstanceList(new SerialPipes(pipeList));
ArrayIterator dataListIterator = new ArrayIterator(data);
instances.addThruPipe(dataListIterator);
LOGGER.info("MALLeT instances created");
return instances;
}

Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 61aa24c

Please sign in to comment.