node-efficientnet
Version:
Implementation of efficientNet model in nodejs
12 lines (11 loc) • 522 B
TypeScript
import EfficientNetModel from "./EfficientnetModel";
import { EfficientNetCheckPoint } from "./EfficientNetCheckPoint";
import { EfficientNetLabelLanguage } from "./EfficientNetLanguageProvider";
interface EfficientNetCheckPointFactoryOptions {
localModelRootDirectory?: string;
locale?: EfficientNetLabelLanguage;
}
export default class EfficientNetCheckPointFactory {
static create(checkPoint: EfficientNetCheckPoint, options?: EfficientNetCheckPointFactoryOptions): Promise<EfficientNetModel>;
}
export {};