Evaluates the capability of transformer-based models to automatically assign numerical scores to clinical patient notes. It probes how masked language modeling pretraining and pseudo-labeling strategies improve scoring performance across different model architectures. Use when the user wants to benchmark on Unspecified clinical patient notes dataset, or asks about evaluating this task. Reports CV Score.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill clinical-note-scoring-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Clinical Note Scoring Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-clinical-note-scoring-eval)More formats (shields.io, HTML) on the badges page.
---
name: clinical-note-scoring-eval
description: Evaluates the capability of transformer-based models to automatically assign numerical scores to clinical patient notes. It probes how masked language modeling pretraining and pseudo-labeling strategies improve scoring performance across different model architectures. Use when the user wants to benchmark on Unspecified clinical patient notes dataset, or asks about evaluating this task. Reports CV Score.
metadata:
skill_kind: dataset_eval
source_arxiv: 2401.12994
bibtex_key: xu2024automated
confidence: medium
---
# clinical-note-scoring-eval
> Automated Scoring of Clinical Patient Notes using Advanced NLP and Pseudo Labeling — Jingyu Xu et al. (arXiv:2401.12994, 2024)
## What this evaluates
Evaluates the capability of transformer-based models to automatically assign numerical scores to clinical patient notes. It probes how masked language modeling pretraining and pseudo-labeling strategies improve scoring performance across different model architectures.
## Datasets
- **Unspecified clinical patient notes dataset** — total ?; splits: train (-1), val (-1), test (-1)
## Metrics
- `CV Score` **(primary)** — range: other
- Cross-validation score reported across experimental folds. The exact mathematical formulation (e.g., accuracy, F1, or correlation) is not specified in the provided text.
## Input / output format
**Input**: Clinical patient notes (text)
**Output**: Numerical score
## Scoring recipe
```python
def evaluate_cv(model, data, n_folds=5):
scores = []
for train_idx, val_idx in cross_validate(data, n_folds):
model.fit(data[train_idx])
preds = model.predict(data[val_idx])
scores.append(compute_metric(preds, data.labels[val_idx]))
return sum(scores) / len(scores)
```
## Common pitfalls
- The specific dataset name, source, and exact train/val/test split sizes are not provided in the experimental section.
- The mathematical definition of 'CV Score' (e.g., whether it measures accuracy, correlation, or another statistic) is omitted, making exact reproduction difficult.
## Evidence (verbatim from paper)
> Table [I](#S4.T1 "TABLE I ‣ IV-A Comparison Experiment with DeBERTa-v3-large using MLM and Pseudo Labeling ‣ IV Experiment Results ‣ Automated Scoring of Clinical Patient Notes using Advanced NLP and Pseudo Labeling") shows the cross-validation (CV) scores for different experiments. The ”CV Score” column represents the cross-validation score achieved for each experiment.
## Citation
```bibtex
@misc{xu2024automated,
title={Automated Scoring of Clinical Patient Notes using Advanced NLP and Pseudo Labeling},
author={Jingyu Xu et al.},
year={2024},
note={arXiv:2401.12994}
}
```
- arXiv: 2401.12994

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!