An intelligent duplicate file detection system powered by Deep Learning that finds both exact copies and visually similar images using vector embeddings.
- π§ AI-Powered Detection: Uses MobileNet for images & TF-IDF for text
- π Smart Thresholds:
- β₯95% similarity = Exact Duplicate
- 80-95% similarity = Near Duplicate
- ποΈ Safe Deletion: Files go to Recycle Bin (not permanently deleted)
- π Beautiful Dashboard: Real-time stats and visual clustering
- π Multi-format Support: Images (JPG, PNG, GIF) & Documents (TXT, PDF, DOC)
# Clone repository
git clone https://github.com/YOUR_USERNAME/AI-Smart-Duplicate-Finder.git
cd AI-Smart-Duplicate-Finder
# Create virtual environment
python -m venv venv
# Activate it
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Run the app
python run.py
# Open browser
http://localhost:5000