human/src/tfjs/types.ts

20 lines
406 B
TypeScript
Raw Normal View History

/** TFJS common types exports */
2021-05-25 14:58:20 +02:00
/**
* TensorFlow Tensor type
2021-06-07 01:00:34 +02:00
* @external
2021-05-25 14:58:20 +02:00
*/
2021-11-17 21:45:49 +01:00
export { Tensor, TensorLike, Rank } from '@tensorflow/tfjs-core/dist/index';
2021-05-25 14:58:20 +02:00
/**
* TensorFlow GraphModel type
2021-06-07 01:00:34 +02:00
* @external
2021-05-25 14:58:20 +02:00
*/
export { GraphModel } from '@tensorflow/tfjs-converter/dist/index';
2021-10-22 19:49:40 +02:00
/** Tensorflow Long type
2021-10-30 18:21:54 +02:00
* @external long
2021-10-22 19:49:40 +02:00
*/
2021-10-30 18:21:54 +02:00
// eslint-disable-next-line node/no-missing-import
2021-10-22 19:49:40 +02:00
export { Long } from 'long';