Spaces:
Runtime error
Runtime error
eaglelandsonce
commited on
Commit
•
a2cc35d
1
Parent(s):
0cd86bb
Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,8 @@ import streamlit as st
|
|
2 |
import json
|
3 |
import matplotlib.pyplot as plt
|
4 |
import time
|
|
|
|
|
5 |
|
6 |
st.set_page_config(layout="wide")
|
7 |
|
@@ -89,7 +91,7 @@ def draw_grid(data, highlight_coords=None):
|
|
89 |
#def main():
|
90 |
|
91 |
# Create the main app with three tabs
|
92 |
-
tab1, tab2 = st.tabs(["Interpretive Number","
|
93 |
|
94 |
|
95 |
with tab1:
|
@@ -112,9 +114,7 @@ with tab1:
|
|
112 |
|
113 |
with tab2:
|
114 |
|
115 |
-
st.header("
|
116 |
-
|
117 |
-
st.title('Green Smart Village Application')
|
118 |
|
119 |
# Divide the page into three columns
|
120 |
col1, col2, col3 = st.columns(3)
|
|
|
2 |
import json
|
3 |
import matplotlib.pyplot as plt
|
4 |
import time
|
5 |
+
from PIL import Image
|
6 |
+
from streamlit_image_comparison import image_comparison
|
7 |
|
8 |
st.set_page_config(layout="wide")
|
9 |
|
|
|
91 |
#def main():
|
92 |
|
93 |
# Create the main app with three tabs
|
94 |
+
tab1, tab2 = st.tabs(["Interpretive Number","Green Village"])
|
95 |
|
96 |
|
97 |
with tab1:
|
|
|
114 |
|
115 |
with tab2:
|
116 |
|
117 |
+
st.header("Green Smart Village Application")
|
|
|
|
|
118 |
|
119 |
# Divide the page into three columns
|
120 |
col1, col2, col3 = st.columns(3)
|