> For the complete documentation index, see [llms.txt](https://docs.eyepop.ai/developer-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eyepop.ai/developer-documentation/self-service-training/how-to-train-a-model/training-in-progress.md).

# Training in Progress

As the model begins training, EyePop.ai’s training system first augments the dataset. This automatically applies transformations such as noise, rotation, blur, color, and position transformation to simulate a larger dataset. After augmentation, the model begins training in earnest, providing real-time progress feedback by graphing a **Curve of Confidence**.

## **Model Metrics**

The Curve of Confidence is created by graphing **Precision** on the y-axis versus **Recall** on the x-axis.

**Precision** answers the question: did the model find only what I wanted it to find and nothing else? We want to know the model isn’t predicting false negatives.

**Recall** answers the question: did the model find the object in each scene regardless of whether extra objects were identified? We want to know the model is picking up all instances of the object, even if there are extra boxes.

You can expect a training duration of approximately 10-20 minutes for 500 images, depending on the complexity. Exit the training any time by clicking **back to my models** in the upper right corner, and come back once it has finished running.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.eyepop.ai/developer-documentation/self-service-training/how-to-train-a-model/training-in-progress.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
