--- library_name: pytorch tags: - medical-imaging - pathology - microscopy - leukemia - blast-cells - deep-learning - computer-vision --- # ๐Ÿงฌ Blast Cell Detection ## ๐Ÿ“Œ Overview This repository contains a PyTorch-trained model for **blast cell detection in microscopic blood smear images**. --- ## ๐Ÿงช Dataset The model was trained using the publicly available: **ALL-IDB (Acute Lymphoblastic Leukemia Image Database)** ๐Ÿ”— https://scotti.di.unimi.it/all/ --- ## ๐Ÿ“ฆ Model File - `resnet_unet_attention.pth` โ†’ PyTorch model weights --- ## ๐Ÿš€ Usage To use this model, you must define the same architecture used during training, then load the weights as follows: ```python import torch model = ... # define your model architecture here model.load_state_dict(torch.load("trained-model.pth", map_location="cpu")) model.eval() ``` --- license: cc-by-2.0 ---