mirror of https://github.com/vladmandic/human
update dependencies
parent
a223e99226
commit
8ea92add9a
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 297 KiB After Width: | Height: | Size: 297 KiB |
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
2754
test/build.log
2754
test/build.log
File diff suppressed because it is too large
Load Diff
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
1204
test/test.log
1204
test/test.log
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue