Best no-code iOS deployment for low latency and cost?
You work for a social media company. You want to create a no-code image classification model for an iOS mobile application to identify fashion accessories. You have a labeled dataset in Cloud Storage. You need to configure a training workflow that minimizes cost and serves predictions with the lowest possible latency. What should you do?
Community Votes
100% of anonymous learners picked answer B. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
This question tests the selection of the correct deployment target (Edge) and format (Core ML) for iOS to optimize performance and cost, where the trap is choosing cloud endpoints or non-native formats like TFLite.
To achieve the lowest latency and cost for an iOS image classification app, use AutoML Edge to train and export a Core ML model. The community agrees that on-device inference using Core ML eliminates cloud costs and network delays.
Choosing Option D (Vertex AI endpoint) is a common mistake because while it offers a managed service, it introduces network latency and recurring costs compared to on-device inference.
Community Discussion (8 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
AutoML Edge provides the necessary no-code training capability while optimizing models for edge devices. Exporting the model as a Core ML file allows it to run natively on iOS hardware, leveraging the Neural Engine for the lowest possible latency. By running the model directly on the device, you avoid the recurring costs associated with hosting a cloud endpoint on Vertex AI.Why the Other Options Are Wrong
Option A suggests batch requests, which are unsuitable for real-time mobile interactions and do not guarantee low latency. Option C uses TFLite, which is compatible with iOS but Core ML is the native, more optimized framework for Apple devices. Option D involves a Vertex AI endpoint, which introduces network latency and ongoing infrastructure costs, violating the requirements for minimizing cost and latency.Community Comment Notes
Commenters emphasize that Core ML is specifically designed for iOS to ensure efficient inference and low latency. There is a strong consensus that on-device processing removes the need for network calls, which is critical for performance. Additionally, users noted that while AutoML Vision Edge has some deprecation notices in documentation, it remains the correct logical choice for this specific exam scenario.Official Reference
Exam Strategy
When exam questions specify "lowest latency" and "mobile," prioritize on-device inference over cloud endpoints. If the platform is iOS, always choose Core ML over TFLite for maximum optimization.
Related Analysis
Practice All PMLE Questions
Access 65 questions with complete answers and detailed explanations.
View Full PMLE Practice Test →