Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,271 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 |
import { InferenceOutputError } from "../../lib/InferenceOutputError";
import type { BaseArgs, Options } from "../../types";
import { request } from "../custom/request";
export type FillMaskArgs = BaseArgs & {
inputs: string;
};
export type FillMaskOutput = {
/**
* The probability for this token.
*/
score: number;
/**
* The actual sequence of tokens that ran against the model (may contain special tokens)
*/
sequence: string;
/**
* The id of the token
*/
token: number;
/**
* The string representation of the token
*/
token_str: string;
}[];
/**
* Tries to fill in a hole with a missing word (token to be precise). That’s the base task for BERT models.
*/
export async function fillMask(args: FillMaskArgs, options?: Options): Promise<FillMaskOutput> {
const res = await request<FillMaskOutput>(args, {
...options,
taskHint: "fill-mask",
});
const isValidOutput =
Array.isArray(res) &&
res.every(
(x) =>
typeof x.score === "number" &&
typeof x.sequence === "string" &&
typeof x.token === "number" &&
typeof x.token_str === "string"
);
if (!isValidOutput) {
throw new InferenceOutputError(
"Expected Array<{score: number, sequence: string, token: number, token_str: string}>"
);
}
return res;
}
|