inie2003 commited on
Commit
fa2fb9a
·
verified ·
1 Parent(s): 800c748

New approach for warning to load dataset

Browse files
Files changed (1) hide show
  1. app.py +66 -63
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
- # Load dataset with limit only if not already loaded
89
- if st.button("Load Dataset", key="load_dataset"):
90
- try:
91
- loading_dataset_text = st.empty()
92
- loading_dataset_text.text("Loading Dataset...")
93
- loading_dataset_bar = st.progress(0)
94
-
95
- # Simulate dataset loading progress
96
- for i in range(0, 100, 25):
97
- time.sleep(0.2) # Simulate work being done
98
- loading_dataset_bar.progress(i + 25)
99
 
100
- # Load dataset
101
- df, total_rows = load_dataset_with_limit(dataset_name, st.session_state.dataset_number, st.session_state.search_in_small_objects, limit=dataset_limit)
102
-
103
- # Store loaded dataset in session state
104
- st.session_state.df = df
105
- loading_dataset_bar.progress(100)
106
- loading_dataset_text.text("Dataset loaded successfully!")
107
- st.success(f"Dataset loaded successfully with {len(df)} rows.")
108
 
109
- # After dataset is loaded, show search options
110
- query = st.text_input("Enter your search query", key="search_query")
111
- st.text(f"Example Queries for your Dataset: {example_queries[dataset_name]}")
112
- # Number of results to display
113
- limit = st.number_input("Number of results to display", min_value=1, max_value=10, value=10, key="result_limit")
114
 
115
- # Search button
116
- if st.button("Search", key="search_button"):
117
- # Validate input
118
- if not query:
119
- st.warning("Please enter a search query.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  else:
121
- try:
122
- # Progress bar for search
123
- search_loading_text = st.empty()
124
- search_loading_text.text("Searching...")
125
- search_progress_bar = st.progress(0)
126
-
127
- # Perform search on the loaded dataset from session state
128
- df = st.session_state.df
129
- if st.session_state.search_in_small_objects:
130
- results = search(query, df, limit)
131
- top_k_paths = get_file_paths(df, results)
132
- top_k_cordinates = get_cordinates(df, results)
133
- search_type = 'Splits'
134
- else:
135
- # Normal Search
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
- else:
152
- st.write("No results found.")
153
 
154
- except Exception as e:
155
- st.error(f"Search failed: {e}")
156
 
157
  except Exception as e:
158
- st.error(f"Failed to load dataset: {e}")
 
 
 
 
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()