forked from hmetaxa/MVTopicModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adaptations for OpenAIRE, log4Net logging, Semantic Annotations to Po…
…stgres
- Loading branch information
Showing
131 changed files
with
141,703 additions
and
731 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,31 @@ | ||
# MVTopicModel | ||
Multi View Topic Model | ||
# MVTopicModel: Probabilistic Multi View Topic Modelling engine | ||
Omiros Metaxas | ||
|
||
### General Notes | ||
Non-parametric Multi-View Topic Model (MV-HDP) that extends well-established Hierarchical Dirichlet Process (HDP) | ||
incorporating a novel Interacting Pólya Urn scheme (IUM) to model per-document topic distribution. | ||
This way, MV-HDP combines interaction and reinforcement addressing the following major challenges: | ||
1) multi-view modeling leveraging statistical strength among different views, | ||
2) estimation and adaptation to the extent of correlation between the different views that is automatically inferred during inference and | ||
3) scalable inference on massive, real world datasets. The latter is achieved through a parallel Gibbs sampling scheme that utilizes efficient F+Tree data structure. | ||
We consider that estimating the right number of topics is not our primary goal especially in collections of that size. | ||
So, we have implemented a truncated version of the proposed model where the goal is to better estimate priors and model parameters given a maximum number of topics. | ||
Although initially we extended MALLET’s efficient parallel topic model with Sparse LDA sampling, we end up implementing a very different parallel implementation based on F+Trees | ||
that: 1) it is more readable and extensible, | ||
2) it is usually faster in real world big datasets especially in multi-view settings | ||
3) shares model related data structures across threads (contrary to MALLET where each thread retains each own model copy). | ||
We update the model using background threads based on a lock free, queue based scheme minimizing staleness. | ||
Our implementation can scale to massive datasets (over one million documents with meta-data and links) on a single computer. | ||
|
||
Related classes in package cc.mallet.topics: | ||
FastQMVWVParallelTopicModel: Main class | ||
FastQMVWVUpdaterRunnable: Model updating | ||
FastQMVWVWorkerRunnable: Gibbs Sampling | ||
FastQMVWVTopicModelDiagnostics: Related diagnostics | ||
PTMExperiment: Example of how we can load data from SQLite, run MV-Topic Models, calc similarities etc | ||
|
||
Example results (multi view topics on Full ACM & OpenAccess PubMed corpora): | ||
https://1drv.ms/f/s!Aul4avjcWIHpg-Ara0PZzqHeOkyGIw | ||
|
||
### Running from Command line | ||
java -Xms2G -Xmx28G -cp "MVTopicModel-1.0-SNAPSHOT.jar;lib/*" org.madgik.MVTopicModel.PTMFlow |
Binary file not shown.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Manifest-Version: 1.0 | ||
Archiver-Version: Plexus Archiver | ||
Created-By: Apache Maven | ||
Built-By: omiros | ||
Build-Jdk: 1.8.0_91 | ||
|
5 changes: 5 additions & 0 deletions
5
Testoutput/MVTopicModel-1.0-SNAPSHOT/META-INF/maven/org.madgik/MVTopicModel/pom.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#Generated by Maven | ||
#Mon Jul 24 18:19:49 EEST 2017 | ||
version=1.0-SNAPSHOT | ||
groupId=org.madgik | ||
artifactId=MVTopicModel |
83 changes: 83 additions & 0 deletions
83
Testoutput/MVTopicModel-1.0-SNAPSHOT/META-INF/maven/org.madgik/MVTopicModel/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.madgik</groupId> | ||
<artifactId>MVTopicModel</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
<dependencies> | ||
<dependency> | ||
<groupId>cc.mallet</groupId> | ||
<artifactId>mallet</artifactId> | ||
<version>2.0.8</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.json</groupId> | ||
<artifactId>json</artifactId> | ||
<version>20140107</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-httpclient</groupId> | ||
<artifactId>commons-httpclient</artifactId> | ||
<version>3.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.sf.trove4j</groupId> | ||
<artifactId>trove4j</artifactId> | ||
<version>3.0.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sree.textbytes</groupId> | ||
<artifactId>jtopia</artifactId> | ||
<version>0.0.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
<version>42.1.1.jre7</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.xerial</groupId> | ||
<artifactId>sqlite-jdbc</artifactId> | ||
<version>3.8.11.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>trove</groupId> | ||
<artifactId>trove</artifactId> | ||
<version>2.0.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.16</version> | ||
</dependency> | ||
</dependencies> | ||
<repositories> | ||
<!-- for JWNL --> | ||
<repository> | ||
<id>opennlp.sourceforge.net</id> | ||
<url>http://opennlp.sourceforge.net/maven2</url> | ||
</repository> | ||
<!-- for Trove --> | ||
<repository> | ||
<id>maven.ontotext.com</id> | ||
<url>http://maven.ontotext.com/content/repositories/public/</url> | ||
</repository> | ||
<!-- for MTJ --> | ||
<repository> | ||
<id>repo.scalanlp.org</id> | ||
<url>http://repo.scalanlp.org/repo</url> | ||
</repository> | ||
<repository> | ||
<id>xerial</id> | ||
<url>http://repo1.maven.org/maven2/org/xerial</url> | ||
</repository> | ||
|
||
|
||
</repositories> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# To change this license header, choose License Headers in Project Properties. | ||
# To change this template file, choose Tools | Templates | ||
# and open the template in the editor. | ||
TopicsNumber=400 | ||
Iterations=400 | ||
TopWords = 20 | ||
NumModalities=3 | ||
NumOfThreads=4 | ||
NumOfChars=4000 | ||
BurnIn=50 | ||
OptimizeInterval=50 | ||
PruneCnt=800 | ||
PruneLblCnt=80 | ||
PruneMaxPerc=1; | ||
PruneMinPerc=0.1; | ||
SQLConnectionString = jdbc:postgresql://localhost:5432/Tender?user=postgres&password=postgres&ssl=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#------------------------------------------------------------------------------ | ||
# | ||
# The following properties set the logging levels and log appender. The | ||
# log4j.rootCategory variable defines the default log level and one or more | ||
# appenders. For the console, use 'S'. For the daily rolling file, use 'R'. | ||
# For an HTML formatted log, use 'H'. | ||
# | ||
# To override the default (rootCategory) log level, define a property of the | ||
# form (see below for available values): | ||
# | ||
# log4j.logger. = | ||
# | ||
# Available logger names: | ||
# TODO | ||
# | ||
# Possible Log Levels: | ||
# FATAL, ERROR, WARN, INFO, DEBUG | ||
# | ||
#------------------------------------------------------------------------------ | ||
log4j.rootCategory=INFO, S, R | ||
|
||
#log4j.logger.com.dappit.Dapper.parser=ERROR | ||
#log4j.logger.org.w3c.tidy=FATAL | ||
|
||
#------------------------------------------------------------------------------ | ||
# | ||
# The following properties configure the console (stdout) appender. | ||
# See http://logging.apache.org/log4j/docs/api/index.html for details. | ||
# | ||
#------------------------------------------------------------------------------ | ||
log4j.appender.S = org.apache.log4j.ConsoleAppender | ||
log4j.appender.S.layout = org.apache.log4j.PatternLayout | ||
log4j.appender.S.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss} %c{1} [%p] %m%n | ||
|
||
#------------------------------------------------------------------------------ | ||
# | ||
# The following properties configure the Daily Rolling File appender. | ||
# See http://logging.apache.org/log4j/docs/api/index.html for details. | ||
# | ||
#------------------------------------------------------------------------------ | ||
log4j.appender.R = org.apache.log4j.DailyRollingFileAppender | ||
log4j.appender.R.File = logs/MVTopicModelling.log | ||
log4j.appender.R.Append = true | ||
log4j.appender.R.DatePattern = '.'yyy-MM-dd | ||
log4j.appender.R.layout = org.apache.log4j.PatternLayout | ||
log4j.appender.R.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss} %c{1} [%p] %m%n | ||
|
||
|
Binary file added
BIN
+1.17 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/AccentRemover.class
Binary file not shown.
Binary file added
BIN
+1.17 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Arguments$TeeStream.class
Binary file not shown.
Binary file added
BIN
+15.9 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Arguments.class
Binary file not shown.
Binary file added
BIN
+711 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ArmSampler$Envelope.class
Binary file not shown.
Binary file added
BIN
+560 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ArmSampler$Metropolis.class
Binary file not shown.
Binary file added
BIN
+589 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ArmSampler$Point.class
Binary file not shown.
Binary file added
BIN
+10.9 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ArmSampler.class
Binary file not shown.
Binary file added
BIN
+2.56 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ArrayCache.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ArrayProperties.class
Binary file not shown.
Binary file added
BIN
+6.88 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ArrayUtils.class
Binary file not shown.
Binary file added
BIN
+2.05 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Binomial.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+748 Bytes
...utput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/CokusDistributionSampler$CrpData.class
Binary file not shown.
Binary file added
BIN
+14.6 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/CokusDistributionSampler.class
Binary file not shown.
Binary file added
BIN
+4.58 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/CokusRandom.class
Binary file not shown.
Binary file added
BIN
+3.12 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/CokusSampler.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+260 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/DataTask.class
Binary file not shown.
Binary file added
BIN
+2.02 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/DataThreadPool$WorkerThread.class
Binary file not shown.
Binary file added
BIN
+3.57 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/DataThreadPool.class
Binary file not shown.
Binary file added
BIN
+2.86 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Densities.class
Binary file not shown.
Binary file added
BIN
+921 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/DigitFormat.class
Binary file not shown.
Binary file added
BIN
+1.79 KB
...put/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/DirichletEstimation$GammaPolyaArms.class
Binary file not shown.
Binary file added
BIN
+496 Bytes
...t/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/DirichletEstimation$GammaPolyaParams.class
Binary file not shown.
Binary file added
BIN
+16.2 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/DirichletEstimation.class
Binary file not shown.
Binary file added
BIN
+3.25 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/DoubleFormat.class
Binary file not shown.
Binary file added
BIN
+5.31 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ExpDouble.class
Binary file not shown.
Binary file added
BIN
+1.53 KB
...MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ExternalProcess$ProcessStdOutputThread.class
Binary file not shown.
Binary file added
BIN
+1.28 KB
...put/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ExternalProcess$ProcessStdinThread.class
Binary file not shown.
Binary file added
BIN
+4.32 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ExternalProcess.class
Binary file not shown.
Binary file added
BIN
+8.46 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/FastMultinomial.class
Binary file not shown.
Binary file added
BIN
+1.06 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/FileCopy.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.84 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Histogram.class
Binary file not shown.
Binary file added
BIN
+917 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/IndexQuickSort$1.class
Binary file not shown.
Binary file added
BIN
+998 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/IndexQuickSort$2.class
Binary file not shown.
Binary file added
BIN
+11 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/IndexQuickSort.class
Binary file not shown.
Binary file added
BIN
+4.13 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ItemList.class
Binary file not shown.
Binary file added
BIN
+2.94 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/MayaShades.class
Binary file not shown.
Binary file added
BIN
+6.58 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/MutableConf.class
Binary file not shown.
Binary file added
BIN
+6.8 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/MutableConfig.class
Binary file not shown.
Binary file added
BIN
+4.28 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/NamedGroupsRegex.class
Binary file not shown.
Binary file added
BIN
+2.41 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ObjectIo.class
Binary file not shown.
Binary file added
BIN
+1.13 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ParallelFor$1.class
Binary file not shown.
Binary file added
BIN
+1.06 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ParallelFor$Worker.class
Binary file not shown.
Binary file added
BIN
+2.81 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ParallelFor.class
Binary file not shown.
Binary file added
BIN
+15.6 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/PatternString.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+688 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/RandomSamplers$CrpData.class
Binary file not shown.
Binary file added
BIN
+14.7 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/RandomSamplers.class
Binary file not shown.
Binary file added
BIN
+549 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Samplers$CrpData.class
Binary file not shown.
Binary file added
BIN
+13.1 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Samplers.class
Binary file not shown.
Binary file added
BIN
+3.23 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/SetArrayList.class
Binary file not shown.
Binary file added
BIN
+3.75 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/SetVector.class
Binary file not shown.
Binary file added
BIN
+8.03 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/SparseUtils.class
Binary file not shown.
Binary file added
BIN
+5.9 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/StopWatch.class
Binary file not shown.
Binary file added
BIN
+986 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/StringOutputStream.class
Binary file not shown.
Binary file added
BIN
+2.72 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/ThreadPool.class
Binary file not shown.
Binary file added
BIN
+4.16 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/TimeIntervals.class
Binary file not shown.
Binary file added
BIN
+992 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/UnHtml$1$1.class
Binary file not shown.
Binary file added
BIN
+902 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/UnHtml$1.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+24.4 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Vectors.class
Binary file not shown.
Binary file added
BIN
+699 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Which$1.class
Binary file not shown.
Binary file added
BIN
+701 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/knowceans/util/Which$StaticTest.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+64.9 KB
...utput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/FastQMVWVParallelTopicModel.class
Binary file not shown.
Binary file added
BIN
+1.31 KB
...del-1.0-SNAPSHOT/org/madgik/MVTopicModel/FastQMVWVTopicModelDiagnostics$TopicScores.class
Binary file not shown.
Binary file added
BIN
+19.1 KB
...ut/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/FastQMVWVTopicModelDiagnostics.class
Binary file not shown.
Binary file added
BIN
+11.5 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/FastQMVWVUpdaterRunnable.class
Binary file not shown.
Binary file added
BIN
+10.8 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/FastQMVWVWorkerRunnable.class
Binary file not shown.
Binary file added
BIN
+1.06 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMExperiment$1.class
Binary file not shown.
Binary file added
BIN
+1.47 KB
...tput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMExperiment$ExperimentType.class
Binary file not shown.
Binary file added
BIN
+1.23 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMExperiment$Net2BoWType.class
Binary file not shown.
Binary file added
BIN
+1.25 KB
...tput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMExperiment$SimilarityType.class
Binary file not shown.
Binary file added
BIN
+916 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMExperiment$TopicVector.class
Binary file not shown.
Binary file added
BIN
+57.6 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMExperiment.class
Binary file not shown.
Binary file added
BIN
+903 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMFlow$1.class
Binary file not shown.
Binary file added
BIN
+1.42 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMFlow$ExperimentType.class
Binary file not shown.
Binary file added
BIN
+1.18 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMFlow$Net2BoWType.class
Binary file not shown.
Binary file added
BIN
+1.2 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMFlow$SimilarityType.class
Binary file not shown.
Binary file added
BIN
+856 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMFlow$TopicVector.class
Binary file not shown.
Binary file added
BIN
+54 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/PTMFlow.class
Binary file not shown.
Binary file added
BIN
+4.85 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/WordEmbeddingRunnable.class
Binary file not shown.
Binary file added
BIN
+12.6 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/WordEmbeddings.class
Binary file not shown.
Binary file added
BIN
+5.66 KB
...output/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/WordTopicEmbeddingRunnable.class
Binary file not shown.
Binary file added
BIN
+15.7 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/MVTopicModel/WordTopicEmbeddings.class
Binary file not shown.
Binary file added
BIN
+1.28 KB
...Model-1.0-SNAPSHOT/org/madgik/dbpediaspotlightclient/DBpediaAnnotator$AnnotatorType.class
Binary file not shown.
Binary file added
BIN
+1.5 KB
...odel-1.0-SNAPSHOT/org/madgik/dbpediaspotlightclient/DBpediaAnnotator$ExperimentType.class
Binary file not shown.
Binary file added
BIN
+8.67 KB
...output/MVTopicModel-1.0-SNAPSHOT/org/madgik/dbpediaspotlightclient/DBpediaAnnotator.class
Binary file not shown.
Binary file added
BIN
+890 Bytes
.../dbpediaspotlightclient/DBpediaAnnotatorRunnable$LineParser$ManualDatasetLineParser.class
Binary file not shown.
Binary file added
BIN
+1.2 KB
.../madgik/dbpediaspotlightclient/DBpediaAnnotatorRunnable$LineParser$OccTSVLineParser.class
Binary file not shown.
Binary file added
BIN
+903 Bytes
...-1.0-SNAPSHOT/org/madgik/dbpediaspotlightclient/DBpediaAnnotatorRunnable$LineParser.class
Binary file not shown.
Binary file added
BIN
+24.2 KB
...VTopicModel-1.0-SNAPSHOT/org/madgik/dbpediaspotlightclient/DBpediaAnnotatorRunnable.class
Binary file not shown.
Binary file added
BIN
+968 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/dbpediaspotlightclient/DBpediaLink.class
Binary file not shown.
Binary file added
BIN
+4.44 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/dbpediaspotlightclient/DBpediaResource.class
Binary file not shown.
Binary file added
BIN
+1.12 KB
...put/MVTopicModel-1.0-SNAPSHOT/org/madgik/dbpediaspotlightclient/DBpediaResourceType.class
Binary file not shown.
Binary file added
BIN
+848 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/dbpediaspotlightclient/pubText.class
Binary file not shown.
Binary file added
BIN
+2.84 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/utils/CSV2FeatureSequence.class
Binary file not shown.
Binary file added
BIN
+1.11 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/utils/CsvBuilder$1.class
Binary file not shown.
Binary file added
BIN
+6.91 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/utils/CsvBuilder.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+734 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/utils/FastQDelta.class
Binary file not shown.
Binary file added
BIN
+653 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/utils/FeatureSequenceEx.class
Binary file not shown.
Binary file added
BIN
+2.61 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/utils/FeatureSequenceRemovePlural.class
Binary file not shown.
Binary file added
BIN
+8.91 KB
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/utils/HtmlBuilder.class
Binary file not shown.
Binary file added
BIN
+938 Bytes
Testoutput/MVTopicModel-1.0-SNAPSHOT/org/madgik/utils/MixTopicModelTopicAssignment.class
Binary file not shown.
Binary file not shown.
Oops, something went wrong.