Uses of Class
org.deeplearning4j.text.movingwindow.Window
-
Packages that use Window Package Description org.deeplearning4j.text.movingwindow -
-
Uses of Window in org.deeplearning4j.text.movingwindow
Methods in org.deeplearning4j.text.movingwindow that return Window Modifier and Type Method Description static Window
Windows. windowForWordInPosition(int windowSize, int wordPos, List<String> sentence)
Creates a sliding window from textMethods in org.deeplearning4j.text.movingwindow that return types with arguments of type Window Modifier and Type Method Description static List<Window>
Windows. windows(InputStream words, int windowSize)
Constructs a list of window of size windowSize.static List<Window>
Windows. windows(InputStream words, TokenizerFactory tokenizerFactory, int windowSize)
Constructs a list of window of size windowSize.static List<Window>
Windows. windows(String words)
Constructs a list of window of size windowSize.static List<Window>
Windows. windows(String words, int windowSize)
Constructs a list of window of size windowSize.static List<Window>
Windows. windows(String words, @NonNull TokenizerFactory tokenizerFactory, int windowSize, WordVectors vectors)
Constructs a list of window of size windowSize.static List<Window>
Windows. windows(String words, TokenizerFactory tokenizerFactory)
Constructs a list of window of size windowSize.static List<Window>
Windows. windows(List<String> words, int windowSize)
Constructs a list of window of size windowSizeMethods in org.deeplearning4j.text.movingwindow with parameters of type Window Modifier and Type Method Description static org.nd4j.linalg.api.ndarray.INDArray
WindowConverter. asExampleArray(Window window, Word2Vec vec, boolean normalize)
Converts a window (each word in the window) in to a vector.static org.nd4j.linalg.api.ndarray.INDArray
WindowConverter. asExampleMatrix(Window window, Word2Vec vec)
Converts a window (each word in the window) in to a vector.Method parameters in org.deeplearning4j.text.movingwindow with type arguments of type Window Modifier and Type Method Description static org.nd4j.linalg.api.ndarray.INDArray
WordConverter. toInputMatrix(List<Window> windows, Word2Vec vec)
-