Deep-Detect is a Python project with a Streamlit web interface for deep learning-based detection tasks.
-
Clone the repository
git clone https://github.com/vishnutej000/Deep-Detect.git cd Deep-Detect -
(Optional but recommended) Create a virtual environment
python -m venv venv # On Windows: venv\Scripts\activate # On macOS/Linux: source venv/bin/activate
-
Install dependencies
pip install -r requirements.txt
-
Run the Streamlit app
streamlit run app.py
(Replace
app.pywith your main Streamlit script if it has a different name.) -
Open your browser and go to:
http://localhost:8501
Deep-Detect/
βββ app.py # Streamlit app entry point
βββ requirements.txt # Python dependencies
βββ models/ # (optional) Model files
βββ utils.py # (optional) Helper functions
βββ README.md
- Python 3.8 or higher
- Streamlit
- (Other dependencies listed in
requirements.txt)
- Upload an image or data sample in the web UI.
- Run detection.
- View results and visualizations in your browser.
For questions or issues, please open a GitHub issue.