Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@skeeet
Forked from akirasosa/mlSpeedTests.swift
Created May 19, 2020 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skeeet/191944c46695aada2f9c69e8131e40d4 to your computer and use it in GitHub Desktop.
Save skeeet/191944c46695aada2f9c69e8131e40d4 to your computer and use it in GitHub Desktop.
Benchmark Core ML model in iOS.
import CoreML
import XCTest
@testable import mlsample
class mlsampleTests: XCTestCase {
override func setUp() {
super.setUp()
}
override func tearDown() {
super.tearDown()
}
func testSpeed() {
guard let input_data = try? MLMultiArray(shape:[3, 160, 160], dataType:MLMultiArrayDataType.double) else {
fatalError("Unexpected runtime error. MLMultiArray")
}
let model = mobile_unet_160_100_100()
// It's for excluding 1st measurement.
do {
try model.prediction(data: input_data)
print("predicted------------")
} catch {
print("error------------")
}
print("--------started------------")
self.measure() {
try! model.prediction(data: input_data)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment