# Medical Dataset Distillation Eval

> 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.

- Skill: `qhjqhj00/medical-dataset-distillation-eval` (Agent Skill)
- Install (CLI): `npx skillmds add qhjqhj00/medical-dataset-distillation-eval`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qhjqhj00/medical-dataset-distillation-eval/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: qhjqhj00 (https://skillmd.com/u/qhjqhj00)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/qhjqhj00/medical-dataset-distillation-eval

---


# 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

