Vineedhar commited on
Commit
850932c
1 Parent(s): b9b5d54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -25,16 +25,19 @@ def analyze_sentiment(text):
25
  st.set_page_config(page_title="Sentiment Analysis", layout="wide")
26
  col1, col2 = st.columns([6, 1]) # Divide the screen into two columns
27
 
28
- # Text titles below the text box
29
- st.markdown("This sentiment analysis model serves as a testing prototype, specifically developed for LDS to assess the variability and precision of OrYx Models' sentiment analysis tool.")
30
- st.markdown(" ")
31
- st.markdown("All feedback gathered from LDS, including both structured and unstructured data, will be incorporated into the model to enhance its domain specificity and maximize accuracy.")
32
 
33
 
34
  with col2: # Right-aligned column for the logo
35
  st.image("https://huggingface.co/spaces/orYx-models/Leadership-sentiment-analyzer/resolve/main/oryx_logo%20(2).png", width=200, use_column_width=False) # Provide the path to your company logo
36
 
37
  with col1: # Main content area
 
 
 
 
 
 
 
38
  st.title("Sentiment Analysis Prototype Tool by orYx Models")
39
  user_input = st.text_area("Enter text to analyze:", height=200)
40
 
 
25
  st.set_page_config(page_title="Sentiment Analysis", layout="wide")
26
  col1, col2 = st.columns([6, 1]) # Divide the screen into two columns
27
 
 
 
 
 
28
 
29
 
30
  with col2: # Right-aligned column for the logo
31
  st.image("https://huggingface.co/spaces/orYx-models/Leadership-sentiment-analyzer/resolve/main/oryx_logo%20(2).png", width=200, use_column_width=False) # Provide the path to your company logo
32
 
33
  with col1: # Main content area
34
+
35
+ # Text titles below the text box
36
+ st.markdown("This sentiment analysis model serves as a testing prototype, specifically developed for LDS to assess the variability and precision of OrYx Models' sentiment analysis tool.")
37
+ st.markdown(" ")
38
+ st.markdown("All feedback gathered from LDS, including both structured and unstructured data, will be incorporated into the model to enhance its domain specificity and maximize accuracy.")
39
+
40
+
41
  st.title("Sentiment Analysis Prototype Tool by orYx Models")
42
  user_input = st.text_area("Enter text to analyze:", height=200)
43