Evaluates the generalization and uncertainty quantification of Bayesian Neural Networks trained with novel Jensen-Shannon divergence loss functions compared to standard KL divergence, specifically under noisy and class-biased data conditions. Use when the user wants to benchmark on CIFAR-10, Breast Histopathology Dataset, or asks about evaluating this task. Reports validation accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill cifar10-histopathology-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cifar10 Histopathology Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-cifar10-histopathology-eval)More formats (shields.io, HTML) on the badges page.
---
name: cifar10-histopathology-eval
description: Evaluates the generalization and uncertainty quantification of Bayesian Neural Networks trained with novel Jensen-Shannon divergence loss functions compared to standard KL divergence, specifically under noisy and class-biased data conditions. Use when the user wants to benchmark on CIFAR-10, Breast Histopathology Dataset, or asks about evaluating this task. Reports validation accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2209.11366
bibtex_key: thiagarajan2022jensen
confidence: medium
---
# cifar10-histopathology-eval
> Jensen-Shannon Divergence Based Novel Loss Functions for Bayesian Neural Networks — Thiagarajan et al. (2022) (arXiv:2209.11366, 2022)
## What this evaluates
Evaluates the generalization and uncertainty quantification of Bayesian Neural Networks trained with novel Jensen-Shannon divergence loss functions compared to standard KL divergence, specifically under noisy and class-biased data conditions.
## Datasets
- **CIFAR-10** — total ?; splits: train (-1), val (-1), test (-1)
- **Breast Histopathology Dataset** — total ?; splits: train (-1), val (-1), test (-1)
## Metrics
- `validation accuracy` **(primary)** — range: [0, 1]
- Proportion of correctly classified instances in the validation set, maximized during hyperparameter optimization.
## Input / output format
**Input**: Normalized image data (CIFAR-10) or histopathology images, optionally augmented with varying levels of Gaussian noise.
**Output**: Class predictions or probability distributions from a ResNet-18 V1 Bayesian neural network.
## Scoring recipe
```python
def compute_accuracy(predictions, gold_labels):
correct = sum(1 for p, g in zip(predictions, gold_labels) if p == g)
return correct / len(gold_labels)
```
## Common pitfalls
- Exact noise levels added to CIFAR-10 are not specified in the text.
- Hyperparameters are tuned via TPE/Hyperopt rather than fixed, making exact reproduction difficult without the appendix.
- Batch normalization layers are explicitly removed from the ResNet-18 architecture.
## Evidence (verbatim from paper)
> An optimization is performed to maximize the validation accuracy for different hyperparameter settings of the network.
## Citation
```bibtex
@misc{thiagarajan2022jensen,
title={Jensen-Shannon Divergence Based Novel Loss Functions for Bayesian Neural Networks},
author={Thiagarajan et al. (2022)},
year={2022},
note={arXiv:2209.11366}
}
```
- arXiv: 2209.11366
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!