Sentiment_Analysis / deberta.js
Beeniebeen's picture
Create deberta.js
389e9c8 verified
raw history blame
No virus
548 Bytes
// To demonstrate use of Javascript promise in Transformers.js pipeline API
// Import the library
import { pipeline } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers@2.5.4';
// Make it available globally
window.pipeline = pipeline;
async function makepipe() {
return await pipeline('sentiment-analysis');
}
async function main() {
let pipe = await makepipe();
let out = await pipe('I love transformers!');
console.log(out);
}
main(); // cannot manually call main() from a browser console. main() not defined error.