Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -7,7 +7,7 @@ MODEL_NAME = "imrgurmeet/fine-tuned-sentiment-model"
|
|
| 7 |
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
|
| 8 |
model = AutoModelForSequenceClassification.from_pretrained(MODEL_NAME)
|
| 9 |
|
| 10 |
-
st.title("
|
| 11 |
|
| 12 |
user_input = st.text_area("Enter text for sentiment analysis:")
|
| 13 |
|
|
|
|
| 7 |
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
|
| 8 |
model = AutoModelForSequenceClassification.from_pretrained(MODEL_NAME)
|
| 9 |
|
| 10 |
+
st.title("Sentiment Analyzer(Encoder-Only)")
|
| 11 |
|
| 12 |
user_input = st.text_area("Enter text for sentiment analysis:")
|
| 13 |
|