29 lines
898 B
TypeScript
29 lines
898 B
TypeScript
import * as tf from '../dist/tfjs.esm';
|
|
import * as draw from './draw/index';
|
|
import * as utils from './utils/index';
|
|
import * as pkg from '../package.json';
|
|
|
|
export { tf, draw, utils };
|
|
|
|
export * from './ageGenderNet/index';
|
|
export * from './classes/index';
|
|
export * from './dom/index';
|
|
export * from './env/index';
|
|
export * from './faceExpressionNet/index';
|
|
export * from './faceLandmarkNet/index';
|
|
export * from './faceRecognitionNet/index';
|
|
export * from './factories/index';
|
|
export * from './globalApi/index';
|
|
export * from './ops/index';
|
|
export * from './ssdMobilenetv1/index';
|
|
export * from './tinyFaceDetector/index';
|
|
export * from './tinyYolov2/index';
|
|
export * from './euclideanDistance';
|
|
export * from './NeuralNetwork';
|
|
export * from './resizeResults';
|
|
|
|
export const version = pkg.version as string;
|
|
|
|
// set webgl defaults
|
|
// if (browser) tf.ENV.set('WEBGL_USE_SHAPES_UNIFORMS', true);
|