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 PgxFramePgxSession. 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 PgxFramePgqlResultSet. 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 PgxGraphPgxSession. 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 PgxFramePgxFrameBuilder. build(java.lang.String frameName)Blocking version ofPgxFrameBuilder.buildAsync(String).PgxFramePgxGenericFrameReader. csv(java.lang.String... uris)loads the csv PgxFrame synchronouslyPgxFramePgxFrame. flatten(java.lang.String... columns)Create a new PgxFrame with all the specified columns and vector columns flattened into multiple columns.PgxFramePgxFrame. flattenAll()Create a new PgxFrame with all nested columns and vector columns flattened into multiple columns.PgxFramePgxFrame. flattenAllInPlace()Modifies the PgxFrame by flattening all nested columns and vector columns into multiple columns.PgxFramePgxFrame. flattenInPlace(java.lang.String... columns)Modifies the PgxFrame by flattening all the specified columns and vector columns into multiple columns.PgxFramePgxFrame. head()Extracts theheadInPlace(long)first rows of the frame and put them in a new frame Blocking version ofhead(long).PgxFramePgxFrame. head(long numRows)Extracts the numRows first rows of the frame and put them in a new frame Blocking version ofhead(long).PgxFramePgxFrame. headInPlace()Keeps only the firstDEFAULT_LIMITrows in the frame Blocking version ofheadInPlace().PgxFramePgxFrame. headInPlace(long numRows)Keeps only the first numRows rows in the frame Blocking version ofheadInPlace(long).PgxFramePgxFrame. 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.PgxFramePgxFrame. 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.PgxFramePgxFrame. 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.PgxFramePgxFrame. 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.PgxFramePgxFrameReader. load(java.lang.String... uris)triggers the loading of the PgxFramePgxFramePgxGenericFrameReader. pgb(java.lang.String... uris)loads the csv PgxFrame synchronouslyPgxFramePgxFrame. print()Prints all results toSystem.out.PgxFramePgxFrame. print(long numRows)PrintsnumRowsresults toSystem.out.PgxFramePgxFrame. print(long numResults, long from)PrintsnumResultsresults from the frame toSystem.out.PgxFramePgxFrame. print(java.io.PrintStream printStream, long numResults, long from)Prints the content of the frame Blocking version ofprintAsync(PrintStream, long, long).PgxFramePgxFrame. 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).PgxFramePgxFrame. 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).PgxFramePgxFrame. renameColumns(ColumnRenaming... columnsWithRenamings)Returns a new PgxFrame in which the specified columns are renamed as specified Blocking version ofrenameColumnsAsync(ColumnRenaming...).PgxFramePgxFrame. renameColumnsInPlace(ColumnRenaming... columnsWithRenamings)Modifies the PgxFrame to rename the specified columns as specified Blocking version ofrenameColumnsInPlaceAsync(ColumnRenaming...).PgxFramePgxFrame. select(java.lang.String... columns)Returns a new PgxFrame that contains only the specified columns Blocking version ofselectAsync(String...).PgxFramePgxFrame. selectInPlace(java.lang.String... columns)Modifies the PgxFrame to contain only the specified columns Blocking version ofselectInPlaceAsync(String...).PgxFramePgxFrame. tail()Extracts the lastDEFAULT_LIMITrows of the frame into a new frame.PgxFramePgxFrame. tail(long numRows)Extracts the numRows last rows of the frame and put them in a new framePgxFramePgxFrame. tailInPlace()Modifies the frame to keep the lastDEFAULT_LIMITrows of the frame.PgxFramePgxFrame. tailInPlace(long numRows)Modifies the frame to keep the lastDEFAULT_LIMITrows of the frame.PgxFramePgxFrame. 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)PrintsnumRowsresults toSystem.out.PgxFuture<PgxFrame>PgxFrame. printAsync(long numResults, long from)PrintsnumResultsresults 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_LIMITrows 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_LIMITrows 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 PgxEdgeProviderFromFramesCreatorAbstractPgxEntityProviderFromFramesCreator. edgeProvider(java.lang.String providerName, java.lang.String sourceVertexProvider, java.lang.String destinationVertexProvider, PgxFrame frame)Add a new edge provider to the underlyingPgxGraphFromFramesCreatorPgxEdgeProviderFromFramesCreatorPgxGraphFromFramesCreator. edgeProvider(java.lang.String providerName, java.lang.String sourceVertexProvider, java.lang.String destinationVertexProvider, PgxFrame frame)Add a new edge provider to the graph creatorPgxFramePgxFrame. 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.PgxFramePgxFrame. 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.PgxFramePgxFrame. 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.PgxFramePgxFrame. 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.PgxFramePgxFrame. 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.PgxVertexProviderFromFramesCreatorAbstractPgxEntityProviderFromFramesCreator. vertexProvider(java.lang.String providerName, PgxFrame frame)Add a new vertex provider to the underlyingPgxGraphFromFramesCreatorPgxVertexProviderFromFramesCreatorPgxGraphFromFramesCreator. 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 PgxFrameDeepWalkModel. computeSimilars(java.lang.Object vertexId, int k)Blocking version ofDeepWalkModel.computeSimilarsAsync(Object, int).PgxFrameDeepWalkModel. computeSimilars(java.util.List<java.lang.Object> vertexIds, int k)Blocking version ofDeepWalkModel.computeSimilarsAsync(List, int).PgxFramePg2vecModel. computeSimilars(java.lang.Object graphletId, int k)Blocking version ofPg2vecModel.computeSimilarsAsync(Object, int).PgxFramePg2vecModel. computeSimilars(java.util.List<java.lang.Object> graphletIds, int k)Blocking version ofPg2vecModel.computeSimilarsAsync(List, int).PgxFrameSupervisedEdgeWiseModel. evaluate(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)Blocking version ofSupervisedEdgeWiseModel.evaluateAsync(PgxGraph, Iterable).PgxFrameSupervisedEdgeWiseModel. evaluate(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)Blocking version ofSupervisedEdgeWiseModel.evaluateAsync(PgxGraph, Iterable, float).<ID> PgxFrameSupervisedGraphWiseModel. evaluate(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)Blocking version ofSupervisedGraphWiseModel.evaluateAsync(PgxGraph, Iterable).<ID> PgxFrameSupervisedGraphWiseModel. evaluate(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)Blocking version ofSupervisedGraphWiseModel.evaluateAsync(PgxGraph, Iterable).<ID> PgxFrameUnsupervisedAnomalyDetectionGraphWiseModel. evaluateAnomalyLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, java.lang.String vertexAnomalyPropertyName, java.lang.Object anomalyPropertyValue, float threshold)<ID> PgxFrameVertexAnomalyDetectionModel. evaluateAnomalyLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, java.lang.String vertexAnomalyPropertyName, java.lang.Object anomalyPropertyValue, float threshold)PgxFrameSupervisedEdgeWiseModel. evaluateLabels(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)Blocking version ofSupervisedEdgeWiseModel.evaluateLabelsAsync(PgxGraph, Iterable).PgxFrameSupervisedEdgeWiseModel. evaluateLabels(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)Blocking version ofSupervisedEdgeWiseModel.evaluateLabelsAsync(PgxGraph, Iterable, float).<ID> PgxFrameSupervisedGraphWiseModel. evaluateLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)Blocking version ofSupervisedGraphWiseModel.evaluateLabelsAsync(PgxGraph, Iterable).<ID> PgxFrameSupervisedGraphWiseModel. evaluateLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)Blocking version ofSupervisedGraphWiseModel.evaluateLabelsAsync(PgxGraph, Iterable, float).PgxFramePg2vecModel. getTrainedGraphletVectors()Blocking version ofPg2vecModel.getTrainedGraphletVectorsAsync().PgxFrameDeepWalkModel. getTrainedVertexVectors()Blocking version ofDeepWalkModel.getTrainedVertexVectorsAsync().PgxFrameEdgeWiseModel. getTrainingLog()Blocking version ofEdgeWiseModel.getTrainingLogAsync().PgxFrameGraphWiseModel. getTrainingLog()Blocking version ofGraphWiseModel.getTrainingLogAsync().PgxFrameSupervisedEdgeWiseModel. infer(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)Blocking version ofSupervisedEdgeWiseModel.inferAsync(PgxGraph, Iterable).PgxFrameSupervisedEdgeWiseModel. infer(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)Blocking version ofSupervisedEdgeWiseModel.inferAsync(PgxGraph, Iterable, float).<ID> PgxFrameSupervisedGraphWiseModel. infer(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)Blocking version ofSupervisedGraphWiseModel.inferAsync(PgxGraph, Iterable).<ID> PgxFrameSupervisedGraphWiseModel. infer(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)Blocking version ofSupervisedGraphWiseModel.inferAsync(PgxGraph, Iterable).<ID> PgxFrameUnsupervisedAnomalyDetectionGraphWiseModel. inferAnomalyLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)<ID> PgxFrameVertexAnomalyDetectionModel. inferAnomalyLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)Blocking version ofVertexAnomalyDetectionModel.inferAnomalyLabelsAsync(PgxGraph, Iterable, float).<ID> PgxFrameUnsupervisedAnomalyDetectionGraphWiseModel. inferAnomalyScores(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)<ID> PgxFrameVertexAnomalyDetectionModel. inferAnomalyScores(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)Blocking version ofVertexAnomalyDetectionModel.inferAnomalyScoresAsync(PgxGraph, Iterable).PgxFrameEdgeWiseModel. inferEmbeddings(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)Blocking version ofEdgeWiseModel.inferEmbeddingsAsync(PgxGraph, Iterable).<ID> PgxFrameGraphWiseModel. inferEmbeddings(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)Blocking version ofGraphWiseModel.inferEmbeddingsAsync(PgxGraph, Iterable).PgxFramePg2vecModel. inferGraphletVector(PgxGraph graph)Blocking version ofPg2vecModel.inferGraphletVectorAsync(PgxGraph).PgxFramePg2vecModel. inferGraphletVectorBatched(PgxGraph graph)Blocking version ofPg2vecModel.inferGraphletVectorBatchedAsync(PgxGraph).PgxFrameSupervisedEdgeWiseModel. inferLabels(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)Blocking version ofSupervisedEdgeWiseModel.inferLabelsAsync(PgxGraph, Iterable).PgxFrameSupervisedEdgeWiseModel. inferLabels(PgxGraph graph, java.lang.Iterable<PgxEdge> edges, float threshold)Blocking version ofSupervisedEdgeWiseModel.inferLabelsAsync(PgxGraph, Iterable, float).<ID> PgxFrameSupervisedGraphWiseModel. inferLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices)Blocking version ofSupervisedGraphWiseModel.inferLabelsAsync(PgxGraph, Iterable).<ID> PgxFrameSupervisedGraphWiseModel. inferLabels(PgxGraph graph, java.lang.Iterable<PgxVertex<ID>> vertices, float threshold)Blocking version ofSupervisedGraphWiseModel.inferLabelsAsync(PgxGraph, Iterable, float).PgxFrameSupervisedEdgeWiseModel. inferLogits(PgxGraph graph, java.lang.Iterable<PgxEdge> edges)Blocking version ofSupervisedEdgeWiseModel.inferLogitsAsync(PgxGraph, Iterable).<ID> PgxFrameSupervisedGraphWiseModel. 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.
-