Spaces:
Sleeping
Sleeping
Update app/app.py
Browse files- 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">
|
| 141 |
|
| 142 |
col1, col2 = st.columns(2)
|
| 143 |
|
| 144 |
with col1:
|
| 145 |
-
st.markdown("**Reference
|
| 146 |
sample_ref = pd.DataFrame({
|
| 147 |
-
'tag': ['
|
| 148 |
-
'sentence': ['
|
| 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 |
|