Update sentiment_analysis_using_transformers.py
Browse files
sentiment_analysis_using_transformers.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
import streamlit as st
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
st.title('Sentiment
|
5 |
-
st.write('This app uses the Hugging Face Transformers [sentiment
|
6 |
st.write(
|
7 |
'To find out how this app was developed, please check out my [Medium post](https://medium.com/@rtkilian/deploy-and-share-your-sentiment-analysis-app-using-streamlit-sharing-2ba3ca6a3ead). To see my source code, have a look at my [GitHub repo](https://github.com/rtkilian/streamlit-huggingface).')
|
8 |
|
|
|
1 |
import streamlit as st
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
st.title('Sentiment Analysis using Transformers pipeline function')
|
5 |
+
st.write('This app uses the Hugging Face Transformers [sentiment analyzer](https://huggingface.co/course/chapter1/3?fw=tf) library to classify the sentiment of your input as positive or negative. The web app is built using [Streamlit](https://docs.streamlit.io/en/stable/getting_started.html).')
|
6 |
st.write(
|
7 |
'To find out how this app was developed, please check out my [Medium post](https://medium.com/@rtkilian/deploy-and-share-your-sentiment-analysis-app-using-streamlit-sharing-2ba3ca6a3ead). To see my source code, have a look at my [GitHub repo](https://github.com/rtkilian/streamlit-huggingface).')
|
8 |
|