Normalize results by compute budget (Pareto analysis)
Scanned 6/2/2026
Install to Claude Code
npx -y skills add yogsoth-ai/de-anthropocentric-research-engine --skill compute-normalization --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Compute Normalization?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/yogsoth-ai-compute-normalization)More formats (shields.io, HTML) on the badges page.
---
name: compute-normalization
description: Normalize results by compute budget (Pareto analysis)
execution: subagent
prompt: ./prompt.md
input: method_scores, compute_costs
used-by: baseline-establishment
---
# Compute Normalization
## Purpose
Analyze the performance-compute tradeoff across methods. Identify Pareto-optimal methods (best performance for a given compute budget), compute-normalized rankings, and efficiency frontiers. Essential for practical method selection under resource constraints.
## Input Schema
| Field | Type | Description |
|-------|------|-------------|
| method_scores | object[] | Array of {method, dataset, metric, score} |
| compute_costs | object[] | Array of {method, flops, gpu_hours, params, training_cost_usd} |
## Output Schema
```json
{
"pareto_frontier": [
{
"method": "string",
"score": 0.0,
"compute_metric": "string",
"compute_value": 0.0,
"is_pareto_optimal": true
}
],
"efficiency_rankings": [
{
"method": "string",
"score_per_flop": 0.0,
"score_per_gpu_hour": 0.0,
"score_per_param": 0.0
}
],
"compute_normalized_scores": [
{
"method": "string",
"raw_score": 0.0,
"normalized_score": 0.0,
"normalization_method": "string"
}
],
"practical_recommendations": {
"budget_low": {"method": "string", "score": 0.0, "cost": "string"},
"budget_medium": {"method": "string", "score": 0.0, "cost": "string"},
"budget_high": {"method": "string", "score": 0.0, "cost": "string"}
}
}
```
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!