Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,411 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 |
import { InferenceOutputError } from "../../lib/InferenceOutputError";
import { getDefaultTask } from "../../lib/getDefaultTask";
import type { BaseArgs, Options } from "../../types";
import { request } from "../custom/request";
export type SentenceSimilarityArgs = BaseArgs & {
/**
* The inputs vary based on the model.
*
* For example when using sentence-transformers/paraphrase-xlm-r-multilingual-v1 the inputs will have a `source_sentence` string and
* a `sentences` array of strings
*/
inputs: Record<string, unknown> | Record<string, unknown>[];
};
/**
* Returned values are a list of floats
*/
export type SentenceSimilarityOutput = number[];
/**
* Calculate the semantic similarity between one text and a list of other sentences by comparing their embeddings.
*/
export async function sentenceSimilarity(
args: SentenceSimilarityArgs,
options?: Options
): Promise<SentenceSimilarityOutput> {
const defaultTask = args.model ? await getDefaultTask(args.model, args.accessToken, options) : undefined;
const res = await request<SentenceSimilarityOutput>(args, {
...options,
taskHint: "sentence-similarity",
...(defaultTask === "feature-extraction" && { forceTask: "sentence-similarity" }),
});
const isValidOutput = Array.isArray(res) && res.every((x) => typeof x === "number");
if (!isValidOutput) {
throw new InferenceOutputError("Expected number[]");
}
return res;
}
|