|
--- |
|
title: README |
|
emoji: π |
|
colorFrom: blue |
|
colorTo: indigo |
|
sdk: static |
|
pinned: false |
|
thumbnail: >- |
|
https://cdn-uploads.huggingface.co/production/uploads/63bc254fb8c61b8aa496a39b/UtMrCZBi4n68fswikUtl6.png |
|
--- |
|
<script type="module"> |
|
import { pipeline } from 'https://cdn.jsdelivr.net/npm/@huggingface/[email protected]'; |
|
</script> |
|
<script> |
|
import { pipeline } from '@huggingface/transformers'; |
|
|
|
// Allocate a pipeline for sentiment-analysis |
|
let pipe = await pipeline('sentiment-analysis'); |
|
|
|
let out = await pipe('I love transformers!'); |
|
// [{'label': 'POSITIVE', 'score': 0.999817686}] |
|
</script> |