MLModel.Create 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Create(NSUrl, NSError) |
创建并返回一个 CoreML 模型,其中包含存储在指定 |
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
返回
- 属性