Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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()
|