New approach for warning to load dataset
Browse files
app.py
CHANGED
@@ -85,77 +85,80 @@ def main():
|
|
85 |
st.text(f'The smaller the dataset the faster the search will work.')
|
86 |
st.text('Please click Load Dataset to finalize selection for search')
|
87 |
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
loading_dataset_bar.progress(i + 25)
|
99 |
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
else:
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
results = search(query, df, limit)
|
137 |
-
top_k_paths = get_file_paths(df, results)
|
138 |
-
search_type = 'Main'
|
139 |
-
|
140 |
-
# Complete the search progress
|
141 |
-
search_progress_bar.progress(100)
|
142 |
-
search_loading_text.text(f"Search completed among {dataset_limit} rows for {dataset_name} in {search_type} {st.session_state.dataset_number}")
|
143 |
-
|
144 |
-
# Load Images with Bounding Boxes if applicable
|
145 |
-
if st.session_state.search_in_small_objects and top_k_paths and top_k_cordinates:
|
146 |
-
get_images_with_bounding_boxes_from_s3(bucket_name, top_k_paths, top_k_cordinates, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, folder_path)
|
147 |
-
elif not st.session_state.search_in_small_objects and top_k_paths:
|
148 |
-
st.write(f"Displaying top {len(top_k_paths)} results for query '{query}':")
|
149 |
-
get_images_from_s3_to_display(bucket_name, top_k_paths, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, folder_path)
|
150 |
|
151 |
-
|
152 |
-
|
153 |
|
154 |
-
|
155 |
-
|
156 |
|
157 |
except Exception as e:
|
158 |
-
|
|
|
|
|
|
|
|
|
159 |
|
160 |
if __name__ == "__main__":
|
161 |
main()
|
|
|
85 |
st.text(f'The smaller the dataset the faster the search will work.')
|
86 |
st.text('Please click Load Dataset to finalize selection for search')
|
87 |
|
88 |
+
|
89 |
+
#Loading Dataset
|
90 |
+
loading_dataset_text = st.empty()
|
91 |
+
loading_dataset_text.text("Loading Dataset...")
|
92 |
+
loading_dataset_bar = st.progress(0)
|
93 |
+
|
94 |
+
# Simulate dataset loading progress
|
95 |
+
for i in range(0, 100, 25):
|
96 |
+
time.sleep(0.2) # Simulate work being done
|
97 |
+
loading_dataset_bar.progress(i + 25)
|
|
|
98 |
|
99 |
+
# Load dataset
|
100 |
+
df, total_rows = load_dataset_with_limit(dataset_name, st.session_state.dataset_number, st.session_state.search_in_small_objects, limit=dataset_limit)
|
101 |
+
|
102 |
+
# Store loaded dataset in session state
|
103 |
+
st.session_state.df = df
|
104 |
+
loading_dataset_bar.progress(100)
|
105 |
+
loading_dataset_text.text("Dataset loaded successfully!")
|
106 |
+
st.success(f"Dataset loaded successfully with {len(df)} rows.")
|
107 |
|
108 |
+
# After dataset is loaded, show search options
|
109 |
+
query = st.text_input("Enter your search query")
|
110 |
+
st.text(f"Example Queries for your Dataset: {example_queries[dataset_name]}")
|
111 |
+
# Number of results to display
|
112 |
+
limit = st.number_input("Number of results to display", min_value=1, max_value=100, value=10)
|
113 |
|
114 |
+
# Search button
|
115 |
+
if st.button("Search"):
|
116 |
+
# Validate input
|
117 |
+
if not query:
|
118 |
+
st.warning("Please enter a search query.")
|
119 |
+
else:
|
120 |
+
try:
|
121 |
+
# Progress bar for search
|
122 |
+
search_loading_text = st.empty()
|
123 |
+
search_loading_text.text("Searching...")
|
124 |
+
search_progress_bar = st.progress(0)
|
125 |
+
|
126 |
+
# Perform search on the loaded dataset from session state
|
127 |
+
df = st.session_state.df
|
128 |
+
if st.session_state.search_in_small_objects:
|
129 |
+
results = search(query, df, limit)
|
130 |
+
top_k_paths = get_file_paths(df, results)
|
131 |
+
top_k_cordinates = get_cordinates(df, results)
|
132 |
+
search_type = 'Splits'
|
133 |
else:
|
134 |
+
# Normal Search
|
135 |
+
results = search(query, df, limit)
|
136 |
+
top_k_paths = get_file_paths(df, results)
|
137 |
+
search_type = 'Main'
|
138 |
+
|
139 |
+
# Complete the search progress
|
140 |
+
search_progress_bar.progress(100)
|
141 |
+
search_loading_text.text(f"Search completed among {dataset_limit} rows for {dataset_name} in {search_type} {st.session_state.dataset_number}")
|
142 |
+
|
143 |
+
# Load Images with Bounding Boxes if applicable
|
144 |
+
if st.session_state.search_in_small_objects and top_k_paths and top_k_cordinates:
|
145 |
+
get_images_with_bounding_boxes_from_s3(bucket_name, top_k_paths, top_k_cordinates, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, folder_path)
|
146 |
+
elif not st.session_state.search_in_small_objects and top_k_paths:
|
147 |
+
st.write(f"Displaying top {len(top_k_paths)} results for query '{query}':")
|
148 |
+
get_images_from_s3_to_display(bucket_name, top_k_paths, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, folder_path)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
|
150 |
+
else:
|
151 |
+
st.write("No results found.")
|
152 |
|
153 |
+
except Exception as e:
|
154 |
+
st.error(f"Search failed: {e}")
|
155 |
|
156 |
except Exception as e:
|
157 |
+
if 'None' in e:
|
158 |
+
st.warning("Please Click Load Dataset")
|
159 |
+
else:
|
160 |
+
st.error(f"Failed to load dataset: {e}")
|
161 |
+
|
162 |
|
163 |
if __name__ == "__main__":
|
164 |
main()
|