Evaluates the quality and efficiency of tabular embedding models across four granularity levels (cell, row, column, table) and six downstream tasks including similarity search, triplet evaluation, prediction, and retrieval. It probes whether a single embedding approach can generalize universally across diverse structured data applications or if performance is highly task- and granularity-dependent. Use when the user wants to benchmark on TEmBed Benchmark Suite, or asks about evaluating this t...
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill tembed-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Tembed Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-tembed-eval)More formats (shields.io, HTML) on the badges page.
---
name: tembed-eval
description: Evaluates the quality and efficiency of tabular embedding models across four granularity levels (cell, row, column, table) and six downstream tasks including similarity search, triplet evaluation, prediction, and retrieval. It probes whether a single embedding approach can generalize universally across diverse structured data applications or if performance is highly task- and granularity-dependent. Use when the user wants to benchmark on TEmBed Benchmark Suite, or asks about evaluating this task. Reports task-specific metrics.
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.21696
bibtex_key: vogel2026tembed
confidence: high
---
# tembed-eval
> Towards Universal Tabular Embeddings: A Benchmark Across Data Tasks — Liane Vogel et al. (arXiv:2604.21696, 2026)
## What this evaluates
Evaluates the quality and efficiency of tabular embedding models across four granularity levels (cell, row, column, table) and six downstream tasks including similarity search, triplet evaluation, prediction, and retrieval. It probes whether a single embedding approach can generalize universally across diverse structured data applications or if performance is highly task- and granularity-dependent.
## Datasets
- **TEmBed Benchmark Suite** — total 69; splits: test (-1); repo https://github.com/IBM/table-representation-evals
## Metrics
- `task-specific metrics` **(primary)** — range: other
- Varies by task: ranking metrics (e.g., nDCG, Recall@K) for similarity/retrieval, and accuracy/F1/RMSE for tabular prediction. Evaluated on deterministic test cases.
- `runtime` — range: other
- Wall-clock time to generate embeddings and run inference per dataset.
- `resource consumption` — range: other
- Peak CPU usage and memory/GPU memory required during evaluation.
## Input / output format
**Input**: Tabular data provided in native structured format for tabular models, or serialized text (e.g., 'col1: val1 — col2: val2' for rows, markdown tables for tables, header+value for cells/columns) for text-based models.
**Output**: Fixed-dimensional embedding vectors for the specified granularity level (cell, row, column, or table), or predicted labels/values for tabular prediction tasks.
## Scoring recipe
```python
def evaluate(model, task, dataset):
if task == 'prediction':
preds = model.predict(dataset.features, dataset.labels)
return compute_task_metric(preds, dataset.labels)
else:
embs = model.encode(dataset.input)
return compute_ranking_metric(embs, dataset.ground_truth)
```
## Common pitfalls
- Not all embedding models support all granularity levels (cell/row/column/table); evaluation must be restricted to supported levels per model.
- Extracting embeddings from prediction-focused models (e.g., TabPFN, TabICL) requires setting placeholder labels (zeros) to avoid performance degradation, as real labels interfere with embedding estimation.
- Serialization format for text embedding models significantly impacts results; inconsistent formatting across tasks can skew comparisons.
## Evidence (verbatim from paper)
> Evaluation is performed using deterministic test cases, reporting common task-specific metrics. In addition to task performance, in our framework we also track the runtime of the approaches and the resource consumption, namely CPU usage and required memory and GPU memory.
## Citation
```bibtex
@misc{vogel2026tembed,
title={Towards Universal Tabular Embeddings: A Benchmark Across Data Tasks},
author={Liane Vogel et al.},
year={2026},
note={arXiv:2604.21696}
}
```
- arXiv: 2604.21696
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!