Views
No views yet
| Metric | Value |
|---|---|
| AUC-ROC | 0.8679 |
| Accuracy | 0.7679 |
| F1-Score | 0.6156 |
| Recall | 0.8248 |
| Specificity | 0.7514 |
| Precision | 0.4911 |
1import tensorflow as tf
2from huggingface_hub import hf_hub_download
3
4model_path = hf_hub_download(repo_id="vksfdc2025/pneumonia-detection-model", filename="best_pneumonia_model.keras")
5model = tf.keras.models.load_model(model_path)