Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
pchopalli
/
pctest
like
0
Model card
Files
Files and versions
Community
bab68ac
pctest
/
test.py
pchopalli
Create test.py
96bfc89
12 months ago
raw
Copy download link
history
blame
220 Bytes
!pip install datasets evaluate transformers[sentencepiece]
from
transformers
import
pipeline
unmasker = pipeline(
"fill-mask"
, model=
"distilroberta-base"
)
unmasker(
"Unites States is the <mask>"
,top_k=
3
,
)