# Ola13 Precision At K

> Compute ola13/precision_at_k via the HuggingFace `evaluate` library. Use when the user has predictions + references and wants the canonical implementation of ola13/precision_at_k.

- Skill: `qhjqhj00/ola13-precision-at-k` (Agent Skill)
- Install (CLI): `npx skillmds add qhjqhj00/ola13-precision-at-k`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qhjqhj00/ola13-precision-at-k/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: qhjqhj00 (https://skillmd.com/u/qhjqhj00)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/qhjqhj00/ola13-precision-at-k

---


# ola13-precision-at-k

> Metric `ola13/precision_at_k` from the HuggingFace `evaluate` library.

## When to invoke

User asks to compute `ola13/precision_at_k` or wants HF evaluate's canonical version.

## Recipe

```python
import evaluate
metric = evaluate.load("ola13/precision_at_k")
result = metric.compute(predictions=preds, references=refs)
print(result)
```

## Don'ts

- Don't assume your in-house `ola13/precision_at_k` matches HF — version conventions vary.
- Many evaluate metrics have task-specific arguments (`average=`, `lang=`, `model_type=`); read the metric card before reporting numbers.

