Uses of Class
oracle.pgx.config.mllib.ModelKind
-
Packages that use ModelKind Package Description oracle.pgx.api.mllib This package contains graph machine learning tools for use with PGX.oracle.pgx.config.mllib This package contains APIs to all graph machine learning features of PGX. -
-
Uses of ModelKind in oracle.pgx.api.mllib
Constructors in oracle.pgx.api.mllib with parameters of type ModelKind Constructor Description DbModelLoader(PgxSession session, oracle.pgx.api.internal.Core core, java.util.function.Supplier<java.lang.String> keystorePathSupplier, java.util.function.Supplier<char[]> keystorePasswordSupplier, ModelKind modelKind, ModelLoader.ModelConstructor<ModelType> constructor)
FileModelLoader(PgxSession session, oracle.pgx.api.internal.Core core, java.util.function.Supplier<java.lang.String> keystorePathSupplier, java.util.function.Supplier<char[]> keystorePasswordSupplier, ModelKind modelKind, ModelLoader.ModelConstructor<ModelType> constructor)
GenericModelLoader(PgxSession session, oracle.pgx.api.internal.Core core, java.util.function.Supplier<java.lang.String> keystorePathSupplier, java.util.function.Supplier<char[]> keystorePasswordSupplier, ModelKind modelKind, ModelLoader.ModelConstructor<ModelType> constructor)
ModelLoader(PgxSession session, oracle.pgx.api.internal.Core core, java.util.function.Supplier<java.lang.String> keystorePathSupplier, java.util.function.Supplier<char[]> keystorePasswordSupplier, ModelKind modelKind, ModelLoader.ModelConstructor<LoadedModelType> modelConstructor)
-
Uses of ModelKind in oracle.pgx.config.mllib
Methods in oracle.pgx.config.mllib that return ModelKind Modifier and Type Method Description ModelKind
ModelLoadingConfiguration. getModelKind()
ModelKind
ModelStoringConfiguration. getModelKind()
static ModelKind
ModelKind. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ModelKind[]
ModelKind. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in oracle.pgx.config.mllib with parameters of type ModelKind Modifier and Type Method Description void
ModelLoadingConfiguration. setModelKind(ModelKind modelKind)
void
ModelStoringConfiguration. setModelKind(ModelKind modelKind)
Constructors in oracle.pgx.config.mllib with parameters of type ModelKind Constructor Description DbModelLoadingConfiguration(ModelKind modelKind)
DbModelStoringConfiguration(ModelKind modelKind)
FileModelLoadingConfiguration(ModelKind modelKind)
FileModelStoringConfiguration(ModelKind modelKind)
ModelLoadingConfiguration(ModelKind modelKind, ModelDatasource datasource)
ModelStoringConfiguration(ModelKind modelKind, ModelDatasource datasource)
-