# Terms

### Inference

The process that an AI model performs the assignment (such as named entity recognition or text classification) without given answers, and gets the result out of it.

### Training

The process of the AI model is trained using given data sets to achieve better inference results.

### Test

Comparing the inference result of an AI model with the correct answers, to measure the performance of the model. The result is shown using four different indicators, Precision, Recall, Accuracy, and F1 Score.

### Ground Truth

A reference point against which model predictions can be compared or assessed. It refers to the correct and verified labels or outcomes that a model aims to predict

### Precision

Precision is the ratio of correctly predicted positive observations of the total predicted positive observations. Precision = True Positive / (True Positive + False Positive).

### Recall

Recall is the ratio of correctly predicted positive observations to all correct predictions. Recall = TP/(TP+FN)

### Accuracy

Accuracy is a ratio of correctly predicted observation of the total observations. Accuracy = TP+TN/TP+FP+FN+TN

### F1 (F1 Score)

F1 Score is the weighted average of Precision and Recall. Therefore, this score takes both false positives and false negatives into account. F1 Score = 2\*(Recall \* Precision) / (Recall + Precision)&#x20;


---

# 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.allganize.ai/nlu-api-dashboard/terms.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.
