Package org.gridgain.internal.ml.storage
Interface ModelStorageProvider
- All Known Implementing Classes:
ModelStorageProviderImpl
public interface ModelStorageProvider
Interface for storing and retrieving model artifacts across different storage systems.
-
Method Summary
Modifier and TypeMethodDescriptionCreates a ModelSource object for the given URI with properties asynchronously.
-
Method Details
-
createModelSource
CompletableFuture<ModelSource> createModelSource(String modelUri, String modelId, String version, Map<String, String> properties) Creates a ModelSource object for the given URI with properties asynchronously.- Parameters:
modelUri- The URI of the modelmodelId- The model IDversion- The versionproperties- Additional properties for the model source- Returns:
- A CompletableFuture containing the ModelSource object
-