BlastDetect / README.md
Chaimabr's picture
Update README.md
e08ef3b verified
|
Raw
History Blame Contribute Delete
887 Bytes
---
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
---