Probes whether tabular models can effectively leverage declarative business knowledge and metadata semantics for prediction tasks, rather than relying solely on statistical correlations in raw features. It evaluates the impact of schema-grounded semantic embeddings on model inductive biases and relative performance across different model families. Use when the user wants to benchmark on SALT-KG, or asks about evaluating this task. Reports ranking metrics.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill salt-kg-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Salt Kg Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-salt-kg-eval)More formats (shields.io, HTML) on the badges page.
---
name: salt-kg-eval
description: Probes whether tabular models can effectively leverage declarative business knowledge and metadata semantics for prediction tasks, rather than relying solely on statistical correlations in raw features. It evaluates the impact of schema-grounded semantic embeddings on model inductive biases and relative performance across different model families. Use when the user wants to benchmark on SALT-KG, or asks about evaluating this task. Reports ranking metrics.
metadata:
skill_kind: dataset_eval
source_arxiv: 2601.07638
bibtex_key: mulang2026saltkg
confidence: medium
---
# salt-kg-eval
> SALT-KG: A Benchmark for Semantics-Aware Learning on Enterprise Tables — Mulang et al. (2026) (arXiv:2601.07638, 2026)
## What this evaluates
Probes whether tabular models can effectively leverage declarative business knowledge and metadata semantics for prediction tasks, rather than relying solely on statistical correlations in raw features. It evaluates the impact of schema-grounded semantic embeddings on model inductive biases and relative performance across different model families.
## Datasets
- **SALT-KG** — total ?; splits: test (-1); repo https://github.com/SAP-samples/salt-kg
## Metrics
- `ranking metrics` **(primary)** — range: other
- Standard tabular evaluation metrics used to rank model performance; exact formula not specified in the provided text.
- `predictive accuracy` — range: percent
- Standard classification or regression accuracy; exact formula not specified in the provided text.
## Input / output format
**Input**: Tabular row features (numerical and categorical) concatenated with a reduced-dimensional semantic representation derived from OBKG schema descriptors (CDS View, Fields, objNodeTypes) encoded via text-embedding-3-large and projected via PCA (16-64 components).
**Output**: Standard tabular prediction outputs (classification or regression labels/probabilities); exact format not specified.
## Scoring recipe
```python
# Standard tabular evaluation as implied by the text
def score(predictions, gold):
# Compute standard accuracy or ranking metric
accuracy = (predictions == gold).mean()
return accuracy
```
## Common pitfalls
- Semantic grounding modifies inductive biases rather than raw predictive accuracy, yielding only marginal gains in classical metrics.
- The dataset's relational scaffold lacks higher-order ontological depth (e.g., class hierarchies, transitivity), limiting semantic generalization.
- Neural baselines show greater sensitivity to semantic alignment than tree-based methods, which remain stable due to native handling of heterogeneous data.
## Evidence (verbatim from paper)
> Across all baselines, incorporating metadata-derived features rarely changes overall ranking metrics but consistently alters the relative performance of different model families, as shown by the slight deviations in Tab.[1].
## Citation
```bibtex
@misc{mulang2026saltkg,
title={SALT-KG: A Benchmark for Semantics-Aware Learning on Enterprise Tables},
author={Mulang et al. (2026)},
year={2026},
note={arXiv:2601.07638}
}
```
- arXiv: 2601.07638
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!