human/types/emotion/emotion.d.ts

8 lines
285 B
TypeScript
Raw Normal View History

2021-05-25 14:58:20 +02:00
/**
* Emotion Module
*/
2021-06-03 15:41:53 +02:00
import { Config } from '../config';
import { Tensor, GraphModel } from '../tfjs/types';
export declare function load(config: Config): Promise<GraphModel>;
export declare function predict(image: Tensor, config: Config, idx: any, count: any): Promise<unknown>;