TLAIM/TAIX-Ray
Viewer • Updated • 431k • 5.03k • 1
This repository provides two trained deep learning models for classifying X-ray images from the TAIX-Ray dataset:
Binary Classification Model - Classifies X-ray images into two categories (normal vs. abnormal).
Ordinal Classification Model - Predicts severity levels based on ordinal categories.
Model definitions, training, and evaluation code are available at https://github.com/mueller-franzes/TAIX-Ray
Ensure you have the following dependencies installed:
pip install huggingface_hub
from huggingface_hub import hf_hub_download
# Download the checkpoint file from Hugging Face Hub
file_path = hf_hub_download(
repo_id="TLAIM/TAIX-Ray",
filename="binary.ckpt", # binary.ckpt or ordinal.ckpt
)
# Check if the file has been correctly downloaded
print(f"Checkpoint downloaded to: {file_path}")