Johannes commited on
Commit
c318dc9
1 Parent(s): 01212d7

desc update

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -160,10 +160,10 @@ dsfd_radio = gr.Radio(["On", "Off"], value="On", label="DSFD")
160
  description = """This space let's you compare different face detection algorithms, based on Convolutional Neural Networks (CNNs).
161
 
162
  The models used here are:
163
- * Kornia YuNet:
164
- * RetinaFace:
165
- * RetinaMobileNet:
166
- * DSFD:
167
  """
168
 
169
  compare_iface = gr.Interface(
 
160
  description = """This space let's you compare different face detection algorithms, based on Convolutional Neural Networks (CNNs).
161
 
162
  The models used here are:
163
+ * Kornia YuNet: High Speed. Using the [Kornia Face Detection](https://kornia.readthedocs.io/en/latest/applications/face_detection.html) implementation
164
+ * RetinaFace: High Accuracy. Using the [RetinaFace](https://arxiv.org/pdf/1905.00641.pdf) implementation with ResNet50 backbone from the [face-detection library](https://github.com/hukkelas/DSFD-Pytorch-Inference)
165
+ * RetinaMobileNet: Mid Speed, Mid Accuracy. RetinaFace with a MobileNetV1 backbone, also from the [face-detection library](https://github.com/hukkelas/DSFD-Pytorch-Inference)
166
+ * DSFD: High Accuracy. [Dual Shot Face Detector](http://openaccess.thecvf.com/content_CVPR_2019/papers/Li_DSFD_Dual_Shot_Face_Detector_CVPR_2019_paper.pdf) from the [face-detection library](https://github.com/hukkelas/DSFD-Pytorch-Inference) as well.
167
  """
168
 
169
  compare_iface = gr.Interface(