Evaluates a learning-based algorithm selection framework for High-Level Synthesis Design Space Exploration (DSE). It measures how accurately the model recommends the best-performing DSE algorithm for a given benchmark, and assesses the resulting optimization performance (ADRS) and runtime compared to heuristic and reinforcement learning baselines. Use when the user wants to benchmark on MachSuite & Polyhedral Benchmarks, or asks about evaluating this task. Reports recommendation_accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill soberdse-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Soberdse Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-soberdse-eval)More formats (shields.io, HTML) on the badges page.
---
name: soberdse-eval
description: Evaluates a learning-based algorithm selection framework for High-Level Synthesis Design Space Exploration (DSE). It measures how accurately the model recommends the best-performing DSE algorithm for a given benchmark, and assesses the resulting optimization performance (ADRS) and runtime compared to heuristic and reinforcement learning baselines. Use when the user wants to benchmark on MachSuite & Polyhedral Benchmarks, or asks about evaluating this task. Reports recommendation_accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2603.00986
bibtex_key: xu2026soberdse
confidence: high
---
# soberdse-eval
> SoberDSE: Sample-Efficient Design Space Exploration via Learning-Based Algorithm Selection — Lei Xu et al. (2026) (arXiv:2603.00986, 2026)
## What this evaluates
Evaluates a learning-based algorithm selection framework for High-Level Synthesis Design Space Exploration (DSE). It measures how accurately the model recommends the best-performing DSE algorithm for a given benchmark, and assesses the resulting optimization performance (ADRS) and runtime compared to heuristic and reinforcement learning baselines.
## Datasets
- **MachSuite & Polyhedral Benchmarks** — total 29; splits: train (20), test (9)
## Metrics
- `recommendation_accuracy` **(primary)** — range: percent
- Percentage of correct algorithm recommendations relative to the total number of test samples.
- `ADRS` — range: other
- Algorithm Design Space Recommendation Score; a DSE performance metric where lower values indicate better optimization results (e.g., area, power, latency trade-offs).
- `runtime` — range: seconds
- Total execution time in seconds for the DSE process.
## Input / output format
**Input**: Feature representation of a hardware benchmark (e.g., graph structure, design space scale, and behavioral characteristics).
**Output**: A single recommended DSE algorithm from a predefined candidate set (e.g., NSGA-II, SA, ACO, PSO, Lattice, HGBO-DSE, MOEDA, IRONMAN-PRO, QL-MOEA).
## Scoring recipe
```python
def compute_recommendation_accuracy(predictions, gold_labels):
correct = sum(1 for p, g in zip(predictions, gold_labels) if p == g)
return correct / len(gold_labels)
# ADRS is computed by the DSE solver; lower is better.
# Returns the average metric across benchmarks.
```
## Common pitfalls
- ADRS is a lower-is-better metric, unlike standard accuracy scores.
- DSE algorithms are stochastic; results may vary across runs, so fixed seeds or multiple runs are necessary for fair comparison.
- Test benchmarks are strictly disjoint from training benchmarks to prevent data leakage and evaluate generalization.
## Evidence (verbatim from paper)
> To validate the Recommendation accuracy (percentage of correct recommendations relative to the total number of samples) of our proposed algorithm, we conduct comparative evaluations of Sober and against classification methods including Random Forest (RF) (Breiman, 2001), XGBoost (Chen and Guestrin, 2016), K-NN (Cover and Hart, 1967), and SVM (Cortes and Vapnik, 1995). Furthermore, to validate the importance of the PPO component, we conduct experiments using only the Supervised recommendation model (SFM) for algorithm recommendation and recorded the results. As shown in Figure 4, our proposed Sober recommendation model demonstrates significantly more accurate algorithm recommendations compared to traditional classification models, achieving an average improvement of 35.57%.
## Citation
```bibtex
@misc{xu2026soberdse,
title={SoberDSE: Sample-Efficient Design Space Exploration via Learning-Based Algorithm Selection},
author={Lei Xu et al. (2026)},
year={2026},
note={arXiv:2603.00986}
}
```
- arXiv: 2603.00986
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!