ayethuzar commited on
Commit
ec21f3f
·
unverified ·
1 Parent(s): 3503540

Update app.py with references

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,9 +2,9 @@ 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('References: \n https://medium.com/@rtkilian/deploy-and-share-your-sentiment-analysis-app-using-streamlit-sharing-2ba3ca6a3ead')
7
- st.write(' \t\t\t https://huggingface.co/learn/nlp-course/chapter1/3?fw=pt')
8
 
9
  form = st.form(key='sentiment-form')
10
  user_input = form.text_area('Enter your text')
 
2
  from transformers import pipeline
3
 
4
  st.title('Sentiment Analysis using Transformers pipeline function')
5
+ st.write('References:')
6
+ st.write('1. https://medium.com/@rtkilian/deploy-and-share-your-sentiment-analysis-app-using-streamlit-sharing-2ba3ca6a3ead')
7
+ st.write('2. https://huggingface.co/learn/nlp-course/chapter1/3?fw=pt')
8
 
9
  form = st.form(key='sentiment-form')
10
  user_input = form.text_area('Enter your text')