mirror of https://github.com/vladmandic/human
20 lines
677 B
TypeScript
20 lines
677 B
TypeScript
/**
|
|
* Creates tfjs bundle used by Human browser build target
|
|
* @external
|
|
*/
|
|
|
|
// export all from build bundle
|
|
export * from '@tensorflow/tfjs/dist/index.js';
|
|
// export * from '@tensorflow/tfjs-backend-webgl/dist/index.js';
|
|
// export * from '@tensorflow/tfjs-backend-wasm/dist/index.js';
|
|
|
|
// add webgpu to bundle, experimental
|
|
// export * from '@tensorflow/tfjs-backend-webgpu/dist/index.js';
|
|
|
|
// export versions, overrides version object from @tensorflow/tfjs
|
|
export { version } from '../dist/tfjs.version.js';
|
|
|
|
// export utility types used by Human
|
|
export { Tensor } from '@tensorflow/tfjs/dist/index.js';
|
|
export { GraphModel } from '@tensorflow/tfjs-converter/dist/index';
|