mirror of https://github.com/vladmandic/human
updated wiki
parent
40de479c1e
commit
42100caad7
|
@ -11,6 +11,7 @@ Repository: **<git+https://github.com/vladmandic/human.git>**
|
||||||
|
|
||||||
### **HEAD -> main** 2021/08/20 mandic00@live.com
|
### **HEAD -> main** 2021/08/20 mandic00@live.com
|
||||||
|
|
||||||
|
- implemented movenet-multipose model
|
||||||
|
|
||||||
### **2.1.4** 2021/08/19 mandic00@live.com
|
### **2.1.4** 2021/08/19 mandic00@live.com
|
||||||
|
|
||||||
|
|
|
@ -66,14 +66,14 @@
|
||||||
"@tensorflow/tfjs-layers": "^3.8.0",
|
"@tensorflow/tfjs-layers": "^3.8.0",
|
||||||
"@tensorflow/tfjs-node": "^3.8.0",
|
"@tensorflow/tfjs-node": "^3.8.0",
|
||||||
"@tensorflow/tfjs-node-gpu": "^3.8.0",
|
"@tensorflow/tfjs-node-gpu": "^3.8.0",
|
||||||
"@types/node": "^16.6.2",
|
"@types/node": "^16.7.1",
|
||||||
"@typescript-eslint/eslint-plugin": "^4.29.2",
|
"@typescript-eslint/eslint-plugin": "^4.29.2",
|
||||||
"@typescript-eslint/parser": "^4.29.2",
|
"@typescript-eslint/parser": "^4.29.2",
|
||||||
"@vladmandic/pilogger": "^0.2.18",
|
"@vladmandic/pilogger": "^0.2.18",
|
||||||
"canvas": "^2.8.0",
|
"canvas": "^2.8.0",
|
||||||
"chokidar": "^3.5.2",
|
"chokidar": "^3.5.2",
|
||||||
"dayjs": "^1.10.6",
|
"dayjs": "^1.10.6",
|
||||||
"esbuild": "^0.12.21",
|
"esbuild": "^0.12.22",
|
||||||
"eslint": "^7.32.0",
|
"eslint": "^7.32.0",
|
||||||
"eslint-config-airbnb-base": "^14.2.1",
|
"eslint-config-airbnb-base": "^14.2.1",
|
||||||
"eslint-plugin-import": "^2.24.1",
|
"eslint-plugin-import": "^2.24.1",
|
||||||
|
|
|
@ -30,7 +30,7 @@ import * as app from '../package.json';
|
||||||
import { Tensor, GraphModel } from './tfjs/types';
|
import { Tensor, GraphModel } from './tfjs/types';
|
||||||
|
|
||||||
// export types
|
// export types
|
||||||
export type { Config } from './config';
|
export { Config } from './config';
|
||||||
export type { Result, Face, Hand, Body, Item, Gesture, Person } from './result';
|
export type { Result, Face, Hand, Body, Item, Gesture, Person } from './result';
|
||||||
export type { DrawOptions } from './draw/draw';
|
export type { DrawOptions } from './draw/draw';
|
||||||
|
|
||||||
|
@ -371,7 +371,7 @@ export class Human {
|
||||||
if (this.tf.getBackend() === 'webgl' || this.tf.getBackend() === 'humangl') {
|
if (this.tf.getBackend() === 'webgl' || this.tf.getBackend() === 'humangl') {
|
||||||
this.tf.ENV.set('CHECK_COMPUTATION_FOR_ERRORS', false);
|
this.tf.ENV.set('CHECK_COMPUTATION_FOR_ERRORS', false);
|
||||||
this.tf.ENV.set('WEBGL_CPU_FORWARD', true);
|
this.tf.ENV.set('WEBGL_CPU_FORWARD', true);
|
||||||
this.tf.ENV.set('WEBGL_PACK_DEPTHWISECONV', false);
|
this.tf.ENV.set('WEBGL_PACK_DEPTHWISECONV', true);
|
||||||
this.tf.ENV.set('WEBGL_USE_SHAPES_UNIFORMS', true);
|
this.tf.ENV.set('WEBGL_USE_SHAPES_UNIFORMS', true);
|
||||||
// if (!this.config.object.enabled) this.tf.ENV.set('WEBGL_FORCE_F16_TEXTURES', true); // safe to use 16bit precision
|
// if (!this.config.object.enabled) this.tf.ENV.set('WEBGL_FORCE_F16_TEXTURES', true); // safe to use 16bit precision
|
||||||
if (typeof this.config['deallocate'] !== 'undefined' && this.config['deallocate']) { // hidden param
|
if (typeof this.config['deallocate'] !== 'undefined' && this.config['deallocate']) { // hidden param
|
||||||
|
|
2
wiki
2
wiki
|
@ -1 +1 @@
|
||||||
Subproject commit 65558ea91f6d5ec2dbc46bf9c46c592d34dce706
|
Subproject commit e894eff5aee6aeca6a7690c5a3d6a0f7404d7f2c
|
Loading…
Reference in New Issue