Chaimabr commited on
Commit
e08ef3b
·
verified ·
1 Parent(s): 24d409f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -10,11 +10,11 @@ tags:
10
  - computer-vision
11
  ---
12
 
13
- # 🧬 Blast Cell Detection and Counting Model
14
 
15
  ## 📌 Overview
16
 
17
- This repository contains a PyTorch-trained model for **blast cell detection and counting in microscopic blood smear images**.
18
 
19
  ---
20
 
@@ -43,7 +43,7 @@ import torch
43
  model = ... # define your model architecture here
44
  model.load_state_dict(torch.load("trained-model.pth", map_location="cpu"))
45
  model.eval()
46
-
47
 
48
 
49
 
 
10
  - computer-vision
11
  ---
12
 
13
+ # 🧬 Blast Cell Detection
14
 
15
  ## 📌 Overview
16
 
17
+ This repository contains a PyTorch-trained model for **blast cell detection in microscopic blood smear images**.
18
 
19
  ---
20
 
 
43
  model = ... # define your model architecture here
44
  model.load_state_dict(torch.load("trained-model.pth", map_location="cpu"))
45
  model.eval()
46
+ ```
47
 
48
 
49