File size: 1,629 Bytes
94753b6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { InferenceOutputError } from "../../lib/InferenceOutputError";
import type { BaseArgs, Options } from "../../types";
import { request } from "../custom/request";
import type { RequestArgs } from "../../types";
import { base64FromBytes } from "../../../../shared";

export type ZeroShotImageClassificationArgs = BaseArgs & {
	inputs: {
		/**
		 * Binary image data
		 */
		image: Blob | ArrayBuffer;
	};
	parameters: {
		/**
		 * A list of strings that are potential classes for inputs. (max 10)
		 */
		candidate_labels: string[];
	};
};

export interface ZeroShotImageClassificationOutputValue {
	label: string;
	score: number;
}

export type ZeroShotImageClassificationOutput = ZeroShotImageClassificationOutputValue[];

/**
 * Classify an image to specified classes.
 * Recommended model: openai/clip-vit-large-patch14-336
 */
export async function zeroShotImageClassification(
	args: ZeroShotImageClassificationArgs,
	options?: Options
): Promise<ZeroShotImageClassificationOutput> {
	const reqArgs: RequestArgs = {
		...args,
		inputs: {
			image: base64FromBytes(
				new Uint8Array(
					args.inputs.image instanceof ArrayBuffer ? args.inputs.image : await args.inputs.image.arrayBuffer()
				)
			),
		},
	} as RequestArgs;

	const res = await request<ZeroShotImageClassificationOutput>(reqArgs, {
		...options,
		taskHint: "zero-shot-image-classification",
	});
	const isValidOutput =
		Array.isArray(res) && res.every((x) => typeof x.label === "string" && typeof x.score === "number");
	if (!isValidOutput) {
		throw new InferenceOutputError("Expected Array<{label: string, score: number}>");
	}
	return res;
}