Spaces:
Running
Running
File size: 525 Bytes
4189f9e 8993dbb 4189f9e 8993dbb 4189f9e 8993dbb 4189f9e 8993dbb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import { pipeline, env } from 'https://cdn.jsdelivr.net/npm/@xenova/[email protected]';
// skip local model check
env.allowLocalModels = false;
const unmasker = await pipeline('fill-mask', 'Xenova/bert-base-uncased');
var out = await unmasker("The woman has a job as a [MASK] and hates it.",
parameters: {
top_k: 7
})
var outputList = []
out.forEach(o => {
console.log(o)
outputList.push(o.sequence)
})
console.log(outputList) |