Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/stamp/modeling/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,9 +814,11 @@
}

_logger.info(
f"Kept {len(patient_to_ground_truth)}/{len(patient_to_ground_truth)} \
patients with complete data ({len(patient_to_ground_truth) / len(patient_to_ground_truth):.1%})."
f"Total patients in clinical table: {total_clini}\n"

Check failure on line 817 in src/stamp/modeling/data.py

View workflow job for this annotation

GitHub Actions / format_and_lint

Ruff (F821)

src/stamp/modeling/data.py:817:46: F821 Undefined name `total_clini`
f"Patients appearing in slide table: {total_slides}\n"

Check failure on line 818 in src/stamp/modeling/data.py

View workflow job for this annotation

GitHub Actions / format_and_lint

Ruff (F821)

src/stamp/modeling/data.py:818:47: F821 Undefined name `total_slides`
f"Final usable patients (complete data): {final_patients}\n"

Check failure on line 819 in src/stamp/modeling/data.py

View workflow job for this annotation

GitHub Actions / format_and_lint

Ruff (F821)

src/stamp/modeling/data.py:819:51: F821 Undefined name `final_patients`
)

return patients


Expand Down
Loading