5 lines
146 B
Python
5 lines
146 B
Python
|
from transformers import pipeline
|
||
|
|
||
|
|
||
|
unmasker = pipeline('fill-mask', model='fabelous-albert-uncased')
|
||
|
print(unmasker("Hello I'm a [MASK] model."))
|