Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
boazchung/xformjs
oceankim
/
xformjs
like
0
Running
App
Files
Files
Community
37a0e99
xformjs
/
deberta.js
boazchung
Update deberta.js
37a0e99
verified
8 months ago
raw
Copy download link
history
blame
220 Bytes
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
();