It is possible. After loading the compile model with:
let compiledUrl = try MLModel.compileModel(at: modelUrl)
let model = try MLModel(contentsOf: compiledUrl)
The compiled model will be stored in a temporary place. After compilation is complete, you should move it to a permanent location.
source
share