Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kushan98
/
comment_review
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
93bf8fb
comment_review
/
app.py
kushan98
Update app.py
93bf8fb
over 2 years ago
raw
Copy download link
history
blame
139 Bytes
from
transformers
import
pipeline
unmasker = pipeline(
'fill-mask'
, model=
'distilbert-base-uncased'
)
unmasker(
"Hello I'm a [MASK] model."
)