> For the complete documentation index, see [llms.txt](https://docs.sov.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sov.ai/api-reference/plots-1/breakout-plots.md).

# Breakout Plots

**Module:** `sovai.plots.breakout.breakout_plots`

## Functions

### `accuracy_score()`

```python
def accuracy_score(y_true, y_pred)
```

Computes the accuracy score.

**Parameters**

| Parameter | Type   | Description               |
| --------- | ------ | ------------------------- |
| `y_true`  | `list` | List of true labels.      |
| `y_pred`  | `list` | List of predicted labels. |

**Returns**

float: The accuracy score.

***
