2022-10-17 16:47:20 +02:00
|
|
|
/** Creates tfjs bundle used by Human browser build target
|
2021-06-07 01:00:34 +02:00
|
|
|
* @external
|
2021-05-25 14:58:20 +02:00
|
|
|
*/
|
2020-11-10 14:57:39 +01:00
|
|
|
|
2022-08-21 19:34:51 +02:00
|
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
|
|
|
2022-10-17 16:47:20 +02:00
|
|
|
// export * from '@vladmandic/tfjs/dist/tfjs-core.esm.js';
|
|
|
|
// export * from '@vladmandic/tfjs/dist/tfjs.esm.js';
|
|
|
|
|
2021-09-15 04:07:13 +02:00
|
|
|
// export all from build bundle
|
2022-10-17 16:47:20 +02:00
|
|
|
export * from '@tensorflow/tfjs-core/dist/index.js';
|
|
|
|
// export * from '@tensorflow/tfjs-data/dist/index.js';
|
|
|
|
// export * from '@tensorflow/tfjs-layers/dist/index.js';
|
|
|
|
export * from '@tensorflow/tfjs-converter/dist/index.js';
|
|
|
|
export * from '@tensorflow/tfjs-backend-cpu/dist/index.js';
|
2021-11-06 15:21:51 +01:00
|
|
|
export * from '@tensorflow/tfjs-backend-webgl/dist/index.js';
|
2022-10-17 16:47:20 +02:00
|
|
|
export * from '@tensorflow/tfjs-backend-wasm/dist/index.js';
|
|
|
|
export * from '@tensorflow/tfjs-backend-webgpu/dist/index.js';
|
2021-09-15 04:07:13 +02:00
|
|
|
|
2022-10-17 16:47:20 +02:00
|
|
|
// add tflite to bundle, experimental
|
|
|
|
// @ts-ignore duplicate definition for setWasmPath
|
|
|
|
// export * from '@tensorflow/tfjs-tflite/dist/index.js';
|
2021-07-29 22:35:16 +02:00
|
|
|
|
2021-09-15 04:07:13 +02:00
|
|
|
// export versions, overrides version object from @tensorflow/tfjs
|
2022-10-17 16:47:20 +02:00
|
|
|
export { version } from 'dist/tfjs.version.js';
|