Spaces:
Running
Running
File size: 467 Bytes
dc0917f |
1 2 3 4 5 6 7 8 9 10 11 |
#import <CoreML/CoreML.h>
@interface MLModel (Compat)
- (void) predictionFromFeatures:(id<MLFeatureProvider>) input
completionHandler:(void (^)(id<MLFeatureProvider> output, NSError * error)) completionHandler;
- (void) predictionFromFeatures:(id<MLFeatureProvider>) input
options:(MLPredictionOptions *) options
completionHandler:(void (^)(id<MLFeatureProvider> output, NSError * error)) completionHandler;
@end
|