# Inference results

*Estimated read time: 1 minute*

Every call to `model(...)` returns an `InferenceResults` object. The same object appears when you iterate over `predict_batch`, `predict_dir`, or `predict_stream`. Understanding its fields helps you decide the right next step—whether that's inspecting detections, visualizing them, exporting structured data, or streaming results elsewhere.

Here's what you typically get when you run `dir(result)`:

{% code overflow="wrap" %}

```
['image', 'image_model', 'image_overlay', 'info', 'results', 'timing']
```

{% endcode %}

## Field-by-field guide

* `results`: structured predictions (labels, scores, boxes, etc.) → [Inspecting results](/axelera/basics/inference-results/inspecting-results.md)
* `image`, `image_model`, `image_overlay`: input frame, model-ready tensor (when exposed), and annotated overlay → [Visualizing results](/axelera/basics/inference-results/visualizing-results.md)
* `info`: optional metadata you attach to frames; `timing`: per-stage latency metrics → [Inspecting results](/axelera/basics/inference-results/inspecting-results.md) covers both
* **Save to disk**: structured exports and overlays → [Saving results](/axelera/basics/inference-results/saving-results.md)
* **Stream in real time**: iterate and publish continuously → [Streaming results](/axelera/basics/inference-results/streaming-results.md)

Pick the path that fits your workflow—or follow each guide to get the full picture of what `InferenceResults` can do.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.degirum.com/axelera/basics/inference-results.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
