mirror of https://github.com/vladmandic/human
update keywords
parent
fd9174cceb
commit
3120911979
|
@ -1,6 +1,6 @@
|
||||||
# @vladmandic/human
|
# @vladmandic/human
|
||||||
|
|
||||||
Version: **1.3.1**
|
Version: **1.3.3**
|
||||||
Description: **Human: AI-powered 3D Face Detection, Face Description & Recognition, Body Pose Tracking, Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction & Gesture Recognition**
|
Description: **Human: AI-powered 3D Face Detection, Face Description & Recognition, Body Pose Tracking, Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction & Gesture Recognition**
|
||||||
|
|
||||||
Author: **Vladimir Mandic <mandic00@live.com>**
|
Author: **Vladimir Mandic <mandic00@live.com>**
|
||||||
|
@ -9,8 +9,13 @@ Repository: **<git+https://github.com/vladmandic/human.git>**
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### **HEAD -> main** 2021/04/02 mandic00@live.com
|
### **1.3.3** 2021/04/03 mandic00@live.com
|
||||||
|
|
||||||
|
- fix linting and tests
|
||||||
|
|
||||||
|
### **1.3.2** 2021/04/02 mandic00@live.com
|
||||||
|
|
||||||
|
- input type validation
|
||||||
- normalize all scores
|
- normalize all scores
|
||||||
|
|
||||||
### **1.3.1** 2021/03/30 mandic00@live.com
|
### **1.3.1** 2021/03/30 mandic00@live.com
|
||||||
|
|
12
package.json
12
package.json
|
@ -28,11 +28,13 @@
|
||||||
"test": "node --trace-warnings --unhandled-rejections=strict --trace-uncaught --no-deprecation test/test-node.js"
|
"test": "node --trace-warnings --unhandled-rejections=strict --trace-uncaught --no-deprecation test/test-node.js"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"tensorflowjs",
|
"human",
|
||||||
|
"face-api",
|
||||||
"face-detection",
|
"face-detection",
|
||||||
"face-geometry",
|
"face-geometry",
|
||||||
"face-embedding",
|
"face-embedding",
|
||||||
"face-recognition",
|
"face-recognition",
|
||||||
|
"face-description",
|
||||||
"body-tracking",
|
"body-tracking",
|
||||||
"hand-tracking",
|
"hand-tracking",
|
||||||
"iris-tracking",
|
"iris-tracking",
|
||||||
|
@ -40,9 +42,11 @@
|
||||||
"emotion-detection",
|
"emotion-detection",
|
||||||
"gender-prediction",
|
"gender-prediction",
|
||||||
"gesture-recognition",
|
"gesture-recognition",
|
||||||
"human",
|
|
||||||
"face",
|
"face",
|
||||||
"person"
|
"person",
|
||||||
|
"tensorflowjs",
|
||||||
|
"tfjs",
|
||||||
|
"tensorflow"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@microsoft/api-extractor": "^7.13.2",
|
"@microsoft/api-extractor": "^7.13.2",
|
||||||
|
@ -62,7 +66,7 @@
|
||||||
"@vladmandic/pilogger": "^0.2.15",
|
"@vladmandic/pilogger": "^0.2.15",
|
||||||
"chokidar": "^3.5.1",
|
"chokidar": "^3.5.1",
|
||||||
"dayjs": "^1.10.4",
|
"dayjs": "^1.10.4",
|
||||||
"esbuild": "^0.11.2",
|
"esbuild": "^0.11.4",
|
||||||
"eslint": "^7.23.0",
|
"eslint": "^7.23.0",
|
||||||
"eslint-config-airbnb-base": "^14.2.1",
|
"eslint-config-airbnb-base": "^14.2.1",
|
||||||
"eslint-plugin-import": "^2.22.1",
|
"eslint-plugin-import": "^2.22.1",
|
||||||
|
|
Loading…
Reference in New Issue