This model is a Deep Learning classifier designed to detect Tuberculosis from chest X-ray images. It was developed as part of a mission to provide automated diagnostic support in healthcare.
The model has been trained to distinguish between healthy lungs and those showing signs of TB infection with high precision.
1from tensorflow.keras.models import load_model
2import hf_hub_download
3
4model_path = hf_hub_download(repo_id="Harshi2303/tb-cnn-model", filename="tb_cnn_model.h5")
5model = load_model(model_path)