A veterinary hospital submits one 4-gigabyte MRI study for a specialist model. The study takes about 40 minutes to score, and the radiologist picks up the result later in the patient chart. The hospital is not waiting at a kiosk, and it is not mixing this study into a nightly pile of unrelated invoices. Which inference style fits?
Select an answer to reveal the explanation.
Short Explanation
Think of it like dropping a film off at the lab and picking up the prints later. One huge MRI study that takes 40 minutes is a single long job with a deferred result, which is asynchronous inference. It is not a kiosk wait, and it is not a nightly pile of unrelated invoices.
Full Explanation
Asynchronous inference is for a long-running or large individual request whose result is retrieved later, which matches a single 4 GB MRI study that scores in 40 minutes. Real-time inference would block a kiosk-style wait and is the wrong fit for that runtime. A nightly pile of unrelated invoices is batch inference over many records, not one large study. File size does not turn scoring into training.