MUmairAB commited on
Commit
2d6b756
1 Parent(s): 55d0f5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -41,4 +41,9 @@ def main():
41
  if "[MASK]" not in text:
42
  st.write("You did not enter \"[MASK]\" in the text. Please write your text again!")
43
  else:
44
- print_the_mask(text)
 
 
 
 
 
 
41
  if "[MASK]" not in text:
42
  st.write("You did not enter \"[MASK]\" in the text. Please write your text again!")
43
  else:
44
+ print_the_mask(text)
45
+
46
+ #Call the main function
47
+ if __name__ == "__main__":
48
+ #Launch the Gradio interface
49
+ main()