error 3437340512
#1
by
TryTrT
- opened
When loading the model using SvelteKit:
onMount(async () => {
try {
generator = await pipeline(
"text-generation",
"onnx-community/gemma-3-1b-it-ONNX-GQA",
{
dtype: "q4",
progress_callback: updateFileStatuses
}
);
console.log("Model loaded");
modelLoaded.set(true);
} catch (error) {
console.error("Model loading error:", error);
}
});
An error appears in the console with the message 3437340512.
How can I fix this?