Created
November 11, 2021 15:56
-
-
Save Abhayparashar31/3e543fa2661835297a113c59d6326bed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import streamlit as st | |
| st.write(''' # Hotel Review Sentiment Analysis ''') ## H1 Heading | |
| st.write("A Web app that detects whether an Review is Positive or Negative") ## subheading | |
| review = st.text_input("Enter Your Review...") ## Input Field | |
| Generate_pred = st.button("Predict Sentiment") ## Button |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment