|
1 | | -# 🧠 AI Smart Duplicate Finder |
2 | | - |
3 | | -[](https://python.org) |
4 | | -[](https://flask.palletsprojects.com) |
5 | | -[](https://pytorch.org) |
6 | | -[](LICENSE) |
7 | | - |
8 | | -An intelligent duplicate file detection system powered by Deep Learning that finds both exact copies and visually similar images using vector embeddings. |
9 | | - |
10 | | -## ✨ Features |
11 | | - |
12 | | -- 🧠 **AI-Powered Detection**: Uses MobileNet for images & TF-IDF for text |
13 | | -- 🔍 **Smart Thresholds**: |
14 | | - - ≥95% similarity = Exact Duplicate |
15 | | - - 80-95% similarity = Near Duplicate |
16 | | -- 🗑️ **Safe Deletion**: Files go to Recycle Bin (not permanently deleted) |
17 | | -- 📊 **Beautiful Dashboard**: Real-time stats and visual clustering |
18 | | -- 📁 **Multi-format Support**: Images (JPG, PNG, GIF) & Documents (TXT, PDF, DOC) |
19 | | - |
20 | | -## 🚀 Quick Start |
21 | | - |
22 | | -```bash |
23 | | -# Clone repository |
24 | | -git clone https://github.com/YOUR_USERNAME/AI-Smart-Duplicate-Finder.git |
25 | | -cd AI-Smart-Duplicate-Finder |
26 | | - |
27 | | -# Create virtual environment |
28 | | -python -m venv venv |
29 | | - |
30 | | -# Activate it |
31 | | -# Windows: |
32 | | -venv\Scripts\activate |
33 | | -# Mac/Linux: |
34 | | -source venv/bin/activate |
35 | | - |
36 | | -# Install dependencies |
37 | | -pip install -r requirements.txt |
38 | | - |
39 | | -# Run the app |
40 | | -python run.py |
41 | | - |
42 | | -# Open browser |
| 1 | +# 🧠 AI Smart Duplicate Finder |
| 2 | + |
| 3 | +[](https://python.org) |
| 4 | +[](https://flask.palletsprojects.com) |
| 5 | +[](https://pytorch.org) |
| 6 | +[](LICENSE) |
| 7 | + |
| 8 | +An intelligent duplicate file detection system powered by Deep Learning that finds both exact copies and visually similar images using vector embeddings. |
| 9 | + |
| 10 | +## ✨ Features |
| 11 | + |
| 12 | +- 🧠 **AI-Powered Detection**: Uses MobileNet for images & TF-IDF for text |
| 13 | +- 🔍 **Smart Thresholds**: |
| 14 | + - ≥95% similarity = Exact Duplicate |
| 15 | + - 80-95% similarity = Near Duplicate |
| 16 | +- 🗑️ **Safe Deletion**: Files go to Recycle Bin (not permanently deleted) |
| 17 | +- 📊 **Beautiful Dashboard**: Real-time stats and visual clustering |
| 18 | +- 📁 **Multi-format Support**: Images (JPG, PNG, GIF) & Documents (TXT, PDF, DOC) |
| 19 | + |
| 20 | +## 🚀 Quick Start |
| 21 | + |
| 22 | +```bash |
| 23 | +# Clone repository |
| 24 | +git clone https://github.com/YOUR_USERNAME/AI-Smart-Duplicate-Finder.git |
| 25 | +cd AI-Smart-Duplicate-Finder |
| 26 | + |
| 27 | +# Create virtual environment |
| 28 | +python -m venv venv |
| 29 | + |
| 30 | +# Activate it |
| 31 | +# Windows: |
| 32 | +venv\Scripts\activate |
| 33 | +# Mac/Linux: |
| 34 | +source venv/bin/activate |
| 35 | + |
| 36 | +# Install dependencies |
| 37 | +pip install -r requirements.txt |
| 38 | + |
| 39 | +# Run the app |
| 40 | +python run.py |
| 41 | + |
| 42 | +# Open browser |
43 | 43 | http://localhost:5000 |
0 commit comments