File size: 607 Bytes
58f2a4f
 
9bc72c0
58f2a4f
 
bf022fc
 
7337250
 
 
8486efa
9bc72c0
 
 
 
8486efa
 
 
f76cd25
7ee86f4
9bc72c0
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from transformers import pipeline
import streamlit as st
import re

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')
    
    mask_str = '[MASK]'
    mask_check = re.search(masked, mask_str)
    
    if mask_check:
        output = unmasker(masked)
    else:
        print('Sentence is not masked!!!')
  
if __name__ == "__main__":
    main()

x = re.search("^The.*Spain$", txt)