Evaluates neural language models' ability to understand Words of Estimative Probability (WEP) by testing their capacity to distinguish valid from invalid probabilistic verbalizations and perform logical consistency checks in probabilistic reasoning. Use when the user wants to benchmark on WEP Reasoning 1 hop, WEP Reasoning 2 hops, WEP-UNLI, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill wep-verbalization-validity-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Wep Verbalization Validity Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-wep-verbalization-validity-eval)More formats (shields.io, HTML) on the badges page.
---
name: wep-verbalization-validity-eval
description: Evaluates neural language models' ability to understand Words of Estimative Probability (WEP) by testing their capacity to distinguish valid from invalid probabilistic verbalizations and perform logical consistency checks in probabilistic reasoning. Use when the user wants to benchmark on WEP Reasoning 1 hop, WEP Reasoning 2 hops, WEP-UNLI, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2211.03358
bibtex_key: sileo2022probing
confidence: high
---
# wep-verbalization-validity-eval
> Probing neural language models for understanding of words of estimative probability — Sileo et al. (2022) (arXiv:2211.03358, 2022)
## What this evaluates
Evaluates neural language models' ability to understand Words of Estimative Probability (WEP) by testing their capacity to distinguish valid from invalid probabilistic verbalizations and perform logical consistency checks in probabilistic reasoning.
## Datasets
- **WEP Reasoning 1 hop** — total ?; splits: val (-1), test (-1)
- **WEP Reasoning 2 hops** — total ?; splits: val (-1), test (-1)
- **WEP-UNLI** — total ?; splits: val (-1), test (-1)
## Metrics
- `accuracy` **(primary)** — range: [0, 1]
- Standard classification accuracy: the proportion of instances where the model correctly identifies the valid verbalization over the invalid one.
## Input / output format
**Input**: Premise (context) and hypothesis (conclusion) pairs, or multiple-choice questions presenting a valid and an invalid WEP verbalization candidate.
**Output**: Binary classification label indicating whether the verbalization is valid or invalid, derived from logit scores combined via softmax.
## Scoring recipe
```python
correct = 0
for pred, gold in zip(predictions, gold_labels):
if pred == gold:
correct += 1
return correct / len(gold_labels)
```
## Common pitfalls
- Off-the-shelf causal and masked language models perform near chance without fine-tuning, as they lack explicit WEP semantics.
- Fine-tuning on MNLI does not transfer well to WEP reasoning tasks because MNLI contains very few WEP compositions.
- Likelihood scoring requires careful normalization (length-normalization or calibration) per dataset and model to be effective.
## Evidence (verbatim from paper)
> We conduct verbalization validity prediction (binary classification task of WEP correctness detection between two candidates) under two settings. We evaluate the rate at which valid verbalization is scored higher than invalid verbalization. We use a multiple-choice-question answering setup (we predict logit scores for the valid and invalid verbalization, combine their score with a softmax, then optimize the likelihood of the valid verbalization). The very low accuracy of causal and masked language models (first two rows) demonstrates how challenging the WEP-understanding tasks are.
## Citation
```bibtex
@misc{sileo2022probing,
title={Probing neural language models for understanding of words of estimative probability},
author={Sileo et al. (2022)},
year={2022},
note={arXiv:2211.03358}
}
```
- arXiv: 2211.03358
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!