diff --git a/examples/demo-apps/apple_ios/ExecuTorchDemo/ExecuTorchDemo/Sources/MobileNet/Test/MobileNetClassifierTest.swift b/examples/demo-apps/apple_ios/ExecuTorchDemo/ExecuTorchDemo/Sources/MobileNet/Test/MobileNetClassifierTest.swift index f6886ab37c2..7936699bb9b 100644 --- a/examples/demo-apps/apple_ios/ExecuTorchDemo/ExecuTorchDemo/Sources/MobileNet/Test/MobileNetClassifierTest.swift +++ b/examples/demo-apps/apple_ios/ExecuTorchDemo/ExecuTorchDemo/Sources/MobileNet/Test/MobileNetClassifierTest.swift @@ -48,9 +48,9 @@ final class MobileNetClassifierTest: XCTestCase { modelFilePath: modelFilePath, labelsFilePath: labelsFilePath) for expectedClassification in [ - Classification(label: "Arctic fox", confidence: 0.92), - Classification(label: "Samoyed", confidence: 0.74), - Classification(label: "hot pot", confidence: 0.82), + Classification(label: "Arctic fox", confidence: 0.9), + Classification(label: "Samoyed", confidence: 0.7), + Classification(label: "hot pot", confidence: 0.8), ] { guard let imagePath = Bundle(for: type(of: self))