update dependencies

pull/193/head
Vladimir Mandic 2021-10-02 07:46:07 -04:00
parent a223e99226
commit 8ea92add9a
9 changed files with 635 additions and 3338 deletions

View File

@ -9,8 +9,9 @@
## Changelog
### **HEAD -> main** 2021/09/29 mandic00@live.com
### **HEAD -> main** 2021/10/01 mandic00@live.com
- breaking change: new similarity and match methods
- release candidate
- tweaked default values
- enable handtrack as default model

0
assets/samples.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 297 KiB

After

Width:  |  Height:  |  Size: 297 KiB

View File

@ -5,7 +5,7 @@ After=network.target network-online.target
[Service]
Type=simple
Environment="NODE_ENV=production"
ExecStart=<path-to-node> server/serve.js
ExecStart=<path-to-node> <your-project-folder>/node_modules/@vladmandic/build/src/build.js --profile development
WorkingDirectory=<your-project-folder>
StandardOutput=inherit
StandardError=inherit

View File

@ -59,21 +59,21 @@
"@tensorflow/tfjs-backend-cpu": "^3.9.0",
"@tensorflow/tfjs-backend-wasm": "^3.9.0",
"@tensorflow/tfjs-backend-webgl": "^3.9.0",
"@tensorflow/tfjs-backend-webgpu": "^0.0.1-alpha.7",
"@tensorflow/tfjs-backend-webgpu": "^0.0.1-alpha.8",
"@tensorflow/tfjs-converter": "^3.9.0",
"@tensorflow/tfjs-core": "^3.9.0",
"@tensorflow/tfjs-data": "^3.9.0",
"@tensorflow/tfjs-layers": "^3.9.0",
"@tensorflow/tfjs-node": "^3.9.0",
"@tensorflow/tfjs-node-gpu": "^3.9.0",
"@types/node": "^16.10.1",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@vladmandic/build": "^0.5.3",
"@vladmandic/pilogger": "^0.3.3",
"canvas": "^2.8.0",
"dayjs": "^1.10.7",
"esbuild": "^0.13.2",
"esbuild": "^0.13.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,4 @@
process.env.TF_CPP_MIN_LOG_LEVEL = '2';
const Human = require('../dist/human.node-gpu.js').default;
const test = require('./test-main.js').test;

View File

@ -1,3 +1,4 @@
process.env.TF_CPP_MIN_LOG_LEVEL = '2';
const Human = require('../dist/human.node.js').default;
const test = require('./test-main.js').test;

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long