Spaces:
Running
Running
File size: 6,422 Bytes
a9fbc84 | 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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | import fs from "node:fs";
import path from "node:path";
import { fileURLToPath } from "node:url";
import { Tokenizer } from "@huggingface/tokenizers";
import debug from "debug";
import { InferenceSession, Tensor } from "onnxruntime-node";
import { downloadFileFromHuggingFaceRepository } from "./downloadFileFromHuggingFaceRepository.ts";
const fileName = path.basename(import.meta.url);
const printMessage = debug(fileName);
printMessage.enabled = true;
const MODEL_HF_REPO =
"sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2";
/**
* The ONNX export. ~450 MB, multilingual (50+ languages), 384-dimensional
* embeddings. Fast enough for batched passage encoding: a batch of 64 passages
* takes ~30 ms on CPU, well within the 20 s client timeout even for six pages
* with hundreds of passages each.
*/
const MODEL_HF_FILE = "onnx/model.onnx";
const TOKENIZER_HF_FILE = "tokenizer.json";
const TOKENIZER_CONFIG_HF_FILE = "tokenizer_config.json";
/**
* Maximum tokens per encoding. The model was trained with a 256-token limit;
* passages longer than that are truncated from the end, which is where the
* passage content sits after the query prefix.
*/
const MAX_SEQUENCE_LENGTH = 256;
/** Batch size for passage encoding. Larger batches speed up encoding but use
* more memory; 64 is a safe default on CPU. */
const BATCH_SIZE = 64;
let isReady = false;
let session: InferenceSession | null = null;
let tokenizer: Tokenizer | null = null;
function resolveModelPath(hfRepoFile: string) {
return path.resolve(
path.dirname(fileURLToPath(import.meta.url)),
"models",
MODEL_HF_REPO,
hfRepoFile,
);
}
async function ensureFileExists(hfRepoFile: string) {
const localPath = resolveModelPath(hfRepoFile);
await downloadFileFromHuggingFaceRepository(
MODEL_HF_REPO,
hfRepoFile,
localPath,
);
return localPath;
}
function createSession(modelPath: string) {
printMessage(
`Loading bi-encoder on CPU (arch: ${process.arch}, platform: ${process.platform})...`,
);
return InferenceSession.create(modelPath, {
executionProviders: ["cpu"],
logSeverityLevel: 3,
});
}
/**
* Encodes a single text into a normalized embedding vector.
*/
async function encode(
activeSession: InferenceSession,
loadedTokenizer: Tokenizer,
text: string,
): Promise<Float32Array> {
const { ids, attention_mask } = loadedTokenizer.encode(text);
const truncatedIds = ids.slice(0, MAX_SEQUENCE_LENGTH);
const truncatedMask = attention_mask.slice(0, MAX_SEQUENCE_LENGTH);
const length = truncatedIds.length;
const dimensions = [1, length];
const { last_hidden_state } = await activeSession.run({
input_ids: new Tensor(
"int64",
BigInt64Array.from(truncatedIds, BigInt),
dimensions,
),
attention_mask: new Tensor(
"int64",
BigInt64Array.from(truncatedMask, BigInt),
dimensions,
),
// The export declares `token_type_ids` and ONNX Runtime refuses to run with
// a declared input missing. A single text is one segment, so it is zeros.
token_type_ids: new Tensor("int64", new BigInt64Array(length), dimensions),
});
// Mean pooling: average the hidden states across non-padded tokens.
const embedding = last_hidden_state.data as Float32Array;
const dim = last_hidden_state.dims[2];
const pooled = new Float32Array(dim);
let count = 0;
for (let t = 0; t < length; t++) {
if (truncatedMask[t] === 0) continue;
const offset = t * dim;
for (let d = 0; d < dim; d++) {
pooled[d] += embedding[offset + d];
}
count++;
}
if (count > 0) {
for (let d = 0; d < dim; d++) {
pooled[d] /= count;
}
}
// L2 normalize.
let norm = 0;
for (let d = 0; d < dim; d++) {
norm += pooled[d] * pooled[d];
}
norm = Math.sqrt(norm);
if (norm > 0) {
for (let d = 0; d < dim; d++) {
pooled[d] /= norm;
}
}
return pooled;
}
/**
* Encodes a batch of texts into normalized embedding vectors.
*/
async function encodeBatch(
activeSession: InferenceSession,
loadedTokenizer: Tokenizer,
texts: string[],
): Promise<Float32Array[]> {
const results: Float32Array[] = [];
for (let i = 0; i < texts.length; i += BATCH_SIZE) {
const batch = texts.slice(i, i + BATCH_SIZE);
const batchResults = await Promise.all(
batch.map((text) => encode(activeSession, loadedTokenizer, text)),
);
results.push(...batchResults);
}
return results;
}
/**
* Computes cosine similarity between a query embedding and passage embeddings.
* Both are assumed to be L2-normalized, so cosine similarity = dot product.
*/
function cosineSimilarities(
query: Float32Array,
passages: Float32Array[],
): number[] {
return passages.map((passage) => {
let sum = 0;
for (let d = 0; d < query.length; d++) {
sum += query[d] * passage[d];
}
return sum;
});
}
export async function startBiEncoderService() {
printMessage("Preparing bi-encoder model...");
const [modelPath, tokenizerPath, tokenizerConfigPath] = await Promise.all([
ensureFileExists(MODEL_HF_FILE),
ensureFileExists(TOKENIZER_HF_FILE),
ensureFileExists(TOKENIZER_CONFIG_HF_FILE),
]);
tokenizer = new Tokenizer(
JSON.parse(fs.readFileSync(tokenizerPath, "utf8")),
JSON.parse(fs.readFileSync(tokenizerConfigPath, "utf8")),
);
session = await createSession(modelPath);
// Warm up with a test encoding.
await encode(session, tokenizer, "test query");
isReady = true;
printMessage("Bi-encoder service ready!");
}
export async function stopBiEncoderService() {
isReady = false;
const currentSession = session;
session = null;
tokenizer = null;
await currentSession?.release();
}
export async function getBiEncoderStatus() {
return isReady;
}
/**
* Returns dense (semantic) scores for passages given a query.
* Falls back to empty array when the model is not loaded.
*/
export async function scorePassages(
query: string,
passages: string[],
): Promise<number[]> {
if (!session || !tokenizer || passages.length === 0) {
return [];
}
const activeSession = session;
const loadedTokenizer = tokenizer;
const queryEmbedding = await encode(activeSession, loadedTokenizer, query);
const passageEmbeddings = await encodeBatch(
activeSession,
loadedTokenizer,
passages,
);
return cosineSimilarities(queryEmbedding, passageEmbeddings);
}
|