update
parent
0304c9c2f1
commit
3bce447141
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,7 +1,7 @@
|
|||
# @vladmandic/face-api
|
||||
|
||||
Version: **1.1.10**
|
||||
Description: **FaceAPI: AI-powered Face Detection, Description & Recognition using Tensorflow/JS**
|
||||
Version: **1.1.11**
|
||||
Description: **FaceAPI: AI-powered Face Detection & Rotation Tracking, Face Description & Recognition, Age & Gender & Emotion Prediction for Browser and NodeJS using TensorFlow/JS**
|
||||
|
||||
Author: **Vladimir Mandic <mandic00@live.com>**
|
||||
License: **MIT** </LICENSE>
|
||||
|
@ -9,8 +9,12 @@ Repository: **<git+https://github.com/vladmandic/face-api.git>**
|
|||
|
||||
## Changelog
|
||||
|
||||
### **HEAD -> master** 2021/04/06 mandic00@live.com
|
||||
### **HEAD -> master** 2021/04/10 mandic00@live.com
|
||||
|
||||
|
||||
### **1.1.11** 2021/04/06 mandic00@live.com
|
||||
|
||||
- merge pull request #46 from mayankagarwals/demo_latencytest_fix
|
||||
- fixed bug which led to latency not being measured and wrong output on console for demo
|
||||
- add cdn links
|
||||
|
||||
|
|
|
@ -15,10 +15,10 @@
|
|||
|
||||
<br>
|
||||
|
||||
## Documentation
|
||||
## Additional Documentation
|
||||
|
||||
- [**Tutorial**](TUTORIAL.md)
|
||||
- [**API Specification**](https://vladmandic.github.io/face-api/typedoc/index.html)
|
||||
- [**TypeDoc API Specification**](https://vladmandic.github.io/face-api/typedoc/index.html)
|
||||
|
||||
<br><hr><br>
|
||||
|
||||
|
|
|
@ -2080,7 +2080,7 @@ function drawFaceLandmarks(canvasArg, faceLandmarks) {
|
|||
}
|
||||
|
||||
// package.json
|
||||
var version = "1.1.10";
|
||||
var version = "1.1.11";
|
||||
|
||||
// src/xception/extractParams.ts
|
||||
function extractorsFactory2(extractWeights, paramMappings) {
|
||||
|
|
|
@ -76642,7 +76642,7 @@ function drawFaceLandmarks(canvasArg, faceLandmarks) {
|
|||
}
|
||||
|
||||
// package.json
|
||||
var version10 = "1.1.10";
|
||||
var version10 = "1.1.11";
|
||||
|
||||
// src/xception/extractParams.ts
|
||||
function extractorsFactory2(extractWeights, paramMappings) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -76768,7 +76768,7 @@ return a / b;`;
|
|||
}
|
||||
|
||||
// package.json
|
||||
var version10 = "1.1.10";
|
||||
var version10 = "1.1.11";
|
||||
|
||||
// src/xception/extractParams.ts
|
||||
function extractorsFactory2(extractWeights, paramMappings) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2262,7 +2262,7 @@ function drawFaceLandmarks(canvasArg, faceLandmarks) {
|
|||
}
|
||||
|
||||
// package.json
|
||||
var version = "1.1.10";
|
||||
var version = "1.1.11";
|
||||
|
||||
// src/ageGenderNet/AgeGenderNet.ts
|
||||
var tf20 = __toModule(require_tfjs_esm());
|
||||
|
|
|
@ -2262,7 +2262,7 @@ function drawFaceLandmarks(canvasArg, faceLandmarks) {
|
|||
}
|
||||
|
||||
// package.json
|
||||
var version = "1.1.10";
|
||||
var version = "1.1.11";
|
||||
|
||||
// src/ageGenderNet/AgeGenderNet.ts
|
||||
var tf20 = __toModule(require_tfjs_esm());
|
||||
|
|
|
@ -2262,7 +2262,7 @@ function drawFaceLandmarks(canvasArg, faceLandmarks) {
|
|||
}
|
||||
|
||||
// package.json
|
||||
var version = "1.1.10";
|
||||
var version = "1.1.11";
|
||||
|
||||
// src/ageGenderNet/AgeGenderNet.ts
|
||||
var tf20 = __toModule(require_tfjs_esm());
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
10
package.json
10
package.json
|
@ -46,19 +46,19 @@
|
|||
"@tensorflow/tfjs-node": "^3.3.0",
|
||||
"@tensorflow/tfjs-node-gpu": "^3.3.0",
|
||||
"@types/node": "^14.14.37",
|
||||
"@typescript-eslint/eslint-plugin": "^4.21.0",
|
||||
"@typescript-eslint/parser": "^4.21.0",
|
||||
"@typescript-eslint/eslint-plugin": "^4.22.0",
|
||||
"@typescript-eslint/parser": "^4.22.0",
|
||||
"@vladmandic/pilogger": "^0.2.16",
|
||||
"canvas": "^2.7.0",
|
||||
"chokidar": "^3.5.1",
|
||||
"dayjs": "^1.10.4",
|
||||
"esbuild": "^0.11.6",
|
||||
"eslint": "^7.23.0",
|
||||
"esbuild": "^0.11.10",
|
||||
"eslint": "^7.24.0",
|
||||
"eslint-config-airbnb-base": "^14.2.1",
|
||||
"eslint-plugin-import": "^2.22.1",
|
||||
"eslint-plugin-json": "^2.1.2",
|
||||
"eslint-plugin-node": "^11.1.0",
|
||||
"eslint-plugin-promise": "^4.3.1",
|
||||
"eslint-plugin-promise": "^5.1.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"seedrandom": "^3.0.5",
|
||||
"simple-git": "^2.37.0",
|
||||
|
|
Loading…
Reference in New Issue