# BLEU

**Objective:**&#x20;

BLEU measures the overlap of n-grams between machine-generated text and one or more reference texts. It calculates precision for n-gram matches, penalizing shorter outputs through a brevity penalty. BLEU emphasizes precision over recall, focusing on how much of the generated output matches the reference text. Although initially designed for machine translation, it is also used in various text generation tasks. However, its precision-focused approach may overlook some nuanced aspects of language generation, such as fluency and semantic accuracy.

**Required Columns in Dataset:**

`LLM Summary`, `Reference Document (GT)`

**Interpretation:**

* **High BLEU**: Represents strong n-gram precision with a good match between generated and reference text, emphasizing close word-for-word similarity.
* **Low BLEU**: Suggests insufficient n-gram overlap, which could indicate poor precision or significant deviation from the reference text.

**Execution via UI:**

<figure><img src="/files/ERtAcd0ptYojHw4Z85v5" alt=""><figcaption></figcaption></figure>

BLEU does not require an LLM for computation.

**Execution via SDK:**

```python
metrics=[
    {"name": "BLEU", "column_name": "your-text", "schema_mapping": schema_mapping}
]
```


---

# 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.raga.ai/ragaai-catalyst/ragaai-metric-library/text-summarization/bleu.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.
