akhil-vaidya commited on
Commit
6c5426b
·
verified ·
1 Parent(s): 3fcab6a

Update app/app.py

Browse files
Files changed (1) hide show
  1. app/app.py +4 -4
app/app.py CHANGED
@@ -137,15 +137,15 @@ def show_home_page():
137
  """)
138
 
139
  # Add sample data info
140
- st.markdown('<div class="section-header">Sample Data Format</div>', unsafe_allow_html=True)
141
 
142
  col1, col2 = st.columns(2)
143
 
144
  with col1:
145
- st.markdown("**Reference Data Format:**")
146
  sample_ref = pd.DataFrame({
147
- 'tag': ['Positive', 'Negative', 'Neutral'],
148
- 'sentence': ['This is great!', 'This is terrible', 'This is okay']
149
  })
150
  st.dataframe(sample_ref, use_container_width=True)
151
 
 
137
  """)
138
 
139
  # Add sample data info
140
+ st.markdown('<div class="section-header">Exemplar Templates</div>', unsafe_allow_html=True)
141
 
142
  col1, col2 = st.columns(2)
143
 
144
  with col1:
145
+ st.markdown("**Reference Vector:**")
146
  sample_ref = pd.DataFrame({
147
+ 'tag': ['CSR1', 'CSR2', 'CSR3'],
148
+ 'sentence': ['CSR reporting guidelines', 'Water conservation initiatives', 'Developing energy-efficient technologies']
149
  })
150
  st.dataframe(sample_ref, use_container_width=True)
151