UNPKG

image2tags

Version:

An npm package that generates keywords from an image

8 lines (7 loc) 185 B
interface Tag { className: string; tags: string[]; probability: number; } export declare function getImageTags(imagePath: string, topK?: number): Promise<Tag[]>; export {};