You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ The neural net is equivalent to the **FaceRecognizerNet** used in [face-recognit
110
110
111
111
### 68 Point Face Landmark Detection
112
112
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.
114
114
115
115
<aname="usage"></a>
116
116
@@ -151,8 +151,8 @@ As an alternative, you can also create instance of the neural nets:
151
151
```javascript
152
152
constnet=newfaceapi.FaceDetectionNet()
153
153
// 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()
0 commit comments