mirror of https://github.com/vladmandic/human
32 lines
957 B
TypeScript
32 lines
957 B
TypeScript
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/dist/register_all_gradients';
|
|
import '@tensorflow/tfjs-core/dist/public/chained_ops/register_all_chained_ops';
|
|
import '@tensorflow/tfjs-data';
|
|
import '@tensorflow/tfjs-layers';
|
|
import '@tensorflow/tfjs-converter';
|
|
import '@tensorflow/tfjs-backend-cpu';
|
|
import '@tensorflow/tfjs-backend-webgl';
|
|
import '@tensorflow/tfjs-backend-wasm';
|
|
import '@tensorflow/tfjs-backend-webgpu';
|
|
|
|
/*
|
|
/// <reference types="offscreencanvas" />
|
|
/// <reference types="webgl-ext" />
|
|
/// <reference types="webgl2" />
|
|
import * as data from '@tensorflow/tfjs-data';
|
|
export { data };
|
|
export * from '@tensorflow/tfjs-core';
|
|
export * from '@tensorflow/tfjs-converter';
|
|
export * from '@tensorflow/tfjs-layers';
|
|
*/
|