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