Evaluates large language models' ability to manipulate and apply stored knowledge across logical reasoning, reading comprehension, and natural language understanding tasks. It specifically probes the 'known & incorrect' phenomenon where models possess relevant facts but fail to apply them correctly during inference. Use when the user wants to benchmark on AbsR, Commonsense (Common), Big Bench Hard (BBH), RACE-H, RACE-M, MMLU, ARC-c, ARC-e, 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 kale-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Kale Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-kale-eval)More formats (shields.io, HTML) on the badges page.
---
name: kale-eval
description: Evaluates large language models' ability to manipulate and apply stored knowledge across logical reasoning, reading comprehension, and natural language understanding tasks. It specifically probes the 'known & incorrect' phenomenon where models possess relevant facts but fail to apply them correctly during inference. Use when the user wants to benchmark on AbsR, Commonsense (Common), Big Bench Hard (BBH), RACE-H, RACE-M, MMLU, ARC-c, ARC-e, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2601.07430
bibtex_key: lv2026kale
confidence: high
---
# kale-eval
> KALE: Enhancing Knowledge Manipulation in Large Language Models via Knowledge-aware Learning — Qitan Lv et al. (arXiv:2601.07430, 2026)
## What this evaluates
Evaluates large language models' ability to manipulate and apply stored knowledge across logical reasoning, reading comprehension, and natural language understanding tasks. It specifically probes the 'known & incorrect' phenomenon where models possess relevant facts but fail to apply them correctly during inference.
## Datasets
- **AbsR** — total ?; splits: test (-1)
- **Commonsense (Common)** — total ?; splits: test (-1)
- **Big Bench Hard (BBH)** — total ?; splits: test (-1)
- **RACE-H** — total ?; splits: test (-1)
- **RACE-M** — total ?; splits: test (-1)
- **MMLU** — total ?; splits: test (-1)
- **ARC-c** — total ?; splits: test (-1)
- **ARC-e** — total ?; splits: test (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Standard exact-match or multiple-choice accuracy: the proportion of test instances where the model's predicted answer exactly matches the ground truth label.
## Input / output format
**Input**: Standard benchmark prompts for logical reasoning, reading comprehension, and natural language understanding tasks.
**Output**: Model-generated answers or selected multiple-choice options.
## Scoring recipe
```python
def compute_accuracy(predictions, gold_labels):
correct = sum(1 for p, g in zip(predictions, gold_labels) if p == g)
return (correct / len(gold_labels)) * 100
```
## Common pitfalls
- Benchmarks use different multiple-choice formats (e.g., ARC-c vs ARC-e, MMLU) which may require different parsing strategies for exact-match accuracy.
- The paper reports results on specific backbone models but does not specify prompt templates or few-shot settings used for each benchmark, which can significantly affect accuracy.
- Accuracy is reported as a percentage in tables but defined as a proportion in text; ensure consistent scaling when reproducing.
## Evidence (verbatim from paper)
> We use accuracy as the evaluation metric. More details and baseline descriptions are provided in Appendix [G].
## Citation
```bibtex
@misc{lv2026kale,
title={KALE: Enhancing Knowledge Manipulation in Large Language Models via Knowledge-aware Learning},
author={Qitan Lv et al.},
year={2026},
note={arXiv:2601.07430}
}
```
- arXiv: 2601.07430
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!