Updated text_input to text_area for more text
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ st.title("🌪️ Disaster Tweet Classifier")
|
|
| 14 |
st.write("Enter a tweet below to check if it's related to a disaster.")
|
| 15 |
|
| 16 |
# Input
|
| 17 |
-
tweet = st.
|
| 18 |
|
| 19 |
# Predict
|
| 20 |
if tweet:
|
|
|
|
| 14 |
st.write("Enter a tweet below to check if it's related to a disaster.")
|
| 15 |
|
| 16 |
# Input
|
| 17 |
+
tweet = st.text_area("Tweet:")
|
| 18 |
|
| 19 |
# Predict
|
| 20 |
if tweet:
|