Load GemSim Doc2Vec

I have some models created by gemsim to allow me to pass a label and get the documents whose content most closely resembles the content of the passed in document.

In python I use sims = model.dv.most_similar(positive=[c_ID], topn=6) where c_ID is the label to get the closest matches. I would like to use these models in my kotlin application.

It seems like loading a word2vec is easy in dl4j but I cannot find anyway to load my doc2vec model into something like a ParagraphVectors model in DL4J.

Is it possible to load the gemsim model directly into DL4J and call an equivalent most_similar function or would I be better suited by building the whole model using DL4J and if that is the case can someone point me to a good example.

Thanks,
Nathan