Yourgotoguy commited on
Commit
073a947
·
verified ·
1 Parent(s): e35098c

to change background image

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -14,7 +14,7 @@ import gdown # Keep if needed for other models
14
  from huggingface_hub import hf_hub_download # NEW IMPORT for Hugging Face
15
 
16
  # --- Define File Paths ---
17
- BACKGROUND_IMAGE_PATH = os.path.join(os.path.dirname(__file__), "..", "photo-1507525428034-b723cf961d3e.jpeg")
18
  GARBAGE_YOLO_MODEL_PATH = os.path.join(os.path.dirname(__file__), "..", "garbage_detection.pt")
19
  WATER_YOLO_MODEL_PATH = os.path.join(os.path.dirname(__file__), "..", "water_detection.pt")
20
 
 
14
  from huggingface_hub import hf_hub_download # NEW IMPORT for Hugging Face
15
 
16
  # --- Define File Paths ---
17
+ BACKGROUND_IMAGE_PATH = os.path.join(os.path.dirname(__file__), "..", "new_background.png")
18
  GARBAGE_YOLO_MODEL_PATH = os.path.join(os.path.dirname(__file__), "..", "garbage_detection.pt")
19
  WATER_YOLO_MODEL_PATH = os.path.join(os.path.dirname(__file__), "..", "water_detection.pt")
20