Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
pchopalli
/
pctest
like
0
Model card
Files
Files and versions
xet
Community
main
pctest
/
test.py
pchopalli
Create test.py
96bfc89
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
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
,
)