Evaluates conversational agents on dialogue safety classification, rule-of-thumb generation, and prosocial response generation. It probes the model's ability to identify unsafe content, generate socially informed guidelines, and produce safe, engaging, and respectful dialogue responses. Use when the user wants to benchmark on PROSOCIALDIALOG, or asks about evaluating this task. Reports accuracy, BLEU-4.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill prosocialdialog-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Prosocialdialog Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-prosocialdialog-eval)More formats (shields.io, HTML) on the badges page.
---
name: prosocialdialog-eval
description: Evaluates conversational agents on dialogue safety classification, rule-of-thumb generation, and prosocial response generation. It probes the model's ability to identify unsafe content, generate socially informed guidelines, and produce safe, engaging, and respectful dialogue responses. Use when the user wants to benchmark on PROSOCIALDIALOG, or asks about evaluating this task. Reports accuracy, BLEU-4.
metadata:
skill_kind: dataset_eval
source_arxiv: 2205.12688
bibtex_key: kim2022prosocialdialog
confidence: high
---
# prosocialdialog-eval
> ProsocialDialog: A Prosocial Backbone for Conversational Agents — Kim et al. (2022) (arXiv:2205.12688, 2022)
## What this evaluates
Evaluates conversational agents on dialogue safety classification, rule-of-thumb generation, and prosocial response generation. It probes the model's ability to identify unsafe content, generate socially informed guidelines, and produce safe, engaging, and respectful dialogue responses.
## Datasets
- **PROSOCIALDIALOG** — total 58000; splits: valid (-1), test (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Percentage of correctly classified dialogue safety labels. Computed as the number of correct predictions divided by the total number of test instances.
- `BLEU-4` **(primary)** — range: [0, 1]
- Standard n-gram overlap metric up to 4-grams, typically computed with sentence-level averaging and a brevity penalty to penalize overly short outputs.
- `F1` — range: [0, 1]
- Harmonic mean of token-level precision and recall between generated and gold text.
- `Perplexity` — range: other
- Exponential of the average negative log-likelihood of the gold text under the model's distribution. Computed on gold RoTs to measure alignment with human guidelines.
- `Human Evaluation Win Rate` — range: percent
- Percentage of head-to-head comparisons where a model's response is preferred over a baseline's across dimensions like Prosocial, Engaged, Respectful, Coherent, and Overall. Ties are allowed and reported separately.
## Input / output format
**Input**: Dialogue context or short dialogue snippets for safety classification; full dialogue context for response generation and RoT generation.
**Output**: Safety classification label (binary/multi-class); free-form rule-of-thumb text; free-form dialogue response text.
## Scoring recipe
```python
def compute_metrics(predictions, golds, model, human_choices):
# Safety Classification
accuracy = sum(1 for p, g in zip(predictions, golds) if p == g) / len(golds)
# Generation Metrics (RoT & Response)
bleu4 = compute_bleu(golds, predictions) # Standard sentence-level BLEU-4
f1 = compute_f1(golds, predictions) # Token-level F1
ppl = exp(-sum(log_softmax(model(g)) for g in golds) / len(golds))
# Human Evaluation (Head-to-Head)
win_rate = sum(1 for c in human_choices if c == 'model_name') / len(human_choices)
return accuracy, bleu4, f1, ppl, win_rate
```
## Common pitfalls
- Human evaluation allows ties, so win rates across models do not sum to 100% and must be interpreted alongside tie rates.
- Automatic metrics like BLEU-4 and F1 measure surface-level lexical overlap and do not directly capture prosociality or safety alignment.
- Perplexity is computed on gold RoTs rather than generated outputs to evaluate how well the model's probability distribution aligns with human social guidelines.
## Evidence (verbatim from paper)
> We report BLEU-4 and F1 scores of model outputs, and also the perplexity of gold RoTs for each model.
## Citation
```bibtex
@misc{kim2022prosocialdialog,
title={ProsocialDialog: A Prosocial Backbone for Conversational Agents},
author={Kim et al. (2022)},
year={2022},
note={arXiv:2205.12688}
}
```
- arXiv: 2205.12688
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!