mirror of https://github.com/vladmandic/human
update
parent
c03fd41ca7
commit
5486b0d631
|
@ -9,8 +9,13 @@
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### **HEAD -> main** 2021/11/24 mandic00@live.com
|
### **2.5.5** 2021/12/01 mandic00@live.com
|
||||||
|
|
||||||
|
|
||||||
|
### **origin/main** 2021/11/26 mandic00@live.com
|
||||||
|
|
||||||
|
- added human-motion
|
||||||
|
- add offscreencanvas typedefs
|
||||||
- release preview
|
- release preview
|
||||||
- fix face box scaling on detection
|
- fix face box scaling on detection
|
||||||
- cleanup
|
- cleanup
|
||||||
|
|
|
@ -1,13 +1,3 @@
|
||||||
export declare const version: {
|
|
||||||
'tfjs-core': string;
|
|
||||||
'tfjs-backend-cpu': string;
|
|
||||||
'tfjs-backend-webgl': string;
|
|
||||||
'tfjs-data': string;
|
|
||||||
'tfjs-layers': string;
|
|
||||||
'tfjs-converter': string;
|
|
||||||
tfjs: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
import '@tensorflow/tfjs-core';
|
import '@tensorflow/tfjs-core';
|
||||||
import '@tensorflow/tfjs-core/dist/register_all_gradients';
|
import '@tensorflow/tfjs-core/dist/register_all_gradients';
|
||||||
import '@tensorflow/tfjs-core/dist/public/chained_ops/register_all_chained_ops';
|
import '@tensorflow/tfjs-core/dist/public/chained_ops/register_all_chained_ops';
|
||||||
|
@ -19,13 +9,12 @@ import '@tensorflow/tfjs-backend-webgl';
|
||||||
import '@tensorflow/tfjs-backend-wasm';
|
import '@tensorflow/tfjs-backend-wasm';
|
||||||
import '@tensorflow/tfjs-backend-webgpu';
|
import '@tensorflow/tfjs-backend-webgpu';
|
||||||
|
|
||||||
/*
|
export declare const version: {
|
||||||
/// <reference types="offscreencanvas" />
|
'tfjs-core': string;
|
||||||
/// <reference types="webgl-ext" />
|
'tfjs-backend-cpu': string;
|
||||||
/// <reference types="webgl2" />
|
'tfjs-backend-webgl': string;
|
||||||
import * as data from '@tensorflow/tfjs-data';
|
'tfjs-data': string;
|
||||||
export { data };
|
'tfjs-layers': string;
|
||||||
export * from '@tensorflow/tfjs-core';
|
'tfjs-converter': string;
|
||||||
export * from '@tensorflow/tfjs-converter';
|
tfjs: string;
|
||||||
export * from '@tensorflow/tfjs-layers';
|
};
|
||||||
*/
|
|
||||||
|
|
Loading…
Reference in New Issue