nakere424's picture
Update app.py
8486efa
raw
history blame
509 Bytes
from transformers import pipeline
import streamlit as st
unmasker = pipeline('fill-mask', model='distilbert-base-uncased')
def main():
st.title('EN sentence mask filling')
st.markdown('Mask a word with [MASK]. For example, **I [MASK] dog for a walk**')
masked = st.text_input('Masked sentence','Please insert a sentence')
if '[MASK]' is in masked.split(' '):
output = unmasker(masked)
else:
print('Sentence is not masked!!!')
if __name__ == "__main__":
main()