lin1007 commited on
Commit
251f064
·
verified ·
1 Parent(s): d5633cd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -3
README.md CHANGED
@@ -3,19 +3,22 @@ license: cc-by-nc-sa-4.0
3
  ---
4
  This model is an object detection model trained with tensorflow object detection API, published with the paper [Edge Artificial Intelligence for real-time automatic quantification of filariasis in mobile microscopy](https://www.medrxiv.org/content/10.1101/2023.08.02.23293538v1)
5
 
6
- - Model description:
7
  - Developed by: Spotlab
8
  - Model type: SSD mobilenet v2
9
- - Classes: microfilaria
 
10
  - Datasets:
11
  - Training set: 700 field of view images (100 magnification) from 85 samples with 1965 microfilarias
12
  - Validation set: 173 field of view images (100 magnification) from 30 samples with 328 microfilarias
13
  - Test set: 453 field of view images (100 magnification) from 30 samples with 328 microfilarias
14
 
15
- - Results:
16
  - On validation set: 88.17% precision, 91.62% recall, and 89.85% f1 score.
17
  - On test set: 94.14% precision, 91.90% recall, and 93.01% f1 score.
18
  Example detections
19
  ![image/jpeg](https://cdn-uploads.huggingface.co/production/uploads/6509bcfc7e0d56c2717248be/t0rnWqTt69hbG4zPwimcu.jpeg)
20
  ![image/jpeg](https://cdn-uploads.huggingface.co/production/uploads/6509bcfc7e0d56c2717248be/5i7H_eo_z7SFLAFrlL8-e.jpeg)
 
21
 
 
 
 
3
  ---
4
  This model is an object detection model trained with tensorflow object detection API, published with the paper [Edge Artificial Intelligence for real-time automatic quantification of filariasis in mobile microscopy](https://www.medrxiv.org/content/10.1101/2023.08.02.23293538v1)
5
 
 
6
  - Developed by: Spotlab
7
  - Model type: SSD mobilenet v2
8
+ - Classes: Microfilaria
9
+ - Model input: image resized to 640 and normalized to with mean=127.5 and std = 127.5.
10
  - Datasets:
11
  - Training set: 700 field of view images (100 magnification) from 85 samples with 1965 microfilarias
12
  - Validation set: 173 field of view images (100 magnification) from 30 samples with 328 microfilarias
13
  - Test set: 453 field of view images (100 magnification) from 30 samples with 328 microfilarias
14
 
15
+ - Performance:
16
  - On validation set: 88.17% precision, 91.62% recall, and 89.85% f1 score.
17
  - On test set: 94.14% precision, 91.90% recall, and 93.01% f1 score.
18
  Example detections
19
  ![image/jpeg](https://cdn-uploads.huggingface.co/production/uploads/6509bcfc7e0d56c2717248be/t0rnWqTt69hbG4zPwimcu.jpeg)
20
  ![image/jpeg](https://cdn-uploads.huggingface.co/production/uploads/6509bcfc7e0d56c2717248be/5i7H_eo_z7SFLAFrlL8-e.jpeg)
21
+ The model is trained with the square inside the field of view instead with the full field of view. To ensure the model performace, use use this scale.
22
 
23
+ You can create your own android app to run this model following this tutorial: (TensorFlow Lite Object Detection Android Demo
24
+ )[https://github.com/tensorflow/examples/tree/master/lite/examples/object_detection/android]