You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initialize ane_minicpmv4_vit_f16 instance from an existing MLModel object.
53
+
Initialize coreml_minicpmv40_vit_f16 instance from an existing MLModel object.
48
54
49
-
Usually the application does not use this initializer unless it makes a subclass of ane_minicpmv4_vit_f16.
55
+
Usually the application does not use this initializer unless it makes a subclass of coreml_minicpmv40_vit_f16.
50
56
Such application may want to use `-[MLModel initWithContentsOfURL:configuration:error:]` and `+URLOfModelInThisBundle` to create a MLModel object to pass-in.
Initialize ane_minicpmv4_vit_f16 instance with the model in this bundle.
61
+
Initialize coreml_minicpmv40_vit_f16 instance with the model in this bundle.
56
62
*/
57
63
- (nullable instancetype)init;
58
64
59
65
/**
60
-
Initialize ane_minicpmv4_vit_f16 instance with the model in this bundle.
66
+
Initialize coreml_minicpmv40_vit_f16 instance with the model in this bundle.
61
67
62
68
@param configuration The model configuration object
63
69
@param error If an error occurs, upon return contains an NSError object that describes the problem. If you are not interested in possible errors, pass in NULL.
Initialize ane_minicpmv4_vit_f16 instance from the model URL.
74
+
Initialize coreml_minicpmv40_vit_f16 instance from the model URL.
69
75
70
-
@param modelURL URL to the .mlmodelc directory for ane_minicpmv4_vit_f16.
76
+
@param modelURL URL to the .mlmodelc directory for coreml_minicpmv40_vit_f16.
71
77
@param error If an error occurs, upon return contains an NSError object that describes the problem. If you are not interested in possible errors, pass in NULL.
Initialize ane_minicpmv4_vit_f16 instance from the model URL.
82
+
Initialize coreml_minicpmv40_vit_f16 instance from the model URL.
77
83
78
-
@param modelURL URL to the .mlmodelc directory for ane_minicpmv4_vit_f16.
84
+
@param modelURL URL to the .mlmodelc directory for coreml_minicpmv40_vit_f16.
79
85
@param configuration The model configuration object
80
86
@param error If an error occurs, upon return contains an NSError object that describes the problem. If you are not interested in possible errors, pass in NULL.
Construct ane_minicpmv4_vit_f16 instance asynchronously with configuration.
91
+
Construct coreml_minicpmv40_vit_f16 instance asynchronously with configuration.
86
92
Model loading may take time when the model content is not immediately available (e.g. encrypted model). Use this factory method especially when the caller is on the main thread.
87
93
88
94
@param configuration The model configuration
89
-
@param handler When the model load completes successfully or unsuccessfully, the completion handler is invoked with a valid ane_minicpmv4_vit_f16 instance or NSError object.
95
+
@param handler When the model load completes successfully or unsuccessfully, the completion handler is invoked with a valid coreml_minicpmv40_vit_f16 instance or NSError object.
Construct ane_minicpmv4_vit_f16 instance asynchronously with URL of .mlmodelc directory and optional configuration.
100
+
Construct coreml_minicpmv40_vit_f16 instance asynchronously with URL of .mlmodelc directory and optional configuration.
95
101
96
102
Model loading may take time when the model content is not immediately available (e.g. encrypted model). Use this factory method especially when the caller is on the main thread.
97
103
98
104
@param modelURL The model URL.
99
105
@param configuration The model configuration
100
-
@param handler When the model load completes successfully or unsuccessfully, the completion handler is invoked with a valid ane_minicpmv4_vit_f16 instance or NSError object.
106
+
@param handler When the model load completes successfully or unsuccessfully, the completion handler is invoked with a valid coreml_minicpmv40_vit_f16 instance or NSError object.
@param input an instance of ane_minicpmv4_vit_f16Input to predict from
112
+
@param input an instance of coreml_minicpmv40_vit_f16Input to predict from
107
113
@param error If an error occurs, upon return contains an NSError object that describes the problem. If you are not interested in possible errors, pass in NULL.
108
-
@return the prediction as ane_minicpmv4_vit_f16Output
114
+
@return the prediction as coreml_minicpmv40_vit_f16Output
@param input an instance of ane_minicpmv4_vit_f16Input to predict from
120
+
@param input an instance of coreml_minicpmv40_vit_f16Input to predict from
115
121
@param options prediction options
116
122
@param error If an error occurs, upon return contains an NSError object that describes the problem. If you are not interested in possible errors, pass in NULL.
117
-
@return the prediction as ane_minicpmv4_vit_f16Output
123
+
@return the prediction as coreml_minicpmv40_vit_f16Output
@param error If an error occurs, upon return contains an NSError object that describes the problem. If you are not interested in possible errors, pass in NULL.
140
-
@return the prediction as ane_minicpmv4_vit_f16Output
148
+
@return the prediction as coreml_minicpmv40_vit_f16Output
@param inputArray array of ane_minicpmv4_vit_f16Input instances to obtain predictions from
154
+
@param inputArray array of coreml_minicpmv40_vit_f16Input instances to obtain predictions from
147
155
@param options prediction options
148
156
@param error If an error occurs, upon return contains an NSError object that describes the problem. If you are not interested in possible errors, pass in NULL.
149
-
@return the predictions as NSArray<ane_minicpmv4_vit_f16Output *>
157
+
@return the predictions as NSArray<coreml_minicpmv40_vit_f16Output *>
0 commit comments