FIRModelManager
@interface FIRModelManager : NSObjectManages models that are used by MLKit features.
-
Returns the
ModelManagerinstance for the default Firebase app. The default Firebase app instance must be configured before calling this method; otherwise, raisesFIRAppNotConfiguredexception.Declaration
Objective-C
+ (nonnull instancetype)modelManager;Return Value
The
ModelManagerinstance for the default Firebase app. -
Returns the
ModelManagerinstance for the given custom Firebase app. The custom Firebase app instance must be configured before calling this method; otherwise, raisesFIRAppNotConfiguredexception.Declaration
Objective-C
+ (nonnull instancetype)modelManagerForApp:(nonnull FIRApp *)app;Parameters
appThe custom Firebase app instance.
Return Value
The
ModelManagerinstance for the given custom Firebase app. -
Unavailable. Use the
modelManager()ormodelManager(app:)class methods.Declaration
Objective-C
- (nonnull instancetype)init; -
Checks whether the given model has been downloaded.
Declaration
Objective-C
- (BOOL)isModelDownloaded:(nonnull FIRRemoteModel *)remoteModel;Parameters
remoteModelThe model to check the download status for.
Return Value
Whether the given model has been downloaded.
-
Downloads the given model from the server to a local directory on the device. Use
isModelDownloaded(_:)to check the download status for the model. If this method is invoked and the model has already been downloaded, a request is made to check if a newer version of the model is available for download. If available, the new version of the model is downloaded.To be notified when a model download request completes, observe the
.firebaseMLModelDownloadDidSucceed(indicating model is ready to use) and.firebaseMLModelDownloadDidFailnotifications defined inFIRModelDownloadNotifications.h. If the latest model is already downloaded, completes without additional work and posts a.firebaseMLModelDownloadDidSucceednotification, indicating that the model is ready to use.Declaration
Objective-C
- (nonnull NSProgress *)downloadModel:(nonnull FIRRemoteModel *)remoteModel conditions: (nonnull FIRModelDownloadConditions *)conditions;Parameters
remoteModelThe model to download.
conditionsThe conditions for downloading the model.
Return Value
Progress for downloading the model.
-
Deletes the downloaded model from the device.
Declaration
Objective-C
- (void)deleteDownloadedModel:(nonnull FIRRemoteModel *)remoteModel completion:(nonnull void (^)(NSError *_Nullable))completion;Parameters
remoteModelThe downloaded model to delete.
completionHandler to call back on the main queue when the model deletion completed successfully or failed with the given
error. -
Gets the absolute file path on the device for the last downloaded model. Please do not use this API if you intend to use this model through
ModelInterpreter.Declaration
Objective-C
- (void)getLatestModelFilePath:(nonnull FIRRemoteModel *)remoteModel completion:(nonnull void (^)(NSString *_Nullable, NSError *_Nullable))completion;Parameters
remoteModelThe downloaded model.
completionHandler to call back returning the absolute file path of the downloaded model. This will return
niland will fail with the givenerrorif the model is not yet downloaded on the device or valid custom remote model is not provided.