MLModel.Create 方法

定义

重载

Create(NSUrl, NSError)

创建并返回一个 CoreML 模型,其中包含存储在指定 url处的数据,报告 中的任何 error错误。

Create(NSUrl, MLModelConfiguration, NSError)

Create(NSUrl, NSError)

创建并返回一个 CoreML 模型,其中包含存储在指定 url处的数据,报告 中的任何 error错误。

[Foundation.Export("modelWithContentsOfURL:error:")]
public static CoreML.MLModel Create (Foundation.NSUrl url, out Foundation.NSError error);
static member Create : Foundation.NSUrl *  -> CoreML.MLModel

参数

url
NSUrl

模型资源的 URL。

error
NSError

如果失败,则为发生的错误。

返回

新模型;如果发生错误, null 则为 。

属性

适用于

Create(NSUrl, MLModelConfiguration, NSError)

[Foundation.Export("modelWithContentsOfURL:configuration:error:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.WatchOS, 5, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 12, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 14, ObjCRuntime.PlatformArchitecture.Arch64, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 12, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreML.MLModel Create (Foundation.NSUrl url, CoreML.MLModelConfiguration configuration, out Foundation.NSError error);
static member Create : Foundation.NSUrl * CoreML.MLModelConfiguration *  -> CoreML.MLModel

参数

url
NSUrl
configuration
MLModelConfiguration
error
NSError

返回

属性

适用于