gmfraser commited on
Commit ·
b7ae974
1
Parent(s): 75a211d
remove debug statements
Browse files
app.py
CHANGED
|
@@ -358,10 +358,10 @@ if get_recommendations_button:
|
|
| 358 |
combined_ids.append(cid)
|
| 359 |
seen.add(cid)
|
| 360 |
|
| 361 |
-
st.write(f"Debug: After combining exact matches + similar items: {len(combined_ids)} items")
|
| 362 |
|
| 363 |
final_ids = combined_ids[:20]
|
| 364 |
-
st.write(f"Debug: Final count after [:20]: {len(final_ids)} items")
|
| 365 |
|
| 366 |
if final_ids:
|
| 367 |
metadata_df = safe_get_content_metadata(final_ids, brand)
|
|
|
|
| 358 |
combined_ids.append(cid)
|
| 359 |
seen.add(cid)
|
| 360 |
|
| 361 |
+
#st.write(f"Debug: After combining exact matches + similar items: {len(combined_ids)} items")
|
| 362 |
|
| 363 |
final_ids = combined_ids[:20]
|
| 364 |
+
#st.write(f"Debug: Final count after [:20]: {len(final_ids)} items")
|
| 365 |
|
| 366 |
if final_ids:
|
| 367 |
metadata_df = safe_get_content_metadata(final_ids, brand)
|