mirror of https://github.com/vladmandic/human
65 lines
2.9 KiB
TypeScript
65 lines
2.9 KiB
TypeScript
/**
|
|
* Creates tfjs bundle used by Human browser build target
|
|
* @external
|
|
*/
|
|
|
|
// import from dist
|
|
// modules: 1299, moduleBytes: 4230827, imports: 7, importBytes: 2478, outputBytes: 2357435
|
|
// get versions of all packages
|
|
/*
|
|
import * as packageBundle from '@tensorflow/tfjs/package.json';
|
|
import * as packageCore from '@tensorflow/tfjs-core/package.json';
|
|
import * as packageData from '@tensorflow/tfjs-data/package.json';
|
|
import * as packageLayers from '@tensorflow/tfjs-layers/package.json';
|
|
import * as packageConverter from '@tensorflow/tfjs-converter/package.json';
|
|
// for backends, get version from source so it can register backend during import
|
|
import { version_cpu } from '@tensorflow/tfjs-backend-cpu/dist/index.js';
|
|
import { version_webgl } from '@tensorflow/tfjs-backend-webgl/dist/index.js';
|
|
import { version_wasm } from '@tensorflow/tfjs-backend-wasm/dist/index.js';
|
|
|
|
// export all
|
|
export * from '@tensorflow/tfjs-core/dist/index.js';
|
|
export * from '@tensorflow/tfjs-layers/dist/index.js';
|
|
export * from '@tensorflow/tfjs-converter/dist/index.js';
|
|
export * as data from '@tensorflow/tfjs-data/dist/index.js';
|
|
export * from '@tensorflow/tfjs-backend-cpu/dist/index.js';
|
|
export * from '@tensorflow/tfjs-backend-webgl/dist/index.js';
|
|
export * from '@tensorflow/tfjs-backend-wasm/dist/index.js';
|
|
*/
|
|
|
|
// import from src
|
|
// modules: 1681, moduleBytes: 5711239, imports: 7, importBytes: 2701, outputBytes: 2107830
|
|
// get versions of all packages
|
|
import { version as tfjsVersion } from '@tensorflow/tfjs/package.json';
|
|
import { version as tfjsCoreVersion } from '@tensorflow/tfjs-core/package.json';
|
|
import { version as tfjsDataVersion } from '@tensorflow/tfjs-data/package.json';
|
|
import { version as tfjsLayersVersion } from '@tensorflow/tfjs-layers/package.json';
|
|
import { version as tfjsConverterVersion } from '@tensorflow/tfjs-converter/package.json';
|
|
import { version as tfjsBackendCPUVersion } from '@tensorflow/tfjs-backend-cpu/package.json';
|
|
import { version as tfjsBackendWebGLVersion } from '@tensorflow/tfjs-backend-webgl/package.json';
|
|
import { version as tfjsBackendWASMVersion } from '@tensorflow/tfjs-backend-wasm/package.json';
|
|
|
|
// export all
|
|
export * from '@tensorflow/tfjs-core/src/index';
|
|
export * from '@tensorflow/tfjs-layers/src/index';
|
|
export * from '@tensorflow/tfjs-converter/src/index';
|
|
export * as data from '@tensorflow/tfjs-data/src/index';
|
|
export * from '@tensorflow/tfjs-backend-cpu/src/index';
|
|
export * from '@tensorflow/tfjs-backend-webgl/src/index';
|
|
export * from '@tensorflow/tfjs-backend-wasm/src/index';
|
|
/*
|
|
*/
|
|
|
|
// export versions
|
|
export const version = {
|
|
tfjs: tfjsVersion,
|
|
'tfjs-core': tfjsCoreVersion,
|
|
'tfjs-data': tfjsDataVersion,
|
|
'tfjs-layers': tfjsLayersVersion,
|
|
'tfjs-converter': tfjsConverterVersion,
|
|
'tfjs-backend-cpu': tfjsBackendCPUVersion,
|
|
'tfjs-backend-webgl': tfjsBackendWebGLVersion,
|
|
'tfjs-backend-wasm': tfjsBackendWASMVersion,
|
|
};
|
|
// export const version = {};
|