Class WeightedEdgeLineProcessor
- java.lang.Object
-
- org.deeplearning4j.graph.data.impl.WeightedEdgeLineProcessor
-
- All Implemented Interfaces:
EdgeLineProcessor<Double>
public class WeightedEdgeLineProcessor extends Object implements EdgeLineProcessor<Double>
-
-
Constructor Summary
Constructors Constructor Description WeightedEdgeLineProcessor(String delimiter, boolean directed)
WeightedEdgeLineProcessor(String delimiter, boolean directed, String... skipLinesStartingWith)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Edge<Double>
processLine(String line)
Process a line of text into an edge.
-
-
-
Method Detail
-
processLine
public Edge<Double> processLine(String line)
Description copied from interface:EdgeLineProcessor
Process a line of text into an edge. May return null if line is not a valid edge (i.e., comment line etc)- Specified by:
processLine
in interfaceEdgeLineProcessor<Double>
-
-