So I've a trained model that was created through command line with MALLET. I want to, somehow, import this trained model into a Java class. I looked through MALLET's API documentation and came across their ParallelTopicModel
class but couldn't find a suitable way to import the model as a ParallelTopicModel
which is what I want to do.
I know that it's possible to train a model using the MALLET Java API inside the Java class itself but I do not want to do this.
Is this possible?