mirror of https://github.com/vladmandic/human
7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
![]() |
export declare class BaseModel {
|
||
|
model: any;
|
||
|
constructor(model: any);
|
||
|
predict(input: any): any;
|
||
|
dispose(): void;
|
||
|
}
|