This repository contains a trained model that classifies images of houses into "good" and "bad" folders.
Before you begin, ensure you have the following installed:
- Python 3.x
- Required Python packages (see
requirements.txt)
-
Clone the repository:
git clone https://github.com/jsonn32/photo_filter.git cd photo_filter -
Create and activate a virtual environment (optional but recommended):
python3 -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the required packages:
pip install -r requirements.txt
-
Place your images in a folder called
Imagesat the root of the project. -
Run the classifier script:
python main.py
-
The script will process the images and place them into
good_imagesandbad_imagesfolders based on the classification.