Spaces:
Running
Running
Yao-Ting Yao
commited on
Commit
Β·
84611fa
1
Parent(s):
d5f12d8
Update streamlit_app.py
Browse filesUpdate title and markdown color to white
- src/streamlit_app.py +7 -5
src/streamlit_app.py
CHANGED
@@ -44,12 +44,14 @@ st.markdown(
|
|
44 |
|
45 |
col1, col2, col3 = st.columns([1, 5, 1])
|
46 |
with col2:
|
47 |
-
st.title("GFM Explainability Demo π")
|
48 |
st.markdown(
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
|
|
|
|
|
|
53 |
|
54 |
# read csv
|
55 |
chips_df = pd.read_csv("data/embeddings_df_v0.11_test.csv")
|
|
|
44 |
|
45 |
col1, col2, col3 = st.columns([1, 5, 1])
|
46 |
with col2:
|
|
|
47 |
st.markdown(
|
48 |
+
"<h1 style='color:white;'>GFM Explainability Demo π</h1>",
|
49 |
+
unsafe_allow_html=True
|
50 |
+
)
|
51 |
+
st.markdown(
|
52 |
+
"<p style='color:white;'>This app extracts t-SNE of Embeddings from image chips using :rainbow[Prithvi-EO-2.0 model]!</p>",
|
53 |
+
unsafe_allow_html=True
|
54 |
+
)
|
55 |
|
56 |
# read csv
|
57 |
chips_df = pd.read_csv("data/embeddings_df_v0.11_test.csv")
|