xformjs / deberta.js
boazchung's picture
Update deberta.js
9b62581 verified
raw
history blame
302 Bytes
window.pipeline = pipeline;
async function makepipe() {
return await pipeline('sentiment-analysis'); // ReferenceError here because pipeline is not defined
}
async function main() {
let pipe = await makepipe();
let out = await pipe('I love transformers!');
console.log(out);
}
main();