Spaces:
Runtime error
Runtime error
eaglelandsonce
commited on
Commit
•
92bdd1d
1
Parent(s):
f49c4dc
Update app.py
Browse files
app.py
CHANGED
@@ -95,19 +95,25 @@ tab1, tab2, tab3 = st.tabs(["Interpretive Number","Green Village", "Control Room
|
|
95 |
|
96 |
with tab1:
|
97 |
|
98 |
-
st.header("
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
st.write("")
|
103 |
-
|
104 |
-
image_comparison(
|
105 |
-
img1="./data/robot.jpg",
|
106 |
-
img2="./data/life.jpg",
|
107 |
-
label1="What the LMM Sees (Simulated Life)",
|
108 |
-
label2="What we See (Real Life)",
|
109 |
-
)
|
110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
|
112 |
|
113 |
with tab2:
|
|
|
95 |
|
96 |
with tab1:
|
97 |
|
98 |
+
st.header("Engineering Tools")
|
99 |
+
|
100 |
+
# Divide the page into three columns
|
101 |
+
col1, col2 = st.columns(2)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
|
103 |
+
with col1:
|
104 |
+
st.header("Human Interpretive Number (HIN)")
|
105 |
+
st.write("")
|
106 |
+
"How do LLMs interpret us and over “a period” of time what is the result of our interaction with them?"
|
107 |
+
st.write("")
|
108 |
+
|
109 |
+
image_comparison(
|
110 |
+
img1="./data/robot.jpg",
|
111 |
+
img2="./data/life.jpg",
|
112 |
+
label1="What the LMM Sees (Simulated Life)",
|
113 |
+
label2="What we See (Real Life)",
|
114 |
+
)
|
115 |
+
with col2:
|
116 |
+
st.header("Engineering Tools")
|
117 |
|
118 |
|
119 |
with tab2:
|