Views
No views yet
1import { pipeline } from "@huggingface/transformers";
2
3const pipe = await pipeline(
4 "text-classification",
5 "sondalex/GovernanceBERT-governance",
6);
7
8const sentences = [
9 "The CEO has announced a major restructuring of the company's leadership team.",
10];
11
12const output = await pipe(sentences);
13
14console.log(output);