Update README.md
Browse files
README.md
CHANGED
|
@@ -807,3 +807,30 @@ dataset_info:
|
|
| 807 |
download_size: 176268
|
| 808 |
dataset_size: 813863
|
| 809 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 807 |
download_size: 176268
|
| 808 |
dataset_size: 813863
|
| 809 |
---
|
| 810 |
+
|
| 811 |
+
**Text2DistBench** is a benchmark for evaluating whether large language models can infer distributional knowledge from natural language evidence.
|
| 812 |
+
Given metadata and a set of user comments about an entity (e.g., a movie or song), models must estimate statistics such as:
|
| 813 |
+
stance distribution, topic distribution, and most/second-most frequent labels.
|
| 814 |
+
The dataset is organized into two types of configurations.
|
| 815 |
+
|
| 816 |
+
**Posterior configurations** include both metadata and user comments as evidence.
|
| 817 |
+
These configurations differ by sample size (50 or 100 comments) and task type:
|
| 818 |
+
`posterior_sampled_50_estimation`,
|
| 819 |
+
`posterior_sampled_50_most_freq`,
|
| 820 |
+
`posterior_sampled_50_second_freq`,
|
| 821 |
+
`posterior_sampled_100_estimation`,
|
| 822 |
+
`posterior_sampled_100_most_freq`,
|
| 823 |
+
`posterior_sampled_100_second_freq`
|
| 824 |
+
|
| 825 |
+
**Prior configurations** contain only metadata without comments: `prior_estimation`, `prior_most_freq`, `prior_second_freq`
|
| 826 |
+
|
| 827 |
+
---
|
| 828 |
+
|
| 829 |
+
## Load the Dataset
|
| 830 |
+
|
| 831 |
+
Example:
|
| 832 |
+
```bash
|
| 833 |
+
from datasets import load_dataset
|
| 834 |
+
ds = load_dataset("frett/Text2DistBench", "posterior_sampled_50_estimation", split="test")
|
| 835 |
+
ds = load_dataset("frett/Text2DistBench", "prior_most_freq", split="test")
|
| 836 |
+
```
|