Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 XCode 操场上测试新的很棒的 CreateML。我使用 MLImageClassifierBuilder() 和实时视图功能来创建我的模型,并保存它。现在我想将我的 .mlmodel 文件重新导入我的 Playground 以运行更多测试,但我没有找到方法。
当我关闭操场时,这对我来说似乎很明显找到了这种能力。
您不能继续训练相同的 mlmodel。但是,您可以加载现有的 mlmodel 并通过MLModelAPI 使用它,如下所示:
MLModel
let compiledUrl = try MLModel.compileModel(at: modelUrl) let model = try MLModel(contentsOf: compiledUrl) model.prediction(....)
我自己从未尝试过,所以我不能 100% 确定这在操场上是否有效。