Evaluates the effectiveness of dataset distillation methods for medical imaging by training classification models on synthetic datasets and measuring their accuracy on held-out real test sets. It probes how well distilled images preserve class-discriminative features across diverse medical modalities, resolutions, and class imbalances. Use when the user wants to benchmark on COVID19-CXR, SKIN-HAM, BREAST-ULS, PATHMNIST, OCTMNIST, ORGAN3D, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill medical-dataset-distillation-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Medical Dataset Distillation Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-medical-dataset-distillation-eval)More formats (shields.io, HTML) on the badges page.
---
name: medical-dataset-distillation-eval
description: Evaluates the effectiveness of dataset distillation methods for medical imaging by training classification models on synthetic datasets and measuring their accuracy on held-out real test sets. It probes how well distilled images preserve class-discriminative features across diverse medical modalities, resolutions, and class imbalances. Use when the user wants to benchmark on COVID19-CXR, SKIN-HAM, BREAST-ULS, PATHMNIST, OCTMNIST, ORGAN3D, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2403.13469
bibtex_key: yu2024progressive
confidence: high
---
# medical-dataset-distillation-eval
> Progressive trajectory matching for medical dataset distillation — Yu et al. (2024) (arXiv:2403.13469, 2024)
## What this evaluates
Evaluates the effectiveness of dataset distillation methods for medical imaging by training classification models on synthetic datasets and measuring their accuracy on held-out real test sets. It probes how well distilled images preserve class-discriminative features across diverse medical modalities, resolutions, and class imbalances.
## Datasets
- **COVID19-CXR** — total 21165; splits: test (-1)
- **SKIN-HAM** — total 10015; splits: test (-1)
- **BREAST-ULS** — total 780; splits: test (-1)
- **PATHMNIST** — total ?; splits: test (-1)
- **OCTMNIST** — total ?; splits: test (-1)
- **ORGAN3D** — total ?; splits: test (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Standard classification accuracy: the proportion of correctly predicted labels on the real test set.
## Input / output format
**Input**: Synthetic image dataset generated by a distillation algorithm, used as training data for a target classification network.
**Output**: Mean and standard deviation of classification accuracy over 10 random network initializations on the real test set.
## Scoring recipe
```python
def compute_metric(synthetic_data, real_test_data):
accs = []
for _ in range(10):
model = create_random_model()
train(model, synthetic_data, epochs=1000, optimizer='SGD')
accs.append(evaluate(model, real_test_data))
return mean(accs), std(accs)
```
## Common pitfalls
- Using a single training run instead of 10 random initializations and reporting mean/std.
- Ignoring the IPC (images per class) setting, as performance varies significantly across IPC=2 and IPC=10.
- Omitting differentiable augmentations during the training of distilled images, which are required for fair comparison.
## Evidence (verbatim from paper)
> Finally, in the evaluation stage after the synthetic dataset is generated, we train 10 randomly initialized network on it each time for 1000 training epochs using SGD optimizer, and report the mean and standard deviation of their accuracy on the real test set.
## Citation
```bibtex
@misc{yu2024progressive,
title={Progressive trajectory matching for medical dataset distillation},
author={Yu et al. (2024)},
year={2024},
note={arXiv:2403.13469}
}
```
- arXiv: 2403.13469
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!