Uses of Class
oracle.pgx.api.frames.PgxFrame
-
Packages that use PgxFrame Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.frames This package contains classes and utilities to build and manipulate PGX Frames.oracle.pgx.api.mllib This package contains graph machine learning tools for use with PGX. -
-
Uses of PgxFrame in oracle.pgx.api
Methods in oracle.pgx.api that return PgxFrame Modifier and Type Method Description PgxFrame
PgxSession. createFrame(java.util.List<ColumnDescriptor> schema, java.util.Map<java.lang.String,java.lang.Iterable<?>> columnData, java.lang.String frameName)
Blocking version ofPgxSession.createFrameAsync(List, Map, String)
.default PgxFrame
PgqlResultSet. toFrame()
Copies the content of this result set into a new PgxFrame.Methods in oracle.pgx.api that return types with arguments of type PgxFrame Modifier and Type Method Description PgxFuture<PgxFrame>
PgxSession. createFrameAsync(java.util.List<ColumnDescriptor> schema, java.util.Map<java.lang.String,java.lang.Iterable<?>> columnData, java.lang.String frameName)
Creates a new frame from client-side datadefault PgxFuture<PgxFrame>
PgqlResultSet. toFrameAsync()
Copies the content of this result set into a new PgxFrame.Methods in oracle.pgx.api with parameters of type PgxFrame Modifier and Type Method Description PgxGraph
PgxSession. createGraphFromFrames(java.lang.String graphName, PgxFrame vertexFrame, PgxFrame edgeFrame)
Creates an homogeneous graph from the specified frames that represent the vertices and edges of the graph.PgxFuture<PgxGraph>
PgxSession. createGraphFromFramesAsync(java.lang.String graphName, PgxFrame vertexFrame, PgxFrame edgeFrame)
Creates an homogeneous graph from the specified frames that represent the vertices and edges of the graph. -
Uses of PgxFrame in oracle.pgx.api.frames
Methods in oracle.pgx.api.frames that return PgxFrame Modifier and Type Method Description PgxFrame
PgxFrameBuilder. build(java.lang.String frameName)
Blocking version ofPgxFrameBuilder.buildAsync(String)
.PgxFrame
PgxGenericFrameReader. csv(java.lang.String... uris)
loads the csv PgxFrame synchronouslyPgxFrame
PgxFrame. flatten(java.lang.String... columns)
Create a new PgxFrame with all the specified columns and vector columns flattened into multiple columns.PgxFrame
PgxFrame. flattenAll()
Create a new PgxFrame with all nested columns and vector columns flattened into multiple columns.PgxFrame
PgxFrame. flattenAllInPlace()
Modifies the PgxFrame by flattening all nested columns and vector columns into multiple columns.PgxFrame
PgxFrame. flattenInPlace(java.lang.String... columns)
Modifies the PgxFrame by flattening all the specified columns and vector columns into multiple columns.PgxFrame
PgxFrame. head()
Extracts theheadInPlace(long)
first rows of the frame and put them in a new frame Blocking version ofhead(long)
.PgxFrame
PgxFrame. head(long numRows)
Extracts the numRows first rows of the frame and put them in a new frame Blocking version ofhead(long)
.PgxFrame
PgxFrame. headInPlace()
Keeps only the firstDEFAULT_LIMIT
rows in the frame Blocking version ofheadInPlace()
.PgxFrame
PgxFrame. headInPlace(long numRows)
Keeps only the first numRows rows in the frame Blocking version ofheadInPlace(long)
.PgxFrame
PgxFrame. join(PgxFrame right, java.lang.String joinKeyColumn)
Creates a new PgxFrame by adding the columns of the right frame to this frame aligned on equality of entries in column joinKeyColumn.PgxFrame
PgxFrame. join(PgxFrame right, java.lang.String leftJoinKeyColumn, java.lang.String rightJoinKeyColumn)
Creates a new PgxFrame by adding the columns of the right frame to this frame aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.PgxFrame
PgxFrame. join(PgxFrame right, java.lang.String joinKeyColumn, java.lang.String leftPrefix, java.lang.String rightPrefix)
Creates a new PgxFrame by adding the columns of the right frame to this frame, aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.PgxFrame
PgxFrame. join(PgxFrame right, java.lang.String leftJoinKeyColumn, java.lang.String rightJoinKeyColumn, java.lang.String leftPrefix, java.lang.String rightPrefix)
Creates a new PgxFrame by adding the columns of the right frame to this frame, aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.PgxFrame
PgxFrameReader. load(java.lang.String... uris)
triggers the loading of the PgxFramePgxFrame
PgxGenericFrameReader. pgb(java.lang.String... uris)
loads the csv PgxFrame synchronouslyPgxFrame
PgxFrame. print()
Prints all results toSystem.out
.PgxFrame
PgxFrame. print(long numRows)
PrintsnumRows
results toSystem.out
.PgxFrame
PgxFrame. print(long numResults, long from)
PrintsnumResults
results from the frame toSystem.out
.PgxFrame
PgxFrame. print(java.io.PrintStream printStream, long numResults, long from)
Prints the content of the frame Blocking version ofprintAsync(PrintStream, long, long)
.PgxFrame
PgxFrame. renameColumn(java.lang.String oldColumnName, java.lang.String newColumnName)
Returns a new PgxFrame in which the specified column is renamed as specified Blocking version ofrenameColumnAsync(String, String)
.PgxFrame
PgxFrame. renameColumnInPlace(java.lang.String oldColumnName, java.lang.String newColumnName)
Modifies the PgxFrame by renaming the specified column is renamed as specified Blocking version ofrenameColumnInPlaceAsync(String, String)
.PgxFrame
PgxFrame. renameColumns(ColumnRenaming... columnsWithRenamings)
Returns a new PgxFrame in which the specified columns are renamed as specified Blocking version ofrenameColumnsAsync(ColumnRenaming...)
.PgxFrame
PgxFrame. renameColumnsInPlace(ColumnRenaming... columnsWithRenamings)
Modifies the PgxFrame to rename the specified columns as specified Blocking version ofrenameColumnsInPlaceAsync(ColumnRenaming...)
.PgxFrame
PgxFrame. select(java.lang.String... columns)
Returns a new PgxFrame that contains only the specified columns Blocking version ofselectAsync(String...)
.PgxFrame
PgxFrame. selectInPlace(java.lang.String... columns)
Modifies the PgxFrame to contain only the specified columns Blocking version ofselectInPlaceAsync(String...)
.PgxFrame
PgxFrame. tail()
Extracts the lastDEFAULT_LIMIT
rows of the frame into a new frame.PgxFrame
PgxFrame. tail(long numRows)
Extracts the numRows last rows of the frame and put them in a new framePgxFrame
PgxFrame. tailInPlace()
Modifies the frame to keep the lastDEFAULT_LIMIT
rows of the frame.PgxFrame
PgxFrame. tailInPlace(long numRows)
Modifies the frame to keep the lastDEFAULT_LIMIT
rows of the frame.PgxFrame
PgxFrame. union(PgxFrame b, PgxFrame... others)
Creates a new PgxFrame by concatenating the rows of this frame with the rows of b and others.Methods in oracle.pgx.api.frames that return types with arguments of type PgxFrame Modifier and Type Method Description PgxFuture<PgxFrame>
PgxFrameBuilder. buildAsync(java.lang.String frameName)
Builds a frame with the previously given schema and rowsPgxFuture<PgxFrame>
PgxGenericFrameReader. csvAsync(java.lang.String... uris)
triggers the async loading of the csv PgxFramePgxFuture<PgxFrame>
PgxFrame. flattenAllAsync()
Create a new PgxFrame with all nested columns and vector columns flattened into multiple columns.PgxFuture<PgxFrame>
PgxFrame. flattenAllInPlaceAsync()
Modifies the PgxFrame by flattening all nested columns and vector columns into multiple columns.PgxFuture<PgxFrame>
PgxFrame. flattenAsync(java.lang.String... columns)
Create a new PgxFrame with the specified nested columns and vector columns flattened into multiple columns.PgxFuture<PgxFrame>
PgxFrame. flattenInPlaceAsync(java.lang.String... columns)
Modifies the PgxFrame by flattening all the specified columns and vector columns into multiple columns.PgxFuture<PgxFrame>
PgxFrame. headAsync()
Extracts theheadInPlace(long)
first rows of the frame and put them in a new framePgxFuture<PgxFrame>
PgxFrame. headAsync(long numRows)
Extracts the numRows first rows of the frame and put them in a new framePgxFuture<PgxFrame>
PgxFrame. headInPlaceAsync()
Modifies the frame to only keep the firstheadInPlace(long)
rows in the framePgxFuture<PgxFrame>
PgxFrame. headInPlaceAsync(long numRows)
Modifies the frame to only keep the first numRows rows in the framePgxFuture<PgxFrame>
PgxFrame. joinAsync(PgxFrame right, java.lang.String joinKeyColumn)
Creates a new PgxFrame by adding the columns of the right frame to this frame aligned on equality of entries in column joinKeyColumn.PgxFuture<PgxFrame>
PgxFrame. joinAsync(PgxFrame right, java.lang.String leftJoinKeyColumn, java.lang.String rightJoinKeyColumn)
Creates a new PgxFrame by adding the columns of the right frame to this frame aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame The resulting frame will contain the columns of this frame and the columns of right frame without any prefixes.PgxFuture<PgxFrame>
PgxFrame. joinAsync(PgxFrame right, java.lang.String joinKeyColumn, java.lang.String leftPrefix, java.lang.String rightPrefix)
Creates a new PgxFrame by adding the columns of the right frame to this frame, aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.abstract PgxFuture<PgxFrame>
PgxFrame. joinAsync(PgxFrame right, java.lang.String leftJoinKeyColumn, java.lang.String rightJoinKeyColumn, java.lang.String leftPrefix, java.lang.String rightPrefix)
Creates a new PgxFrame by adding the columns of the right frame to this frame, aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.PgxFuture<PgxFrame>
PgxCsvFrameReader. loadAsync(java.lang.String... uris)
trigger the async loading of the PgxFramePgxFuture<PgxFrame>
PgxDbFrameReader. loadAsync(java.lang.String... uris)
trigger the async loading of the PgxFrameabstract PgxFuture<PgxFrame>
PgxFrameReader. loadAsync(java.lang.String... uris)
trigger the async loading of the PgxFramePgxFuture<PgxFrame>
PgxGenericFrameReader. loadAsync(java.lang.String... uris)
triggers the async loading of the PgxFramePgxFuture<PgxFrame>
PgxPgbFrameReader. loadAsync(java.lang.String... uris)
trigger the async loading of the PgxFramePgxFuture<PgxFrame>
PgxGenericFrameReader. pgbAsync(java.lang.String... uris)
triggers the async loading of the pgb PgxFramePgxFuture<PgxFrame>
PgxFrame. printAsync()
Prints all results toSystem.out
.PgxFuture<PgxFrame>
PgxFrame. printAsync(long numRows)
PrintsnumRows
results toSystem.out
.PgxFuture<PgxFrame>
PgxFrame. printAsync(long numResults, long from)
PrintsnumResults
results from the frame toSystem.out
.PgxFuture<PgxFrame>
PgxFrame. printAsync(java.io.PrintStream printStream, long numResults, long from)
Prints the content of the framePgxFuture<PgxFrame>
PgxFrame. renameColumnAsync(java.lang.String oldColumnName, java.lang.String newColumnName)
Returns a new PgxFrame in which the specified column is renamed as specifiedPgxFuture<PgxFrame>
PgxFrame. renameColumnInPlaceAsync(java.lang.String oldColumnName, java.lang.String newColumnName)
Modifies the PgxFrame by renaming the specified column is renamed as specifiedPgxFuture<PgxFrame>
PgxFrame. renameColumnsAsync(ColumnRenaming... columnsWithRenamings)
Returns a new PgxFrame in which the specified columns are renamed as specifiedPgxFuture<PgxFrame>
PgxFrame. renameColumnsInPlaceAsync(ColumnRenaming... columnsWithRenamings)
Modifies the PgxFrame to rename the specified columns as specifiedPgxFuture<PgxFrame>
PgxFrame. selectAsync(java.lang.String... columns)
Returns a new PgxFrame that contains only the specified columnsPgxFuture<PgxFrame>
PgxFrame. selectInPlaceAsync(java.lang.String... columns)
Modifies the PgxFrame to contain only the specified columnsPgxFuture<PgxFrame>
PgxFrame. tailAsync()
Extracts the lastDEFAULT_LIMIT
rows of the frame and put them in a new framePgxFuture<PgxFrame>
PgxFrame. tailAsync(long numRows)
Extracts the numRows last rows of the frame and put them in a new framePgxFuture<PgxFrame>
PgxFrame. tailInPlaceAsync()
Modifies the frame to keep the lastDEFAULT_LIMIT
rows of the framePgxFuture<PgxFrame>
PgxFrame. tailInPlaceAsync(long numRows)
Modifies the frame to keep the last numRows rows of the frameabstract PgxFuture<PgxFrame>
PgxFrame. unionAsync(PgxFrame b, PgxFrame... others)
Creates a new PgxFrame by concatenating the rows of this frame with the rows of b and others.Methods in oracle.pgx.api.frames with parameters of type PgxFrame Modifier and Type Method Description PgxEdgeProviderFromFramesCreator
AbstractPgxEntityProviderFromFramesCreator. edgeProvider(java.lang.String providerName, java.lang.String sourceVertexProvider, java.lang.String destinationVertexProvider, PgxFrame frame)
Add a new edge provider to the underlyingPgxGraphFromFramesCreator
PgxEdgeProviderFromFramesCreator
PgxGraphFromFramesCreator. edgeProvider(java.lang.String providerName, java.lang.String sourceVertexProvider, java.lang.String destinationVertexProvider, PgxFrame frame)
Add a new edge provider to the graph creatorPgxFrame
PgxFrame. join(PgxFrame right, java.lang.String joinKeyColumn)
Creates a new PgxFrame by adding the columns of the right frame to this frame aligned on equality of entries in column joinKeyColumn.PgxFrame
PgxFrame. join(PgxFrame right, java.lang.String leftJoinKeyColumn, java.lang.String rightJoinKeyColumn)
Creates a new PgxFrame by adding the columns of the right frame to this frame aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.PgxFrame
PgxFrame. join(PgxFrame right, java.lang.String joinKeyColumn, java.lang.String leftPrefix, java.lang.String rightPrefix)
Creates a new PgxFrame by adding the columns of the right frame to this frame, aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.PgxFrame
PgxFrame. join(PgxFrame right, java.lang.String leftJoinKeyColumn, java.lang.String rightJoinKeyColumn, java.lang.String leftPrefix, java.lang.String rightPrefix)
Creates a new PgxFrame by adding the columns of the right frame to this frame, aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.PgxFuture<PgxFrame>
PgxFrame. joinAsync(PgxFrame right, java.lang.String joinKeyColumn)
Creates a new PgxFrame by adding the columns of the right frame to this frame aligned on equality of entries in column joinKeyColumn.PgxFuture<PgxFrame>
PgxFrame. joinAsync(PgxFrame right, java.lang.String leftJoinKeyColumn, java.lang.String rightJoinKeyColumn)
Creates a new PgxFrame by adding the columns of the right frame to this frame aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame The resulting frame will contain the columns of this frame and the columns of right frame without any prefixes.PgxFuture<PgxFrame>
PgxFrame. joinAsync(PgxFrame right, java.lang.String joinKeyColumn, java.lang.String leftPrefix, java.lang.String rightPrefix)
Creates a new PgxFrame by adding the columns of the right frame to this frame, aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.abstract PgxFuture<PgxFrame>
PgxFrame. joinAsync(PgxFrame right, java.lang.String leftJoinKeyColumn, java.lang.String rightJoinKeyColumn, java.lang.String leftPrefix, java.lang.String rightPrefix)
Creates a new PgxFrame by adding the columns of the right frame to this frame, aligned on equality of entries in column leftJoinKeyColumn for this frame and column rightJoinKeyColumn for the right frame.PgxFrame
PgxFrame. union(PgxFrame b, PgxFrame... others)
Creates a new PgxFrame by concatenating the rows of this frame with the rows of b and others.abstract PgxFuture<PgxFrame>
PgxFrame. unionAsync(PgxFrame b, PgxFrame... others)
Creates a new PgxFrame by concatenating the rows of this frame with the rows of b and others.PgxVertexProviderFromFramesCreator
AbstractPgxEntityProviderFromFramesCreator. vertexProvider(java.lang.String providerName, PgxFrame frame)
Add a new vertex provider to the underlyingPgxGraphFromFramesCreator
PgxVertexProviderFromFramesCreator
PgxGraphFromFramesCreator. vertexProvider(java.lang.String providerName, PgxFrame frame)
Add a new vertex provider to the graph creatorConstructors in oracle.pgx.api.frames with parameters of type PgxFrame Constructor Description PgxCsvFrameStorer(PgxSession session, oracle.pgx.api.internal.Core core, PgxFrame frame)
PgxDbFrameStorer(PgxSession session, oracle.pgx.api.internal.Core core, PgxFrame frame, java.util.function.Supplier<java.lang.String> keystorePathSupplier, java.util.function.Supplier<char[]> keystorePasswordSupplier)
PgxGenericFrameStorer(PgxSession session, oracle.pgx.api.internal.Core core, PgxFrame frame, java.util.function.Supplier<java.lang.String> keystorePathSupplier, java.util.function.Supplier<char[]> keystorePasswordSupplier)
PgxPgbFrameStorer(PgxSession session, oracle.pgx.api.internal.Core core, PgxFrame frame)
Constructor parameters in oracle.pgx.api.frames with type arguments of type PgxFrame Constructor Description PgxFrameBuilder(SessionContext sessionContext, oracle.pgx.api.internal.Core core, java.util.List<ColumnDescriptor> schema, java.util.function.Function<oracle.pgx.api.internal.FrameMetaData,PgxFrame> buildCallback)
Create a PgxFrameBuilder, this will also create a FrameBuilder on the server. -
Uses of PgxFrame in oracle.pgx.api.mllib
Methods in oracle.pgx.api.mllib that return PgxFrame Modifier and Type Method Description PgxFrame
DeepWalkModel. computeSimilars(java.lang.Object vertexId, int k)
Blocking version ofDeepWalkModel.computeSimilarsAsync(Object, int)
.PgxFrame
DeepWalkModel. computeSimilars(java.util.List<java.lang.Object> vertexIds, int k)
Blocking version ofDeepWalkModel.computeSimilarsAsync(List, int)
.PgxFrame
Pg2vecModel. computeSimilars(java.lang.Object graphletId, int k)
Blocking version ofPg2vecModel.computeSimilarsAsync(Object, int)
.PgxFrame
Pg2vecModel. computeSimilars(java.util.List<java.lang.Object> graphletIds, int k)
Blocking version ofPg2vecModel.computeSimilarsAsync(List, int)
.PgxFrame
SupervisedEdgeWiseModel. evaluate(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Blocking version ofSupervisedEdgeWiseModel.evaluateAsync(PgxGraph, Iterable)
.PgxFrame
SupervisedEdgeWiseModel. evaluate(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)
Blocking version ofSupervisedEdgeWiseModel.evaluateAsync(PgxGraph, Iterable, float)
.<ID> PgxFrame
SupervisedGraphWiseModel. evaluate(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Blocking version ofSupervisedGraphWiseModel.evaluateAsync(PgxGraph, Iterable)
.<ID> PgxFrame
SupervisedGraphWiseModel. evaluate(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Blocking version ofSupervisedGraphWiseModel.evaluateAsync(PgxGraph, Iterable)
.<ID> PgxFrame
UnsupervisedAnomalyDetectionGraphWiseModel. evaluateAnomalyLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, java.lang.String vertexAnomalyPropertyName, java.lang.Object anomalyPropertyValue, float threshold)
<ID> PgxFrame
VertexAnomalyDetectionModel. evaluateAnomalyLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, java.lang.String vertexAnomalyPropertyName, java.lang.Object anomalyPropertyValue, float threshold)
PgxFrame
SupervisedEdgeWiseModel. evaluateLabels(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Blocking version ofSupervisedEdgeWiseModel.evaluateLabelsAsync(PgxGraph, Iterable)
.PgxFrame
SupervisedEdgeWiseModel. evaluateLabels(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)
Blocking version ofSupervisedEdgeWiseModel.evaluateLabelsAsync(PgxGraph, Iterable, float)
.<ID> PgxFrame
SupervisedGraphWiseModel. evaluateLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Blocking version ofSupervisedGraphWiseModel.evaluateLabelsAsync(PgxGraph, Iterable)
.<ID> PgxFrame
SupervisedGraphWiseModel. evaluateLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Blocking version ofSupervisedGraphWiseModel.evaluateLabelsAsync(PgxGraph, Iterable, float)
.PgxFrame
Pg2vecModel. getTrainedGraphletVectors()
Blocking version ofPg2vecModel.getTrainedGraphletVectorsAsync()
.PgxFrame
DeepWalkModel. getTrainedVertexVectors()
Blocking version ofDeepWalkModel.getTrainedVertexVectorsAsync()
.PgxFrame
EdgeWiseModel. getTrainingLog()
Blocking version ofEdgeWiseModel.getTrainingLogAsync()
.PgxFrame
GraphWiseModel. getTrainingLog()
Blocking version ofGraphWiseModel.getTrainingLogAsync()
.PgxFrame
SupervisedEdgeWiseModel. infer(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Blocking version ofSupervisedEdgeWiseModel.inferAsync(PgxGraph, Iterable)
.PgxFrame
SupervisedEdgeWiseModel. infer(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)
Blocking version ofSupervisedEdgeWiseModel.inferAsync(PgxGraph, Iterable, float)
.<ID> PgxFrame
SupervisedGraphWiseModel. infer(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Blocking version ofSupervisedGraphWiseModel.inferAsync(PgxGraph, Iterable)
.<ID> PgxFrame
SupervisedGraphWiseModel. infer(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Blocking version ofSupervisedGraphWiseModel.inferAsync(PgxGraph, Iterable)
.<ID> PgxFrame
UnsupervisedAnomalyDetectionGraphWiseModel. inferAnomalyLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
<ID> PgxFrame
VertexAnomalyDetectionModel. inferAnomalyLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Blocking version ofVertexAnomalyDetectionModel.inferAnomalyLabelsAsync(PgxGraph, Iterable, float)
.<ID> PgxFrame
UnsupervisedAnomalyDetectionGraphWiseModel. inferAnomalyScores(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
<ID> PgxFrame
VertexAnomalyDetectionModel. inferAnomalyScores(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Blocking version ofVertexAnomalyDetectionModel.inferAnomalyScoresAsync(PgxGraph, Iterable)
.PgxFrame
EdgeWiseModel. inferEmbeddings(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Blocking version ofEdgeWiseModel.inferEmbeddingsAsync(PgxGraph, Iterable)
.<ID> PgxFrame
GraphWiseModel. inferEmbeddings(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Blocking version ofGraphWiseModel.inferEmbeddingsAsync(PgxGraph, Iterable)
.PgxFrame
Pg2vecModel. inferGraphletVector(PgxGraph graph)
Blocking version ofPg2vecModel.inferGraphletVectorAsync(PgxGraph)
.PgxFrame
Pg2vecModel. inferGraphletVectorBatched(PgxGraph graph)
Blocking version ofPg2vecModel.inferGraphletVectorBatchedAsync(PgxGraph)
.PgxFrame
SupervisedEdgeWiseModel. inferLabels(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Blocking version ofSupervisedEdgeWiseModel.inferLabelsAsync(PgxGraph, Iterable)
.PgxFrame
SupervisedEdgeWiseModel. inferLabels(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)
Blocking version ofSupervisedEdgeWiseModel.inferLabelsAsync(PgxGraph, Iterable, float)
.<ID> PgxFrame
SupervisedGraphWiseModel. inferLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Blocking version ofSupervisedGraphWiseModel.inferLabelsAsync(PgxGraph, Iterable)
.<ID> PgxFrame
SupervisedGraphWiseModel. inferLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Blocking version ofSupervisedGraphWiseModel.inferLabelsAsync(PgxGraph, Iterable, float)
.PgxFrame
SupervisedEdgeWiseModel. inferLogits(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Blocking version ofSupervisedEdgeWiseModel.inferLogitsAsync(PgxGraph, Iterable)
.<ID> PgxFrame
SupervisedGraphWiseModel. inferLogits(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Blocking version ofSupervisedGraphWiseModel.inferLogitsAsync(PgxGraph, Iterable)
.Methods in oracle.pgx.api.mllib that return types with arguments of type PgxFrame Modifier and Type Method Description PgxFuture<PgxFrame>
DeepWalkModel. computeSimilarsAsync(java.lang.Object vertexIdObject, int k)
Computes the top-k similar vertices for a given vertexPgxFuture<PgxFrame>
DeepWalkModel. computeSimilarsAsync(java.util.List<java.lang.Object> vertexIdObjects, int k)
Computes the top-k similar vertices for a list of input verticesPgxFuture<PgxFrame>
Pg2vecModel. computeSimilarsAsync(java.lang.Object graphletIdObject, int k)
Computes the top-k similar graphlets for a given graphletPgxFuture<PgxFrame>
Pg2vecModel. computeSimilarsAsync(java.util.List<java.lang.Object> graphletIdObjects, int k)
Computes the top-k similar graphlets for a list of input graphlets<ID> PgxFuture<PgxFrame>
UnsupervisedAnomalyDetectionGraphWiseModel. evaluateAnomalyLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, java.lang.String vertexAnomalyPropertyName, java.lang.Object anomalyPropertyValue, float threshold)
<ID> PgxFuture<PgxFrame>
VertexAnomalyDetectionModel. evaluateAnomalyLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, java.lang.String vertexAnomalyPropertyName, java.lang.Object anomalyPropertyValue, float threshold)
Evaluates anomaly detection performance statistics for the specified vertices.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. evaluateAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Evaluates performance statistics for the specified edges.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. evaluateAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)
Evaluates performance statistics for the specified vertices.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. evaluateAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Evaluates (macro averaged) classification performance statistics for the specified vertices.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. evaluateAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Evaluates (macro averaged) classification performance statistics for the specified vertices.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. evaluateLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Evaluates (macro averaged) classification performance statistics for the specified edges.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. evaluateLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)
Evaluates (macro averaged) classification performance statistics for the specified vertices.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. evaluateLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Evaluates (macro averaged) classification performance statistics for the specified vertices.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. evaluateLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Evaluates (macro averaged) classification performance statistics for the specified vertices.PgxFuture<PgxFrame>
Pg2vecModel. getTrainedGraphletVectorsAsync()
Gets the trained graphlet vectors for the current pg2vec modelPgxFuture<PgxFrame>
DeepWalkModel. getTrainedVertexVectorsAsync()
Gets the trained vertex vectors for the current DeepWalk modelabstract PgxFuture<PgxFrame>
EdgeWiseModel. getTrainingLogAsync()
Get the training log that has evaluation results from validation.abstract PgxFuture<PgxFrame>
GraphWiseModel. getTrainingLogAsync()
Gets the training log that has evaluation results from validation.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. getTrainingLogAsync()
Gets the training log that has evaluation results from validation.PgxFuture<PgxFrame>
SupervisedGraphWiseModel. getTrainingLogAsync()
Gets the training log that has evaluation results from validation.PgxFuture<PgxFrame>
UnsupervisedEdgeWiseModel. getTrainingLogAsync()
Gets the training log that has evaluation results from validation.PgxFuture<PgxFrame>
UnsupervisedGraphWiseModel. getTrainingLogAsync()
Gets the training log that has evaluation results from validation.<ID> PgxFuture<PgxFrame>
UnsupervisedAnomalyDetectionGraphWiseModel. inferAnomalyLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
<ID> PgxFuture<PgxFrame>
VertexAnomalyDetectionModel. inferAnomalyLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Infers the anomaly labels for the specified vertices.<ID> PgxFuture<PgxFrame>
UnsupervisedAnomalyDetectionGraphWiseModel. inferAnomalyScoresAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
<ID> PgxFuture<PgxFrame>
VertexAnomalyDetectionModel. inferAnomalyScoresAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Infers the anomaly scores for the specified vertices.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. inferAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Does inference for the specified edges.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. inferAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)
Does the inference for the specified edges.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. inferAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Does inference for the specified vertices.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. inferAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Does inference for the specified vertices.abstract PgxFuture<PgxFrame>
EdgeWiseModel. inferEmbeddingsAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Infers the embeddings for the specified edges.abstract <ID> PgxFuture<PgxFrame>
GraphWiseModel. inferEmbeddingsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Infers the embeddings for the specified vertices.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. inferEmbeddingsAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Infers the embeddings for the specified edges.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. inferEmbeddingsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Infers the embeddings for the specified vertices.PgxFuture<PgxFrame>
UnsupervisedEdgeWiseModel. inferEmbeddingsAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Infers the embeddings for the specified edges.<ID> PgxFuture<PgxFrame>
UnsupervisedGraphWiseModel. inferEmbeddingsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Infers the embeddings for the specified vertices.PgxFuture<PgxFrame>
Pg2vecModel. inferGraphletVectorAsync(PgxGraph graph)
Infers the vector of the input graphletPgxFuture<PgxFrame>
Pg2vecModel. inferGraphletVectorBatchedAsync(PgxGraph graph)
Infers the vectors of the input graphletsPgxFuture<PgxFrame>
SupervisedEdgeWiseModel. inferLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Infers the labels for the specified edges.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. inferLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)
Infers the labels for the specified edges.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. inferLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Infers the labels for the specified vertices.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. inferLabelsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)
Infers the labels for the specified vertices.PgxFuture<PgxFrame>
SupervisedEdgeWiseModel. inferLogitsAsync(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)
Infers the prediction logits for the specified edges.<ID> PgxFuture<PgxFrame>
SupervisedGraphWiseModel. inferLogitsAsync(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)
Infers the prediction logits for the specified vertices.
-