Uses of Interface
org.deeplearning4j.graph.data.EdgeLineProcessor
-
Packages that use EdgeLineProcessor Package Description org.deeplearning4j.graph.data org.deeplearning4j.graph.data.impl -
-
Uses of EdgeLineProcessor in org.deeplearning4j.graph.data
Methods in org.deeplearning4j.graph.data with parameters of type EdgeLineProcessor Modifier and Type Method Description static <V,E>
Graph<V,E>GraphLoader. loadGraph(String vertexFilePath, String edgeFilePath, VertexLoader<V> vertexLoader, EdgeLineProcessor<E> edgeLineProcessor, boolean allowMultipleEdges)
Load graph, assuming vertices are in one file and edges are in another file.static <V,E>
Graph<V,E>GraphLoader. loadGraph(String path, EdgeLineProcessor<E> lineProcessor, VertexFactory<V> vertexFactory, int numVertices, boolean allowMultipleEdges)
Load a graph into memory, using a given EdgeLineProcessor. -
Uses of EdgeLineProcessor in org.deeplearning4j.graph.data.impl
Classes in org.deeplearning4j.graph.data.impl that implement EdgeLineProcessor Modifier and Type Class Description class
DelimitedEdgeLineProcessor
class
WeightedEdgeLineProcessor
-