Skip to content

Commit eba19b7

Browse files
fixed typos
1 parent f4be2ce commit eba19b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The neural net is equivalent to the **FaceRecognizerNet** used in [face-recognit
110110

111111
### 68 Point Face Landmark Detection
112112

113-
This package implements a very lightweight and fast, yet accurate 68 point face landmark detector. The default model has a size of only 350kb and the tiny model is only 80kb. Both models employ the idea of depthwise separable convolutions as well as densely connected blocks. The models have been trained on a dataset of ~35k face images labeled with 68 face landmark points.
113+
This package implements a very lightweight and fast, yet accurate 68 point face landmark detector. The default model has a size of only 350kb and the tiny model is only 80kb. Both models employ the ideas of depthwise separable convolutions as well as densely connected blocks. The models have been trained on a dataset of ~35k face images labeled with 68 face landmark points.
114114

115115
<a name="usage"></a>
116116

@@ -151,8 +151,8 @@ As an alternative, you can also create instance of the neural nets:
151151
``` javascript
152152
const net = new faceapi.FaceDetectionNet()
153153
// accordingly for the other models:
154-
// const net = new faceapi.FaceLandmarkNet()
155-
// const net = new faceapi.FaceLandmarkTinyNet()
154+
// const net = new faceapi.FaceLandmark68Net()
155+
// const net = new faceapi.FaceLandmark68TinyNet()
156156
// const net = new faceapi.FaceRecognitionNet()
157157
// const net = new faceapi.Mtcnn()
158158
// const net = new faceapi.TinyYolov2()

0 commit comments

Comments
 (0)