Uses of Interface
org.deeplearning4j.models.embeddings.reader.ModelUtils
-
-
Uses of ModelUtils in org.deeplearning4j.models.embeddings.reader.impl
Classes in org.deeplearning4j.models.embeddings.reader.impl that implement ModelUtils Modifier and Type Class Description class
BasicModelUtils<T extends SequenceElement>
class
FlatModelUtils<T extends SequenceElement>
-
Uses of ModelUtils in org.deeplearning4j.models.embeddings.wordvectors
Fields in org.deeplearning4j.models.embeddings.wordvectors declared as ModelUtils Modifier and Type Field Description protected ModelUtils<T>
WordVectorsImpl. modelUtils
Methods in org.deeplearning4j.models.embeddings.wordvectors with parameters of type ModelUtils Modifier and Type Method Description void
WordVectors. setModelUtils(ModelUtils utils)
Specifies ModelUtils to be used to access modelvoid
WordVectorsImpl. setModelUtils(@NonNull ModelUtils modelUtils)
-
Uses of ModelUtils in org.deeplearning4j.models.fasttext
Methods in org.deeplearning4j.models.fasttext with parameters of type ModelUtils Modifier and Type Method Description void
FastText. setModelUtils(ModelUtils utils)
-
Uses of ModelUtils in org.deeplearning4j.models.node2vec
Methods in org.deeplearning4j.models.node2vec with parameters of type ModelUtils Modifier and Type Method Description Node2Vec.Builder<V,E>
Node2Vec.Builder. modelUtils(@NonNull ModelUtils<V> modelUtils)
-
Uses of ModelUtils in org.deeplearning4j.models.paragraphvectors
Methods in org.deeplearning4j.models.paragraphvectors with parameters of type ModelUtils Modifier and Type Method Description ParagraphVectors.Builder
ParagraphVectors.Builder. modelUtils(@NonNull ModelUtils<VocabWord> modelUtils)
Sets ModelUtils that gonna be used as provider for utility methods: similarity(), wordsNearest(), accuracy(), etc -
Uses of ModelUtils in org.deeplearning4j.models.sequencevectors
Fields in org.deeplearning4j.models.sequencevectors declared as ModelUtils Modifier and Type Field Description protected ModelUtils<T>
SequenceVectors.Builder. modelUtils
Methods in org.deeplearning4j.models.sequencevectors with parameters of type ModelUtils Modifier and Type Method Description SequenceVectors.Builder<T>
SequenceVectors.Builder. modelUtils(@NonNull ModelUtils<T> modelUtils)
ModelUtils implementation, that will be used to access model. -
Uses of ModelUtils in org.deeplearning4j.models.word2vec
Methods in org.deeplearning4j.models.word2vec with parameters of type ModelUtils Modifier and Type Method Description Word2Vec.Builder
Word2Vec.Builder. modelUtils(@NonNull ModelUtils<VocabWord> modelUtils)
Sets ModelUtils that gonna be used as provider for utility methods: similarity(), wordsNearest(), accuracy(), etcvoid
StaticWord2Vec. setModelUtils(ModelUtils utils)
Specifies ModelUtils to be used to access model PLEASE NOTE: This method has no effect in this implementation.
-