@tn3w/openage 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/openage.esm.js +3 -2
- package/dist/openage.esm.js.map +1 -1
- package/dist/openage.min.js +1 -1
- package/dist/openage.min.js.map +1 -1
- package/dist/openage.umd.js +3 -2
- package/dist/openage.umd.js.map +1 -1
- package/package.json +1 -4
- package/src/constants.js +3 -2
package/dist/openage.umd.js
CHANGED
|
@@ -1054,13 +1054,14 @@
|
|
|
1054
1054
|
|
|
1055
1055
|
const MEDIAPIPE_MODEL =
|
|
1056
1056
|
'https://storage.googleapis.com/mediapipe-models/' +
|
|
1057
|
-
'face_landmarker/face_landmarker/float16/
|
|
1057
|
+
'face_landmarker/face_landmarker/float16/1/' +
|
|
1058
1058
|
'face_landmarker.task';
|
|
1059
1059
|
|
|
1060
1060
|
const FACEAPI_CDN =
|
|
1061
1061
|
'https://cdn.jsdelivr.net/npm/' + 'face-api.js@0.22.2/dist/face-api.min.js';
|
|
1062
1062
|
|
|
1063
|
-
const FACEAPI_MODEL_CDN =
|
|
1063
|
+
const FACEAPI_MODEL_CDN =
|
|
1064
|
+
'https://cdn.jsdelivr.net/gh/' + 'justadudewhohacks/face-api.js@master/weights';
|
|
1064
1065
|
|
|
1065
1066
|
const MAX_RETRIES = 3;
|
|
1066
1067
|
const BURST_FRAMES = 5;
|