# ExperimentResults

> **Class** in `langsmith`

📖 [View in docs](https://reference.langchain.com/python/langsmith/schemas/ExperimentResults)

Results container for experiment data with stats and examples.

Breaking change in v0.4.32:
    The 'stats' field has been split into 'feedback_stats' and 'run_stats'.

## Signature

```python
ExperimentResults()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    feedback_stats: dict,
    run_stats: ExperimentRunStats,
    examples_with_runs: Iterator[ExampleWithRuns],
)
```

| Name | Type |
|------|------|
| `feedback_stats` | `dict` |
| `run_stats` | `ExperimentRunStats` |
| `examples_with_runs` | `Iterator[ExampleWithRuns]` |


## Properties

- `feedback_stats`
- `run_stats`
- `examples_with_runs`

---

[View source on GitHub](https://github.com/langchain-ai/langsmith-sdk/blob/ce9e9e8973442b33e98ec3ce1b9c2dd3f58a43a7/python/langsmith/schemas.py#L1315)