Modifier and Type | Method and Description |
---|---|
static <T extends SequenceElement> |
WordVectorSerializer.readSequenceVectors(File file,
boolean readExtendedTables)
This method loads SequenceVectors from specified file path
|
static <T extends SequenceElement> |
WordVectorSerializer.readSequenceVectors(InputStream stream,
boolean readExtendedTables)
This method loads SequenceVectors from specified input stream
|
static <T extends SequenceElement> |
WordVectorSerializer.readSequenceVectors(SequenceElementFactory<T> factory,
File file)
This method loads previously saved SequenceVectors model from File
|
static <T extends SequenceElement> |
WordVectorSerializer.readSequenceVectors(SequenceElementFactory<T> factory,
InputStream stream)
This method loads previously saved SequenceVectors model from InputStream
|
static <T extends SequenceElement> |
WordVectorSerializer.readSequenceVectors(String path,
boolean readExtendedTables)
This method loads SequenceVectors from specified file path
|
Modifier and Type | Method and Description |
---|---|
static <T extends SequenceElement> |
WordVectorSerializer.writeSequenceVectors(SequenceVectors<T> vectors,
OutputStream stream)
This method saves specified SequenceVectors model to target OutputStream
|
static <T extends SequenceElement> |
WordVectorSerializer.writeSequenceVectors(SequenceVectors<T> vectors,
SequenceElementFactory<T> factory,
File file)
This method saves specified SequenceVectors model to target file
|
static <T extends SequenceElement> |
WordVectorSerializer.writeSequenceVectors(SequenceVectors<T> vectors,
SequenceElementFactory<T> factory,
OutputStream stream)
This method saves specified SequenceVectors model to target OutputStream
|
static <T extends SequenceElement> |
WordVectorSerializer.writeSequenceVectors(SequenceVectors<T> vectors,
SequenceElementFactory<T> factory,
String path)
This method saves specified SequenceVectors model to target file path
|
Modifier and Type | Class and Description |
---|---|
class |
Glove
GlobalVectors standalone implementation for DL4j.
|
Modifier and Type | Class and Description |
---|---|
class |
Node2Vec<V extends SequenceElement,E extends Number>
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
ParagraphVectors
Basic ParagraphVectors (aka Doc2Vec) implementation for DL4j, as wrapper over SequenceVectors
|
Modifier and Type | Field and Description |
---|---|
protected SequenceVectors<T> |
SequenceVectors.Builder.intersectVectors |
Modifier and Type | Method and Description |
---|---|
SequenceVectors<T> |
SequenceVectors.Builder.build()
Build SequenceVectors instance with defined settings/options
|
Modifier and Type | Method and Description |
---|---|
SequenceVectors.Builder<T> |
SequenceVectors.Builder.intersectModel(SequenceVectors<T> intersectVectors,
boolean lockFactor) |
Modifier and Type | Method and Description |
---|---|
void |
VectorsListener.processEvent(ListenerEvent event,
SequenceVectors<T> sequenceVectors,
long argument)
This method is called at each epoch end
|
Modifier and Type | Method and Description |
---|---|
void |
SerializingListener.processEvent(ListenerEvent event,
SequenceVectors<T> sequenceVectors,
long argument)
This method is called at each epoch end
|
void |
ScoreListener.processEvent(ListenerEvent event,
SequenceVectors<T> sequenceVectors,
long argument)
Deprecated.
|
void |
SimilarityListener.processEvent(ListenerEvent event,
SequenceVectors<T> sequenceVectors,
long argument) |
Modifier and Type | Class and Description |
---|---|
class |
Word2Vec
This is Word2Vec implementation based on SequenceVectors
|
Modifier and Type | Method and Description |
---|---|
Word2Vec.Builder |
Word2Vec.Builder.intersectModel(SequenceVectors vectors,
boolean isLocked) |
Copyright © 2019. All rights reserved.