Views
No views yet
resnet50_brain_tumor_fullresnet50_tb_fullresnet50_pneumonia_full1from huggingface_hub import hf_hub_download
2import torch
3
4# Download a specific model (example: brain tumor classification)
5model_path = hf_hub_download(
6 repo_id="hitmanonholiday/openmed-medical-imaging-models",
7 filename="resnet50_brain_tumor_full/pytorch_model.bin"
8)
9
10# Load the model
11checkpoint = torch.load(model_path, map_location="cpu")1@misc{openmed_models_2024,
2 title={OpenMed: AI-Powered Medical Imaging Analysis Platform},
3 author={OpenMed Team},
4 year={2024},
5 howpublished={\url{https://huggingface.co/hitmanonholiday/openmed-medical-imaging-models}}
6}