Spaces:
Sleeping
Sleeping
Upload 7 files
Browse files- Dockerfile +19 -0
- README.md +354 -10
- app.py +171 -0
- gitattributes +35 -0
- gitignore +53 -0
- index.html +514 -0
- requirements.txt +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.10-slim
|
| 2 |
+
|
| 3 |
+
WORKDIR /app
|
| 4 |
+
|
| 5 |
+
# Install dependencies
|
| 6 |
+
COPY requirements.txt .
|
| 7 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 8 |
+
|
| 9 |
+
# Copy application files
|
| 10 |
+
COPY . .
|
| 11 |
+
|
| 12 |
+
# Expose port
|
| 13 |
+
EXPOSE 7860
|
| 14 |
+
|
| 15 |
+
# Set environment variables
|
| 16 |
+
ENV PYTHONUNBUFFERED=1
|
| 17 |
+
|
| 18 |
+
# Run the application
|
| 19 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
README.md
CHANGED
|
@@ -1,14 +1,358 @@
|
|
|
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
-
sdk:
|
| 7 |
-
sdk_version: 6.2.0
|
| 8 |
-
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
-
license: mit
|
| 11 |
-
short_description: A very interactive UI for DarkNueonAI's SpamDex Model.
|
| 12 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
-
|
|
|
|
| 1 |
+
|
| 2 |
---
|
| 3 |
+
title: SpamDex AI
|
| 4 |
+
emoji: π¨
|
| 5 |
+
colorFrom: green
|
| 6 |
+
colorTo: blue
|
| 7 |
+
sdk: docker
|
|
|
|
|
|
|
| 8 |
pinned: false
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
+
# π§ SpamDex Web - AI-Powered Spam Detection
|
| 11 |
+
|
| 12 |
+

|
| 13 |
+
|
| 14 |
+
A beautiful, fully-functional web application for spam detection powered by **Naive Bayes + TF-IDF** machine learning model from Hugging Face.
|
| 15 |
+
|
| 16 |
+
## π Features
|
| 17 |
+
|
| 18 |
+
- β¨ **Beautiful UI** - Glassmorphism design with dark/light mode
|
| 19 |
+
- π **Real-time Analysis** - Instant spam detection
|
| 20 |
+
- π¨ **Responsive Design** - Works on all devices (mobile, tablet, desktop)
|
| 21 |
+
- π₯ **Smooth Animations** - Enhanced user experience
|
| 22 |
+
- π€ **AI-Powered** - Using state-of-the-art ML model
|
| 23 |
+
- π **REST API** - Easy integration with other apps
|
| 24 |
+
- β‘ **Fast & Lightweight** - Optimized performance
|
| 25 |
+
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
## π Quick Start (Local Development)
|
| 29 |
+
|
| 30 |
+
### Prerequisites
|
| 31 |
+
- Python 3.8+
|
| 32 |
+
- pip
|
| 33 |
+
|
| 34 |
+
### Installation
|
| 35 |
+
|
| 36 |
+
1. **Clone the repository**
|
| 37 |
+
```bash
|
| 38 |
+
git clone <your-repo-url>
|
| 39 |
+
cd spamdex-web
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
2. **Install dependencies**
|
| 43 |
+
```bash
|
| 44 |
+
pip install -r requirements.txt
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
3. **Run the application**
|
| 48 |
+
```bash
|
| 49 |
+
uvicorn app:app --host 0.0.0.0 --port 7860 --reload
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
4. **Open in browser**
|
| 53 |
+
```
|
| 54 |
+
http://localhost:7860
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
---
|
| 58 |
+
|
| 59 |
+
## π Deploy to Hugging Face Spaces
|
| 60 |
+
|
| 61 |
+
### Step 1: Create a Space
|
| 62 |
+
|
| 63 |
+
1. Go to [Hugging Face](https://huggingface.co/)
|
| 64 |
+
2. Click on your profile β **New Space**
|
| 65 |
+
3. Fill in the details:
|
| 66 |
+
- **Name**: `spamdex-web` (or your choice)
|
| 67 |
+
- **License**: MIT
|
| 68 |
+
- **SDK**: Gradio (will change to custom)
|
| 69 |
+
- **Hardware**: Free CPU (sufficient for this model)
|
| 70 |
+
|
| 71 |
+
### Step 2: Prepare Files
|
| 72 |
+
|
| 73 |
+
Create these files in your Space:
|
| 74 |
+
|
| 75 |
+
```
|
| 76 |
+
your-space/
|
| 77 |
+
βββ app.py # Backend server
|
| 78 |
+
βββ requirements.txt # Python dependencies
|
| 79 |
+
βββ index.html # Frontend UI
|
| 80 |
+
βββ README.md # Documentation
|
| 81 |
+
βββ .gitignore # Git ignore file
|
| 82 |
+
```
|
| 83 |
+
|
| 84 |
+
### Step 3: Upload Files
|
| 85 |
+
|
| 86 |
+
**Option A: Via Web Interface**
|
| 87 |
+
1. Click "Files and versions" in your Space
|
| 88 |
+
2. Click "Add file" β "Upload files"
|
| 89 |
+
3. Upload all files listed above
|
| 90 |
+
|
| 91 |
+
**Option B: Via Git**
|
| 92 |
+
```bash
|
| 93 |
+
git clone https://huggingface.co/spaces/YOUR-USERNAME/spamdex-web
|
| 94 |
+
cd spamdex-web
|
| 95 |
+
|
| 96 |
+
# Add all files
|
| 97 |
+
git add .
|
| 98 |
+
git commit -m "Initial commit"
|
| 99 |
+
git push
|
| 100 |
+
```
|
| 101 |
+
|
| 102 |
+
### Step 4: Configure Space Settings
|
| 103 |
+
|
| 104 |
+
1. Go to **Settings** in your Space
|
| 105 |
+
2. Under **Space SDK**, select: **Docker**
|
| 106 |
+
3. Create a `Dockerfile` (optional, or use default)
|
| 107 |
+
|
| 108 |
+
### Step 5: Wait for Build
|
| 109 |
+
|
| 110 |
+
- Hugging Face will automatically build and deploy your Space
|
| 111 |
+
- Check the logs for any errors
|
| 112 |
+
- Once built, your Space will be live!
|
| 113 |
+
|
| 114 |
+
---
|
| 115 |
+
|
| 116 |
+
## π File Structure
|
| 117 |
+
|
| 118 |
+
```
|
| 119 |
+
spamdex-web/
|
| 120 |
+
β
|
| 121 |
+
βββ app.py # FastAPI backend with ML model
|
| 122 |
+
β βββ /api/predict # POST endpoint for predictions
|
| 123 |
+
β βββ /api/info # GET endpoint for model info
|
| 124 |
+
β βββ /health # Health check endpoint
|
| 125 |
+
β
|
| 126 |
+
βββ index.html # Complete React frontend
|
| 127 |
+
β βββ React components
|
| 128 |
+
β βββ Tailwind CSS
|
| 129 |
+
β βββ API integration
|
| 130 |
+
β
|
| 131 |
+
βββ requirements.txt # Python dependencies
|
| 132 |
+
β βββ fastapi
|
| 133 |
+
β βββ uvicorn
|
| 134 |
+
β βββ huggingface-hub
|
| 135 |
+
β βββ scikit-learn
|
| 136 |
+
β βββ joblib
|
| 137 |
+
β
|
| 138 |
+
βββ README.md # This file
|
| 139 |
+
```
|
| 140 |
+
|
| 141 |
+
---
|
| 142 |
+
|
| 143 |
+
## π API Documentation
|
| 144 |
+
|
| 145 |
+
### Endpoint: `/api/predict`
|
| 146 |
+
|
| 147 |
+
**Method:** POST
|
| 148 |
+
|
| 149 |
+
**Request Body:**
|
| 150 |
+
```json
|
| 151 |
+
{
|
| 152 |
+
"text": "Congratulations! You won $1000!"
|
| 153 |
+
}
|
| 154 |
+
```
|
| 155 |
+
|
| 156 |
+
**Response:**
|
| 157 |
+
```json
|
| 158 |
+
{
|
| 159 |
+
"prediction": "spam",
|
| 160 |
+
"label": 1,
|
| 161 |
+
"confidence": 95.67,
|
| 162 |
+
"cleaned_text": "congratulations you won"
|
| 163 |
+
}
|
| 164 |
+
```
|
| 165 |
+
|
| 166 |
+
**Status Codes:**
|
| 167 |
+
- `200` - Success
|
| 168 |
+
- `400` - Bad request (empty text)
|
| 169 |
+
- `500` - Server error
|
| 170 |
+
- `503` - Model not loaded
|
| 171 |
+
|
| 172 |
+
### Endpoint: `/api/info`
|
| 173 |
+
|
| 174 |
+
**Method:** GET
|
| 175 |
+
|
| 176 |
+
**Response:**
|
| 177 |
+
```json
|
| 178 |
+
{
|
| 179 |
+
"model_name": "SpamDex v1.0",
|
| 180 |
+
"algorithm": "Naive Bayes (MultinomialNB)",
|
| 181 |
+
"vectorization": "TF-IDF",
|
| 182 |
+
"developer": "DarkNeuronAI",
|
| 183 |
+
"huggingface_repo": "DarkNeuron-AI/darkneuron-spamdex-v1",
|
| 184 |
+
"labels": {
|
| 185 |
+
"0": "Ham (Not Spam)",
|
| 186 |
+
"1": "Spam"
|
| 187 |
+
}
|
| 188 |
+
}
|
| 189 |
+
```
|
| 190 |
+
|
| 191 |
+
### Example Usage (Python)
|
| 192 |
+
|
| 193 |
+
```python
|
| 194 |
+
import requests
|
| 195 |
+
|
| 196 |
+
# API endpoint
|
| 197 |
+
url = "http://localhost:7860/api/predict"
|
| 198 |
+
|
| 199 |
+
# Text to analyze
|
| 200 |
+
data = {
|
| 201 |
+
"text": "FREE iPhone! Click here to claim your prize!!!"
|
| 202 |
+
}
|
| 203 |
+
|
| 204 |
+
# Make request
|
| 205 |
+
response = requests.post(url, json=data)
|
| 206 |
+
result = response.json()
|
| 207 |
+
|
| 208 |
+
print(f"Prediction: {result['prediction']}")
|
| 209 |
+
print(f"Confidence: {result['confidence']}%")
|
| 210 |
+
```
|
| 211 |
+
|
| 212 |
+
### Example Usage (JavaScript)
|
| 213 |
+
|
| 214 |
+
```javascript
|
| 215 |
+
const analyzeText = async (text) => {
|
| 216 |
+
const response = await fetch('/api/predict', {
|
| 217 |
+
method: 'POST',
|
| 218 |
+
headers: {
|
| 219 |
+
'Content-Type': 'application/json',
|
| 220 |
+
},
|
| 221 |
+
body: JSON.stringify({ text })
|
| 222 |
+
});
|
| 223 |
+
|
| 224 |
+
const result = await response.json();
|
| 225 |
+
console.log('Prediction:', result.prediction);
|
| 226 |
+
console.log('Confidence:', result.confidence);
|
| 227 |
+
};
|
| 228 |
+
|
| 229 |
+
analyzeText("Win $1000 now!");
|
| 230 |
+
```
|
| 231 |
+
|
| 232 |
+
---
|
| 233 |
+
|
| 234 |
+
## π¨ UI Features
|
| 235 |
+
|
| 236 |
+
### Dark/Light Mode Toggle
|
| 237 |
+
- Smooth transition animations
|
| 238 |
+
- Persistent across sessions
|
| 239 |
+
- Automatic theme detection
|
| 240 |
+
|
| 241 |
+
### Responsive Design
|
| 242 |
+
- Mobile-first approach
|
| 243 |
+
- Breakpoints: `sm`, `md`, `lg`, `xl`
|
| 244 |
+
- Flexible grid layouts
|
| 245 |
+
|
| 246 |
+
### Interactive Elements
|
| 247 |
+
- Hover effects on all cards
|
| 248 |
+
- Smooth scaling animations
|
| 249 |
+
- Glassmorphism design
|
| 250 |
+
- Floating background particles
|
| 251 |
+
|
| 252 |
+
---
|
| 253 |
+
|
| 254 |
+
## π§ͺ Model Information
|
| 255 |
+
|
| 256 |
+
- **Model**: Naive Bayes (MultinomialNB)
|
| 257 |
+
- **Vectorization**: TF-IDF
|
| 258 |
+
- **Training Data**: Real-world email dataset
|
| 259 |
+
- **Accuracy**: ~95%+
|
| 260 |
+
- **Repository**: [DarkNeuron-AI/darkneuron-spamdex-v1](https://huggingface.co/DarkNeuron-AI/darkneuron-spamdex-v1)
|
| 261 |
+
|
| 262 |
+
### Prediction Labels
|
| 263 |
+
- **0**: Ham (Not Spam)
|
| 264 |
+
- **1**: Spam
|
| 265 |
+
|
| 266 |
+
---
|
| 267 |
+
|
| 268 |
+
## π οΈ Troubleshooting
|
| 269 |
+
|
| 270 |
+
### Issue: Model not loading
|
| 271 |
+
|
| 272 |
+
**Solution:**
|
| 273 |
+
```python
|
| 274 |
+
# Check if files are downloaded
|
| 275 |
+
from huggingface_hub import hf_hub_download
|
| 276 |
+
vectorizer_path = hf_hub_download(
|
| 277 |
+
"DarkNeuron-AI/darkneuron-spamdex-v1",
|
| 278 |
+
"spam_detection_vectorizer.pkl"
|
| 279 |
+
)
|
| 280 |
+
print(f"Vectorizer loaded from: {vectorizer_path}")
|
| 281 |
+
```
|
| 282 |
+
|
| 283 |
+
### Issue: CORS errors
|
| 284 |
+
|
| 285 |
+
**Solution:**
|
| 286 |
+
- Check if CORS middleware is enabled in `app.py`
|
| 287 |
+
- Ensure `allow_origins=["*"]` is set
|
| 288 |
+
|
| 289 |
+
### Issue: Port already in use
|
| 290 |
+
|
| 291 |
+
**Solution:**
|
| 292 |
+
```bash
|
| 293 |
+
# Use a different port
|
| 294 |
+
uvicorn app:app --host 0.0.0.0 --port 8000
|
| 295 |
+
```
|
| 296 |
+
|
| 297 |
+
---
|
| 298 |
+
|
| 299 |
+
## π Performance
|
| 300 |
+
|
| 301 |
+
- **Average Response Time**: < 200ms
|
| 302 |
+
- **Model Size**: ~2MB
|
| 303 |
+
- **Memory Usage**: ~50MB
|
| 304 |
+
- **Concurrent Requests**: 100+
|
| 305 |
+
|
| 306 |
+
---
|
| 307 |
+
|
| 308 |
+
## π€ Contributing
|
| 309 |
+
|
| 310 |
+
Contributions are welcome! Please follow these steps:
|
| 311 |
+
|
| 312 |
+
1. Fork the repository
|
| 313 |
+
2. Create a feature branch (`git checkout -b feature/AmazingFeature`)
|
| 314 |
+
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
|
| 315 |
+
4. Push to the branch (`git push origin feature/AmazingFeature`)
|
| 316 |
+
5. Open a Pull Request
|
| 317 |
+
|
| 318 |
+
---
|
| 319 |
+
|
| 320 |
+
## π License
|
| 321 |
+
|
| 322 |
+
This project is licensed under the MIT License - see the LICENSE file for details.
|
| 323 |
+
|
| 324 |
+
---
|
| 325 |
+
|
| 326 |
+
## π¨βπ» Developer
|
| 327 |
+
|
| 328 |
+
**DarkNeuronAI**
|
| 329 |
+
- GitHub: [@Madara369Uchiha](https://github.com/Madara369Uchiha)
|
| 330 |
+
- Hugging Face: [DarkNeuron-AI](https://huggingface.co/DarkNeuron-AI)
|
| 331 |
+
|
| 332 |
+
---
|
| 333 |
+
|
| 334 |
+
## π Acknowledgments
|
| 335 |
+
|
| 336 |
+
- Model trained using scikit-learn
|
| 337 |
+
- UI built with React and Tailwind CSS
|
| 338 |
+
- Backend powered by FastAPI
|
| 339 |
+
- Hosted on Hugging Face Spaces
|
| 340 |
+
|
| 341 |
+
---
|
| 342 |
+
|
| 343 |
+
## π Support
|
| 344 |
+
|
| 345 |
+
For issues, questions, or suggestions:
|
| 346 |
+
- Open an issue on GitHub
|
| 347 |
+
- Contact via Hugging Face
|
| 348 |
+
- Email: [your-email@example.com]
|
| 349 |
+
|
| 350 |
+
---
|
| 351 |
+
|
| 352 |
+
<div align="center">
|
| 353 |
+
|
| 354 |
+
**Crafted with β€οΈ and passion by [@Madara369Uchiha](https://github.com/Madara369Uchiha)**
|
| 355 |
+
|
| 356 |
+
β Star this project if you find it helpful!
|
| 357 |
|
| 358 |
+
</div>
|
app.py
ADDED
|
@@ -0,0 +1,171 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from fastapi import FastAPI, HTTPException
|
| 2 |
+
from fastapi.middleware.cors import CORSMiddleware
|
| 3 |
+
from fastapi.responses import HTMLResponse, FileResponse
|
| 4 |
+
from pydantic import BaseModel
|
| 5 |
+
from huggingface_hub import hf_hub_download
|
| 6 |
+
import joblib
|
| 7 |
+
import string
|
| 8 |
+
import re
|
| 9 |
+
import os
|
| 10 |
+
from pathlib import Path
|
| 11 |
+
|
| 12 |
+
app = FastAPI(title="SpamDex API", version="1.0")
|
| 13 |
+
|
| 14 |
+
# CORS middleware
|
| 15 |
+
app.add_middleware(
|
| 16 |
+
CORSMiddleware,
|
| 17 |
+
allow_origins=["*"],
|
| 18 |
+
allow_credentials=True,
|
| 19 |
+
allow_methods=["*"],
|
| 20 |
+
allow_headers=["*"],
|
| 21 |
+
)
|
| 22 |
+
|
| 23 |
+
# Global variables for model and vectorizer
|
| 24 |
+
model = None
|
| 25 |
+
vectorizer = None
|
| 26 |
+
|
| 27 |
+
# Load model and vectorizer on startup
|
| 28 |
+
@app.on_event("startup")
|
| 29 |
+
async def load_model():
|
| 30 |
+
global model, vectorizer
|
| 31 |
+
try:
|
| 32 |
+
print("π Loading model and vectorizer from Hugging Face...")
|
| 33 |
+
|
| 34 |
+
# Download and load vectorizer
|
| 35 |
+
vectorizer_path = hf_hub_download(
|
| 36 |
+
"DarkNeuron-AI/darkneuron-spamdex-v1",
|
| 37 |
+
"spam_detection_vectorizer.pkl"
|
| 38 |
+
)
|
| 39 |
+
vectorizer = joblib.load(vectorizer_path)
|
| 40 |
+
|
| 41 |
+
# Download and load model
|
| 42 |
+
model_path = hf_hub_download(
|
| 43 |
+
"DarkNeuron-AI/darkneuron-spamdex-v1",
|
| 44 |
+
"spam_detection_model.pkl"
|
| 45 |
+
)
|
| 46 |
+
model = joblib.load(model_path)
|
| 47 |
+
|
| 48 |
+
print("β
Model and vectorizer loaded successfully!")
|
| 49 |
+
except Exception as e:
|
| 50 |
+
print(f"β Error loading model: {str(e)}")
|
| 51 |
+
raise
|
| 52 |
+
|
| 53 |
+
# Text cleaning function
|
| 54 |
+
def clean_text(text: str) -> str:
|
| 55 |
+
"""Clean and preprocess text for model input"""
|
| 56 |
+
text = text.lower()
|
| 57 |
+
text = re.sub(r'\d+', '', text)
|
| 58 |
+
text = text.translate(str.maketrans('', '', string.punctuation))
|
| 59 |
+
return text.strip()
|
| 60 |
+
|
| 61 |
+
# Request model
|
| 62 |
+
class TextRequest(BaseModel):
|
| 63 |
+
text: str
|
| 64 |
+
|
| 65 |
+
# Response model
|
| 66 |
+
class PredictionResponse(BaseModel):
|
| 67 |
+
prediction: str
|
| 68 |
+
label: int
|
| 69 |
+
confidence: float
|
| 70 |
+
cleaned_text: str
|
| 71 |
+
|
| 72 |
+
@app.get("/", response_class=HTMLResponse)
|
| 73 |
+
async def read_root():
|
| 74 |
+
"""Serve the main HTML page"""
|
| 75 |
+
try:
|
| 76 |
+
# Try to read index.html from current directory
|
| 77 |
+
html_path = Path(__file__).parent / "index.html"
|
| 78 |
+
|
| 79 |
+
if html_path.exists():
|
| 80 |
+
with open(html_path, 'r', encoding='utf-8') as f:
|
| 81 |
+
html_content = f.read()
|
| 82 |
+
return HTMLResponse(content=html_content, status_code=200)
|
| 83 |
+
else:
|
| 84 |
+
return HTMLResponse(
|
| 85 |
+
content="<h1>index.html not found</h1><p>Please add index.html to the root directory</p>",
|
| 86 |
+
status_code=404
|
| 87 |
+
)
|
| 88 |
+
except Exception as e:
|
| 89 |
+
return HTMLResponse(
|
| 90 |
+
content=f"<h1>Error loading page</h1><p>{str(e)}</p>",
|
| 91 |
+
status_code=500
|
| 92 |
+
)
|
| 93 |
+
|
| 94 |
+
@app.get("/health")
|
| 95 |
+
async def health_check():
|
| 96 |
+
"""Health check endpoint"""
|
| 97 |
+
return {
|
| 98 |
+
"status": "healthy",
|
| 99 |
+
"model_loaded": model is not None,
|
| 100 |
+
"vectorizer_loaded": vectorizer is not None
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
@app.post("/api/predict", response_model=PredictionResponse)
|
| 104 |
+
async def predict(request: TextRequest):
|
| 105 |
+
"""Predict if text is spam or not"""
|
| 106 |
+
if model is None or vectorizer is None:
|
| 107 |
+
raise HTTPException(
|
| 108 |
+
status_code=503,
|
| 109 |
+
detail="Model not loaded. Please try again later."
|
| 110 |
+
)
|
| 111 |
+
|
| 112 |
+
if not request.text or not request.text.strip():
|
| 113 |
+
raise HTTPException(
|
| 114 |
+
status_code=400,
|
| 115 |
+
detail="Text cannot be empty"
|
| 116 |
+
)
|
| 117 |
+
|
| 118 |
+
try:
|
| 119 |
+
# Clean the text
|
| 120 |
+
cleaned_text = clean_text(request.text)
|
| 121 |
+
|
| 122 |
+
if not cleaned_text:
|
| 123 |
+
raise HTTPException(
|
| 124 |
+
status_code=400,
|
| 125 |
+
detail="Text contains no valid content after cleaning"
|
| 126 |
+
)
|
| 127 |
+
|
| 128 |
+
# Vectorize the text
|
| 129 |
+
text_vector = vectorizer.transform([cleaned_text])
|
| 130 |
+
|
| 131 |
+
# Make prediction
|
| 132 |
+
prediction = model.predict(text_vector)[0]
|
| 133 |
+
|
| 134 |
+
# Get prediction probability for confidence
|
| 135 |
+
probabilities = model.predict_proba(text_vector)[0]
|
| 136 |
+
confidence = float(max(probabilities) * 100)
|
| 137 |
+
|
| 138 |
+
# Prepare response
|
| 139 |
+
result = {
|
| 140 |
+
"prediction": "spam" if prediction == 1 else "safe",
|
| 141 |
+
"label": int(prediction),
|
| 142 |
+
"confidence": round(confidence, 2),
|
| 143 |
+
"cleaned_text": cleaned_text
|
| 144 |
+
}
|
| 145 |
+
|
| 146 |
+
return result
|
| 147 |
+
|
| 148 |
+
except Exception as e:
|
| 149 |
+
raise HTTPException(
|
| 150 |
+
status_code=500,
|
| 151 |
+
detail=f"Prediction error: {str(e)}"
|
| 152 |
+
)
|
| 153 |
+
|
| 154 |
+
@app.get("/api/info")
|
| 155 |
+
async def model_info():
|
| 156 |
+
"""Get model information"""
|
| 157 |
+
return {
|
| 158 |
+
"model_name": "SpamDex v1.0",
|
| 159 |
+
"algorithm": "Naive Bayes (MultinomialNB)",
|
| 160 |
+
"vectorization": "TF-IDF",
|
| 161 |
+
"developer": "DarkNeuronAI",
|
| 162 |
+
"huggingface_repo": "DarkNeuron-AI/darkneuron-spamdex-v1",
|
| 163 |
+
"labels": {
|
| 164 |
+
"0": "Ham (Not Spam)",
|
| 165 |
+
"1": "Spam"
|
| 166 |
+
}
|
| 167 |
+
}
|
| 168 |
+
|
| 169 |
+
if __name__ == "__main__":
|
| 170 |
+
import uvicorn
|
| 171 |
+
uvicorn.run(app, host="0.0.0.0", port=7860)
|
gitattributes
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
gitignore
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
*.so
|
| 6 |
+
.Python
|
| 7 |
+
build/
|
| 8 |
+
develop-eggs/
|
| 9 |
+
dist/
|
| 10 |
+
downloads/
|
| 11 |
+
eggs/
|
| 12 |
+
.eggs/
|
| 13 |
+
lib/
|
| 14 |
+
lib64/
|
| 15 |
+
parts/
|
| 16 |
+
sdist/
|
| 17 |
+
var/
|
| 18 |
+
wheels/
|
| 19 |
+
*.egg-info/
|
| 20 |
+
.installed.cfg
|
| 21 |
+
*.egg
|
| 22 |
+
|
| 23 |
+
# Virtual Environment
|
| 24 |
+
venv/
|
| 25 |
+
ENV/
|
| 26 |
+
env/
|
| 27 |
+
.venv
|
| 28 |
+
|
| 29 |
+
# IDE
|
| 30 |
+
.vscode/
|
| 31 |
+
.idea/
|
| 32 |
+
*.swp
|
| 33 |
+
*.swo
|
| 34 |
+
*~
|
| 35 |
+
|
| 36 |
+
# OS
|
| 37 |
+
.DS_Store
|
| 38 |
+
Thumbs.db
|
| 39 |
+
|
| 40 |
+
# Model files (optional - comment out if you want to include)
|
| 41 |
+
*.pkl
|
| 42 |
+
*.joblib
|
| 43 |
+
|
| 44 |
+
# Logs
|
| 45 |
+
*.log
|
| 46 |
+
|
| 47 |
+
# Environment variables
|
| 48 |
+
.env
|
| 49 |
+
.env.local
|
| 50 |
+
|
| 51 |
+
# Hugging Face cache
|
| 52 |
+
.cache/
|
| 53 |
+
huggingface/
|
index.html
ADDED
|
@@ -0,0 +1,514 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>SpamDex - AI Spam Detection</title>
|
| 7 |
+
|
| 8 |
+
<!-- React & Tailwind Setup -->
|
| 9 |
+
<script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
|
| 10 |
+
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
|
| 11 |
+
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
|
| 12 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 13 |
+
|
| 14 |
+
<!-- Google Fonts -->
|
| 15 |
+
<style>
|
| 16 |
+
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');
|
| 17 |
+
|
| 18 |
+
body { font-family: 'Outfit', sans-serif; }
|
| 19 |
+
|
| 20 |
+
/* Animations */
|
| 21 |
+
@keyframes float {
|
| 22 |
+
0%, 100% { transform: translate(0, 0) rotate(0deg); }
|
| 23 |
+
25% { transform: translate(10px, -20px) rotate(5deg); }
|
| 24 |
+
50% { transform: translate(-5px, -30px) rotate(-5deg); }
|
| 25 |
+
75% { transform: translate(8px, -15px) rotate(3deg); }
|
| 26 |
+
}
|
| 27 |
+
@keyframes glow {
|
| 28 |
+
0%, 100% { opacity: 0.3; transform: scale(1); }
|
| 29 |
+
50% { opacity: 0.6; transform: scale(1.1); }
|
| 30 |
+
}
|
| 31 |
+
@keyframes slide-up {
|
| 32 |
+
from { transform: translateY(30px); opacity: 0; }
|
| 33 |
+
to { transform: translateY(0); opacity: 1; }
|
| 34 |
+
}
|
| 35 |
+
@keyframes pulse-ring {
|
| 36 |
+
0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7); }
|
| 37 |
+
70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 82, 82, 0); }
|
| 38 |
+
100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 82, 82, 0); }
|
| 39 |
+
}
|
| 40 |
+
@keyframes pulse-ring-green {
|
| 41 |
+
0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
|
| 42 |
+
70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
|
| 43 |
+
100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
/* Glassmorphism Classes */
|
| 47 |
+
.glass {
|
| 48 |
+
backdrop-filter: blur(16px) saturate(180%);
|
| 49 |
+
-webkit-backdrop-filter: blur(16px) saturate(180%);
|
| 50 |
+
}
|
| 51 |
+
.glass-dark {
|
| 52 |
+
background: rgba(17, 25, 40, 0.6);
|
| 53 |
+
border: 1px solid rgba(255, 255, 255, 0.125);
|
| 54 |
+
}
|
| 55 |
+
.glass-light {
|
| 56 |
+
background: rgba(255, 255, 255, 0.7);
|
| 57 |
+
border: 1px solid rgba(209, 213, 219, 0.3);
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
/* Text Effects */
|
| 61 |
+
.glow-text-dark { text-shadow: 0 0 20px rgba(168, 85, 247, 0.5); }
|
| 62 |
+
.glow-text-light { text-shadow: 0 0 15px rgba(236, 72, 153, 0.3); }
|
| 63 |
+
|
| 64 |
+
.gradient-text {
|
| 65 |
+
background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
|
| 66 |
+
-webkit-background-clip: text;
|
| 67 |
+
-webkit-text-fill-color: transparent;
|
| 68 |
+
background-clip: text;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
/* Utilities */
|
| 72 |
+
.animate-slide-up { animation: slide-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
|
| 73 |
+
.shimmer {
|
| 74 |
+
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
|
| 75 |
+
background-size: 1000px 100%;
|
| 76 |
+
animation: shimmer 2s infinite linear;
|
| 77 |
+
}
|
| 78 |
+
@keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } }
|
| 79 |
+
|
| 80 |
+
.cursive { font-family: 'Brush Script MT', cursive; }
|
| 81 |
+
|
| 82 |
+
/* Smooth Scrollbar */
|
| 83 |
+
textarea::-webkit-scrollbar { width: 8px; }
|
| 84 |
+
textarea::-webkit-scrollbar-track { background: transparent; }
|
| 85 |
+
textarea::-webkit-scrollbar-thumb { background: rgba(156, 163, 175, 0.5); border-radius: 4px; }
|
| 86 |
+
</style>
|
| 87 |
+
</head>
|
| 88 |
+
<body>
|
| 89 |
+
<div id="root"></div>
|
| 90 |
+
|
| 91 |
+
<script type="text/babel">
|
| 92 |
+
const { useState, useEffect } = React;
|
| 93 |
+
|
| 94 |
+
// --- Icons (SVG Components for Browser Compatibility) ---
|
| 95 |
+
const Icon = ({ path, className }) => (
|
| 96 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className={className}>
|
| 97 |
+
{path}
|
| 98 |
+
</svg>
|
| 99 |
+
);
|
| 100 |
+
|
| 101 |
+
const Icons = {
|
| 102 |
+
Shield: (p) => <Icon {...p} path={<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>} />,
|
| 103 |
+
Sun: (p) => <Icon {...p} path={<><circle cx="12" cy="12" r="4"/><path d="M12 2v2"/><path d="M12 20v2"/><path d="m4.93 4.93 1.41 1.41"/><path d="m17.66 17.66 1.41 1.41"/><path d="M2 12h2"/><path d="M20 12h2"/><path d="m6.34 17.66-1.41 1.41"/><path d="m19.07 4.93-1.41 1.41"/></>} />,
|
| 104 |
+
Moon: (p) => <Icon {...p} path={<path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z"/>} />,
|
| 105 |
+
Zap: (p) => <Icon {...p} path={<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/>} />,
|
| 106 |
+
Copy: (p) => <Icon {...p} path={<><rect width="14" height="14" x="8" y="8" rx="2" ry="2"/><path d="M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"/></>} />,
|
| 107 |
+
Check: (p) => <Icon {...p} path={<polyline points="20 6 9 17 4 12"/>} />,
|
| 108 |
+
Sparkles: (p) => <Icon {...p} path={<><path d="m12 3-1.912 5.813a2 2 0 0 1-1.275 1.275L3 12l5.813 1.912a2 2 0 0 1 1.275 1.275L12 21l1.912-5.813a2 2 0 0 1 1.275-1.275L12 3Z"/><path d="M5 3v4"/><path d="M19 17v4"/><path d="M3 5h4"/><path d="M17 19h4"/></>} />,
|
| 109 |
+
Brain: (p) => <Icon {...p} path={<><path d="M9.5 2A2.5 2.5 0 0 1 12 4.5v15a2.5 2.5 0 0 1-4.96.44 2.5 2.5 0 0 1-2.96-3.08 3 3 0 0 1-.34-5.58 2.5 2.5 0 0 1 1.32-4.24 2.5 2.5 0 0 1 1.98-3A2.5 2.5 0 0 1 9.5 2Z"/><path d="M14.5 2A2.5 2.5 0 0 0 12 4.5v15a2.5 2.5 0 0 0 4.96.44 2.5 2.5 0 0 0 2.96-3.08 3 3 0 0 0 .34-5.58 2.5 2.5 0 0 0-1.32-4.24 2.5 2.5 0 0 0-1.98-3A2.5 2.5 0 0 0 14.5 2Z"/></>} />,
|
| 110 |
+
Lock: (p) => <Icon {...p} path={<><rect width="18" height="11" x="3" y="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></>} />,
|
| 111 |
+
Globe: (p) => <Icon {...p} path={<><circle cx="12" cy="12" r="10"/><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/><path d="M2 12h20"/></>} />,
|
| 112 |
+
Code: (p) => <Icon {...p} path={<><polyline points="16 18 22 12 16 6"/><polyline points="8 6 2 12 8 18"/></>} />,
|
| 113 |
+
AlertCircle: (p) => <Icon {...p} path={<><circle cx="12" cy="12" r="10"/><line x1="12" x2="12" y1="8" y2="12"/><line x1="12" x2="12.01" y1="16" y2="16"/></>} />,
|
| 114 |
+
CheckCircle: (p) => <Icon {...p} path={<><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/></>} />,
|
| 115 |
+
Mail: (p) => <Icon {...p} path={<><rect width="20" height="16" x="2" y="4" rx="2"/><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"/></>} />,
|
| 116 |
+
Send: (p) => <Icon {...p} path={<><line x1="22" x2="11" y1="2" y2="13"/><polygon points="22 2 15 22 11 13 2 9 22 2"/></>} />,
|
| 117 |
+
Award: (p) => <Icon {...p} path={<><circle cx="12" cy="8" r="7"/><polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88"/></>} />,
|
| 118 |
+
TrendingUp: (p) => <Icon {...p} path={<polyline points="23 6 13.5 15.5 8.5 10.5 1 18"/>} />
|
| 119 |
+
};
|
| 120 |
+
|
| 121 |
+
// --- Main Application ---
|
| 122 |
+
const SpamDexUI = () => {
|
| 123 |
+
const [darkMode, setDarkMode] = useState(true);
|
| 124 |
+
const [inputText, setInputText] = useState('');
|
| 125 |
+
const [result, setResult] = useState(null);
|
| 126 |
+
const [loading, setLoading] = useState(false);
|
| 127 |
+
const [copied, setCopied] = useState(false);
|
| 128 |
+
const [particles, setParticles] = useState([]);
|
| 129 |
+
const [currentUrl, setCurrentUrl] = useState('');
|
| 130 |
+
|
| 131 |
+
useEffect(() => {
|
| 132 |
+
// Initialize particles
|
| 133 |
+
const newParticles = [...Array(25)].map((_, i) => ({
|
| 134 |
+
id: i,
|
| 135 |
+
size: Math.random() * 4 + 2,
|
| 136 |
+
x: Math.random() * 100,
|
| 137 |
+
y: Math.random() * 100,
|
| 138 |
+
duration: Math.random() * 20 + 10,
|
| 139 |
+
delay: Math.random() * 5
|
| 140 |
+
}));
|
| 141 |
+
setParticles(newParticles);
|
| 142 |
+
|
| 143 |
+
// Set current URL for API display
|
| 144 |
+
setCurrentUrl(window.location.origin);
|
| 145 |
+
}, []);
|
| 146 |
+
|
| 147 |
+
const analyzeText = async () => {
|
| 148 |
+
if (!inputText.trim()) return;
|
| 149 |
+
|
| 150 |
+
setLoading(true);
|
| 151 |
+
setResult(null);
|
| 152 |
+
|
| 153 |
+
try {
|
| 154 |
+
// Call the Python FastAPI Backend
|
| 155 |
+
const response = await fetch('/api/predict', {
|
| 156 |
+
method: 'POST',
|
| 157 |
+
headers: {
|
| 158 |
+
'Content-Type': 'application/json',
|
| 159 |
+
},
|
| 160 |
+
body: JSON.stringify({ text: inputText })
|
| 161 |
+
});
|
| 162 |
+
|
| 163 |
+
if (!response.ok) {
|
| 164 |
+
const errorData = await response.json();
|
| 165 |
+
throw new Error(errorData.detail || 'Prediction failed');
|
| 166 |
+
}
|
| 167 |
+
|
| 168 |
+
const data = await response.json();
|
| 169 |
+
|
| 170 |
+
setResult({
|
| 171 |
+
type: data.prediction, // 'spam' or 'safe'
|
| 172 |
+
confidence: data.confidence,
|
| 173 |
+
label: data.label
|
| 174 |
+
});
|
| 175 |
+
|
| 176 |
+
} catch (err) {
|
| 177 |
+
console.error("Error:", err);
|
| 178 |
+
alert("Error connecting to server. Is the model loaded?");
|
| 179 |
+
} finally {
|
| 180 |
+
setLoading(false);
|
| 181 |
+
}
|
| 182 |
+
};
|
| 183 |
+
|
| 184 |
+
const copyApiEndpoint = () => {
|
| 185 |
+
navigator.clipboard.writeText(currentUrl + '/api/predict');
|
| 186 |
+
setCopied(true);
|
| 187 |
+
setTimeout(() => setCopied(false), 2000);
|
| 188 |
+
};
|
| 189 |
+
|
| 190 |
+
const examples = [
|
| 191 |
+
{ text: "Congratulations! You won $1000! Click here now!", icon: Icons.AlertCircle, type: "spam" },
|
| 192 |
+
{ text: "Hi, can we schedule a meeting tomorrow at 3 PM?", icon: Icons.CheckCircle, type: "safe" },
|
| 193 |
+
{ text: "FREE FREE FREE!!! Win iPhone now!!!", icon: Icons.AlertCircle, type: "spam" },
|
| 194 |
+
{ text: "Your package has been delivered successfully.", icon: Icons.CheckCircle, type: "safe" }
|
| 195 |
+
];
|
| 196 |
+
|
| 197 |
+
const features = [
|
| 198 |
+
{ icon: Icons.Zap, title: "Lightning Fast", desc: "Sub-second spam detection", color: "from-yellow-400 to-orange-500" },
|
| 199 |
+
{ icon: Icons.Brain, title: "AI Powered", desc: "Naive Bayes + TF-IDF", color: "from-purple-400 to-pink-500" },
|
| 200 |
+
{ icon: Icons.Lock, title: "High Accuracy", desc: "98%+ precision rate", color: "from-green-400 to-emerald-500" },
|
| 201 |
+
{ icon: Icons.Globe, title: "API Ready", desc: "Easy integration", color: "from-blue-400 to-cyan-500" }
|
| 202 |
+
];
|
| 203 |
+
|
| 204 |
+
const stats = [
|
| 205 |
+
{ label: "Accuracy", value: "98.5%", icon: Icons.TrendingUp },
|
| 206 |
+
{ label: "Models Trained", value: "10K+", icon: Icons.Brain },
|
| 207 |
+
{ label: "API Calls", value: "1M+", icon: Icons.Zap },
|
| 208 |
+
{ label: "Users", value: "5K+", icon: Icons.Award }
|
| 209 |
+
];
|
| 210 |
+
|
| 211 |
+
// Dynamic Classes based on Theme
|
| 212 |
+
const glassClass = darkMode ? 'glass-dark glass' : 'glass-light glass';
|
| 213 |
+
const textClass = darkMode ? 'text-white' : 'text-gray-900';
|
| 214 |
+
const subTextClass = darkMode ? 'text-gray-400' : 'text-gray-600';
|
| 215 |
+
|
| 216 |
+
return (
|
| 217 |
+
<div className={`min-h-screen w-full transition-colors duration-700 overflow-x-hidden ${
|
| 218 |
+
darkMode
|
| 219 |
+
? 'bg-gradient-to-br from-slate-900 via-purple-950 to-slate-900'
|
| 220 |
+
: 'bg-gradient-to-br from-indigo-50 via-purple-50 to-pink-50'
|
| 221 |
+
}`}>
|
| 222 |
+
|
| 223 |
+
{/* Background Particles */}
|
| 224 |
+
<div className="fixed inset-0 overflow-hidden pointer-events-none">
|
| 225 |
+
{particles.map(p => (
|
| 226 |
+
<div key={p.id}
|
| 227 |
+
className={`absolute rounded-full blur-sm transition-colors duration-700 ${darkMode ? 'bg-purple-500' : 'bg-pink-400'}`}
|
| 228 |
+
style={{
|
| 229 |
+
width: p.size + 'px',
|
| 230 |
+
height: p.size + 'px',
|
| 231 |
+
left: p.x + '%',
|
| 232 |
+
top: p.y + '%',
|
| 233 |
+
animation: `float ${p.duration}s linear infinite`,
|
| 234 |
+
animationDelay: p.delay + 's',
|
| 235 |
+
opacity: 0.4
|
| 236 |
+
}}
|
| 237 |
+
/>
|
| 238 |
+
))}
|
| 239 |
+
<div className={`absolute top-0 left-0 w-96 h-96 rounded-full blur-[100px] opacity-20 ${darkMode ? 'bg-purple-600' : 'bg-pink-400'}`} style={{ animation: 'glow 8s ease-in-out infinite' }} />
|
| 240 |
+
<div className={`absolute bottom-0 right-0 w-96 h-96 rounded-full blur-[100px] opacity-20 ${darkMode ? 'bg-blue-600' : 'bg-orange-400'}`} style={{ animation: 'glow 10s ease-in-out infinite' }} />
|
| 241 |
+
</div>
|
| 242 |
+
|
| 243 |
+
<div className="relative z-10 container mx-auto px-4 py-6 md:py-10 max-w-7xl">
|
| 244 |
+
|
| 245 |
+
{/* Header */}
|
| 246 |
+
<div className="flex flex-row justify-between items-center mb-10 md:mb-16 animate-slide-up">
|
| 247 |
+
<div className="flex items-center gap-3 md:gap-4">
|
| 248 |
+
<div className={`p-2 md:p-3 rounded-2xl shadow-xl relative overflow-hidden transition-all hover:scale-105 ${
|
| 249 |
+
darkMode ? 'bg-gradient-to-br from-purple-600 to-pink-600' : 'bg-gradient-to-br from-orange-400 to-pink-500'
|
| 250 |
+
}`}>
|
| 251 |
+
<Icons.Shield className="w-8 h-8 md:w-10 md:h-10 text-white relative z-10" />
|
| 252 |
+
<div className="absolute inset-0 shimmer" />
|
| 253 |
+
</div>
|
| 254 |
+
<div>
|
| 255 |
+
<h1 className={`text-2xl md:text-4xl font-bold tracking-tight ${textClass}`}>
|
| 256 |
+
DarkNeuron
|
| 257 |
+
</h1>
|
| 258 |
+
<p className={`text-xs md:text-sm font-semibold tracking-wider ${darkMode ? 'text-purple-400' : 'text-pink-600'}`}>
|
| 259 |
+
SpamDex AI v1.0
|
| 260 |
+
</p>
|
| 261 |
+
</div>
|
| 262 |
+
</div>
|
| 263 |
+
|
| 264 |
+
<button
|
| 265 |
+
onClick={() => setDarkMode(!darkMode)}
|
| 266 |
+
className={`p-3 md:p-4 rounded-full ${glassClass} hover:scale-110 active:scale-95 transition-all duration-300 shadow-lg group`}
|
| 267 |
+
>
|
| 268 |
+
<div className="group-hover:rotate-180 transition-transform duration-500">
|
| 269 |
+
{darkMode ? <Icons.Sun className="w-6 h-6 text-yellow-400" /> : <Icons.Moon className="w-6 h-6 text-indigo-600" />}
|
| 270 |
+
</div>
|
| 271 |
+
</button>
|
| 272 |
+
</div>
|
| 273 |
+
|
| 274 |
+
{/* Hero Section */}
|
| 275 |
+
<div className="text-center mb-12 animate-slide-up" style={{ animationDelay: '0.1s' }}>
|
| 276 |
+
<div className={`inline-flex items-center gap-2 px-4 py-2 rounded-full ${glassClass} mb-6 shadow-lg border-opacity-20`}>
|
| 277 |
+
<Icons.Sparkles className={`w-4 h-4 md:w-5 md:h-5 ${darkMode ? 'text-purple-400' : 'text-pink-500'}`} />
|
| 278 |
+
<span className={`text-xs md:text-sm font-semibold ${darkMode ? 'text-purple-300' : 'text-pink-600'}`}>
|
| 279 |
+
Powered by Advanced ML Algorithms
|
| 280 |
+
</span>
|
| 281 |
+
</div>
|
| 282 |
+
|
| 283 |
+
<h2 className={`text-5xl md:text-7xl font-bold mb-6 leading-tight ${textClass}`}>
|
| 284 |
+
Welcome to <br className="md:hidden"/>
|
| 285 |
+
<span className="cursive gradient-text inline-block hover:scale-105 transition-transform cursor-default">SpamDex</span>
|
| 286 |
+
</h2>
|
| 287 |
+
|
| 288 |
+
<p className={`text-base md:text-xl ${subTextClass} max-w-3xl mx-auto leading-relaxed px-4`}>
|
| 289 |
+
Unleash the power of <span className={`font-bold ${darkMode ? 'text-gray-200' : 'text-gray-800'}`}>AI-driven spam detection</span>.
|
| 290 |
+
Secure your inbox with <span className={darkMode ? 'text-purple-400' : 'text-pink-600'}>98% Accuracy</span>.
|
| 291 |
+
</p>
|
| 292 |
+
</div>
|
| 293 |
+
|
| 294 |
+
{/* Stats Bar (Grid Layout) */}
|
| 295 |
+
<div className="grid grid-cols-2 lg:grid-cols-4 gap-4 md:gap-6 mb-12 animate-slide-up" style={{ animationDelay: '0.2s' }}>
|
| 296 |
+
{stats.map((stat, idx) => (
|
| 297 |
+
<div key={idx} className={`${glassClass} rounded-2xl p-5 md:p-6 text-center hover:scale-105 hover:-translate-y-2 transition-all duration-300 shadow-lg cursor-default`}>
|
| 298 |
+
<stat.icon className={`w-8 h-8 mx-auto mb-3 ${darkMode ? 'text-purple-400' : 'text-pink-500'}`} />
|
| 299 |
+
<div className={`text-2xl md:text-3xl font-bold mb-1 ${textClass}`}>
|
| 300 |
+
{stat.value}
|
| 301 |
+
</div>
|
| 302 |
+
<div className={`text-xs md:text-sm ${subTextClass}`}>
|
| 303 |
+
{stat.label}
|
| 304 |
+
</div>
|
| 305 |
+
</div>
|
| 306 |
+
))}
|
| 307 |
+
</div>
|
| 308 |
+
|
| 309 |
+
{/* Main Analysis Section */}
|
| 310 |
+
<div className="max-w-6xl mx-auto animate-slide-up" style={{ animationDelay: '0.3s' }}>
|
| 311 |
+
<div className={`${glassClass} rounded-3xl p-5 md:p-8 shadow-2xl relative overflow-hidden border-opacity-40`}>
|
| 312 |
+
{/* Tab Header */}
|
| 313 |
+
<div className="flex gap-3 mb-8 border-b border-gray-500/10 pb-4">
|
| 314 |
+
<button className={`flex items-center gap-2 md:gap-3 px-6 py-3 rounded-xl font-bold transition-all shadow-lg text-sm md:text-base ${
|
| 315 |
+
darkMode
|
| 316 |
+
? 'bg-gradient-to-r from-purple-600 to-pink-600 text-white'
|
| 317 |
+
: 'bg-gradient-to-r from-orange-400 to-pink-500 text-white'
|
| 318 |
+
}`}>
|
| 319 |
+
<Icons.Mail className="w-5 h-5" />
|
| 320 |
+
Text Analysis
|
| 321 |
+
</button>
|
| 322 |
+
</div>
|
| 323 |
+
|
| 324 |
+
<div className="grid lg:grid-cols-3 gap-8">
|
| 325 |
+
{/* Left Column: Input */}
|
| 326 |
+
<div className="lg:col-span-2">
|
| 327 |
+
<div className="mb-6">
|
| 328 |
+
<div className="flex items-center gap-2 mb-3">
|
| 329 |
+
<Icons.Send className={`w-5 h-5 ${darkMode ? 'text-purple-400' : 'text-pink-500'}`} />
|
| 330 |
+
<label className={`text-lg font-bold ${textClass}`}>
|
| 331 |
+
Enter Your Message
|
| 332 |
+
</label>
|
| 333 |
+
</div>
|
| 334 |
+
<textarea
|
| 335 |
+
value={inputText}
|
| 336 |
+
onChange={(e) => setInputText(e.target.value)}
|
| 337 |
+
placeholder="Paste email content or SMS text here..."
|
| 338 |
+
className={`w-full h-48 p-4 rounded-xl resize-none focus:outline-none focus:ring-2 transition-all text-base md:text-lg ${
|
| 339 |
+
darkMode
|
| 340 |
+
? 'bg-slate-900/50 text-white placeholder-gray-500 focus:ring-purple-500/50 border border-white/10'
|
| 341 |
+
: 'bg-white/60 text-gray-900 placeholder-gray-500 focus:ring-pink-500/50 border border-gray-200'
|
| 342 |
+
}`}
|
| 343 |
+
></textarea>
|
| 344 |
+
</div>
|
| 345 |
+
|
| 346 |
+
<div className="flex flex-col sm:flex-row gap-4">
|
| 347 |
+
<button
|
| 348 |
+
onClick={analyzeText}
|
| 349 |
+
disabled={loading || !inputText.trim()}
|
| 350 |
+
className={`flex-1 py-4 rounded-xl font-bold text-white text-lg transition-all transform hover:scale-[1.02] active:scale-95 disabled:opacity-50 disabled:cursor-not-allowed shadow-xl relative overflow-hidden group ${
|
| 351 |
+
darkMode
|
| 352 |
+
? 'bg-gradient-to-r from-purple-600 to-pink-600'
|
| 353 |
+
: 'bg-gradient-to-r from-orange-500 to-pink-500'
|
| 354 |
+
}`}
|
| 355 |
+
>
|
| 356 |
+
{loading && <div className="absolute inset-0 shimmer" />}
|
| 357 |
+
{loading ? (
|
| 358 |
+
<span className="flex items-center justify-center gap-2">
|
| 359 |
+
<div className="w-5 h-5 border-2 border-white border-t-transparent rounded-full animate-spin" />
|
| 360 |
+
Analyzing...
|
| 361 |
+
</span>
|
| 362 |
+
) : (
|
| 363 |
+
<span className="flex items-center justify-center gap-2">
|
| 364 |
+
<Icons.Brain className="w-5 h-5 group-hover:animate-bounce" />
|
| 365 |
+
Analyze Message
|
| 366 |
+
</span>
|
| 367 |
+
)}
|
| 368 |
+
</button>
|
| 369 |
+
|
| 370 |
+
<button
|
| 371 |
+
onClick={() => { setInputText(''); setResult(null); }}
|
| 372 |
+
className={`px-6 py-4 rounded-xl font-bold transition-all hover:bg-opacity-80 active:scale-95 ${
|
| 373 |
+
darkMode
|
| 374 |
+
? 'bg-red-500/10 text-red-400 hover:bg-red-500/20 border border-red-500/20'
|
| 375 |
+
: 'bg-red-100 text-red-600 hover:bg-red-200'
|
| 376 |
+
}`}>
|
| 377 |
+
Clear
|
| 378 |
+
</button>
|
| 379 |
+
</div>
|
| 380 |
+
</div>
|
| 381 |
+
|
| 382 |
+
{/* Right Column: Results & Info */}
|
| 383 |
+
<div className="lg:col-span-1 flex flex-col gap-6">
|
| 384 |
+
{result ? (
|
| 385 |
+
<div className={`rounded-2xl p-6 border-2 transition-all animate-slide-up h-full flex flex-col justify-center items-center shadow-2xl relative overflow-hidden ${
|
| 386 |
+
result.type === 'spam'
|
| 387 |
+
? darkMode ? 'border-red-500/50 bg-red-900/20' : 'border-red-400 bg-red-50'
|
| 388 |
+
: darkMode ? 'border-green-500/50 bg-green-900/20' : 'border-green-400 bg-green-50'
|
| 389 |
+
}`}>
|
| 390 |
+
{/* Pulse Animation based on result */}
|
| 391 |
+
<div style={{animation: result.type === 'spam' ? 'pulse-ring 2s infinite' : 'pulse-ring-green 2s infinite'}}
|
| 392 |
+
className={`absolute w-32 h-32 rounded-full opacity-20 ${result.type === 'spam' ? 'bg-red-500' : 'bg-green-500'}`}></div>
|
| 393 |
+
|
| 394 |
+
<div className={`w-20 h-20 rounded-full mb-4 flex items-center justify-center z-10 ${
|
| 395 |
+
result.type === 'spam' ? 'bg-red-100 text-red-600' : 'bg-green-100 text-green-600'
|
| 396 |
+
}`}>
|
| 397 |
+
{result.type === 'spam' ? <Icons.AlertCircle className="w-10 h-10"/> : <Icons.CheckCircle className="w-10 h-10"/>}
|
| 398 |
+
</div>
|
| 399 |
+
|
| 400 |
+
<h3 className={`text-2xl font-bold text-center mb-1 ${
|
| 401 |
+
result.type === 'spam' ? 'text-red-500' : 'text-green-600'
|
| 402 |
+
}`}>
|
| 403 |
+
{result.type === 'spam' ? 'SPAM DETECTED!' : 'SAFE MESSAGE'}
|
| 404 |
+
</h3>
|
| 405 |
+
|
| 406 |
+
<div className={`text-center ${subTextClass} mt-2`}>
|
| 407 |
+
<p className="text-xs uppercase tracking-widest opacity-70 mb-1">Confidence Score</p>
|
| 408 |
+
<p className={`text-4xl font-bold ${textClass}`}>{result.confidence.toFixed(1)}%</p>
|
| 409 |
+
</div>
|
| 410 |
+
</div>
|
| 411 |
+
) : (
|
| 412 |
+
<div className={`${glassClass} rounded-2xl p-6 h-full min-h-[250px] flex flex-col items-center justify-center text-center border border-dashed ${darkMode ? 'border-gray-700' : 'border-gray-300'}`}>
|
| 413 |
+
<Icons.Brain className={`w-16 h-16 mb-4 opacity-30 ${textClass}`} />
|
| 414 |
+
<p className={`text-sm ${subTextClass}`}>
|
| 415 |
+
Your analysis results will appear here automatically.
|
| 416 |
+
</p>
|
| 417 |
+
</div>
|
| 418 |
+
)}
|
| 419 |
+
</div>
|
| 420 |
+
</div>
|
| 421 |
+
|
| 422 |
+
{/* Examples */}
|
| 423 |
+
<div className="mt-8 pt-6 border-t border-gray-500/20">
|
| 424 |
+
<div className="flex items-center gap-2 mb-4">
|
| 425 |
+
<Icons.Sparkles className={`w-4 h-4 ${darkMode ? 'text-purple-400' : 'text-pink-500'}`} />
|
| 426 |
+
<span className={`text-sm font-bold uppercase tracking-wider ${subTextClass}`}>
|
| 427 |
+
Or try these examples
|
| 428 |
+
</span>
|
| 429 |
+
</div>
|
| 430 |
+
<div className="grid grid-cols-1 md:grid-cols-2 gap-3">
|
| 431 |
+
{examples.map((example, idx) => (
|
| 432 |
+
<button
|
| 433 |
+
key={idx}
|
| 434 |
+
onClick={() => setInputText(example.text)}
|
| 435 |
+
className={`p-4 rounded-xl text-left transition-all hover:-translate-y-1 group flex items-start gap-3 ${
|
| 436 |
+
darkMode
|
| 437 |
+
? 'bg-white/5 hover:bg-white/10 border border-white/5'
|
| 438 |
+
: 'bg-white hover:bg-gray-50 border border-gray-200 shadow-sm'
|
| 439 |
+
}`}>
|
| 440 |
+
<div className={`mt-0.5 ${example.type === 'spam' ? 'text-red-500' : 'text-green-500'}`}>
|
| 441 |
+
{example.type === 'spam' ? <Icons.AlertCircle className="w-4 h-4"/> : <Icons.CheckCircle className="w-4 h-4"/>}
|
| 442 |
+
</div>
|
| 443 |
+
<span className={`text-xs md:text-sm line-clamp-2 ${darkMode ? 'text-gray-300' : 'text-gray-600'}`}>
|
| 444 |
+
{example.text}
|
| 445 |
+
</span>
|
| 446 |
+
</button>
|
| 447 |
+
))}
|
| 448 |
+
</div>
|
| 449 |
+
</div>
|
| 450 |
+
</div>
|
| 451 |
+
</div>
|
| 452 |
+
|
| 453 |
+
{/* Features Grid */}
|
| 454 |
+
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 md:gap-6 my-12 animate-slide-up" style={{ animationDelay: '0.4s' }}>
|
| 455 |
+
{features.map((feature, idx) => (
|
| 456 |
+
<div key={idx} className={`${glassClass} rounded-2xl p-6 text-center hover:scale-105 hover:shadow-xl transition-all duration-300 cursor-default group`}>
|
| 457 |
+
<div className={`w-14 h-14 mx-auto mb-4 rounded-2xl bg-gradient-to-br ${feature.color} flex items-center justify-center shadow-lg group-hover:rotate-12 transition-transform`}>
|
| 458 |
+
<feature.icon className="w-7 h-7 text-white" />
|
| 459 |
+
</div>
|
| 460 |
+
<h3 className={`text-lg font-bold mb-2 ${textClass}`}>
|
| 461 |
+
{feature.title}
|
| 462 |
+
</h3>
|
| 463 |
+
<p className={`text-xs md:text-sm ${subTextClass} leading-relaxed`}>
|
| 464 |
+
{feature.desc}
|
| 465 |
+
</p>
|
| 466 |
+
</div>
|
| 467 |
+
))}
|
| 468 |
+
</div>
|
| 469 |
+
|
| 470 |
+
{/* API Section */}
|
| 471 |
+
<div className={`${glassClass} rounded-3xl p-6 md:p-8 shadow-2xl animate-slide-up mb-10`} style={{ animationDelay: '0.5s' }}>
|
| 472 |
+
<div className="flex items-center gap-3 mb-6">
|
| 473 |
+
<Icons.Code className={`w-7 h-7 md:w-8 md:h-8 ${darkMode ? 'text-purple-400' : 'text-pink-500'}`} />
|
| 474 |
+
<h3 className={`text-xl md:text-2xl font-bold ${textClass}`}>
|
| 475 |
+
API Integration
|
| 476 |
+
</h3>
|
| 477 |
+
</div>
|
| 478 |
+
<div className={`flex flex-col md:flex-row items-center gap-4 p-4 rounded-xl ${darkMode ? 'bg-gray-900/50 border border-white/10' : 'bg-gray-100 border border-gray-200'}`}>
|
| 479 |
+
<div className="flex-1 w-full overflow-hidden">
|
| 480 |
+
<code className={`block text-xs md:text-base font-mono truncate ${darkMode ? 'text-cyan-400' : 'text-purple-600'}`}>
|
| 481 |
+
POST {currentUrl}/api/predict
|
| 482 |
+
</code>
|
| 483 |
+
</div>
|
| 484 |
+
<button
|
| 485 |
+
onClick={copyApiEndpoint}
|
| 486 |
+
className={`flex items-center gap-2 px-4 py-2 rounded-lg transition-all hover:scale-105 active:scale-95 font-medium text-sm ${
|
| 487 |
+
darkMode ? 'bg-white/10 hover:bg-white/20 text-white' : 'bg-white hover:bg-gray-50 text-gray-700 shadow-sm'
|
| 488 |
+
}`}>
|
| 489 |
+
{copied ? <Icons.Check className="w-4 h-4 text-green-500" /> : <Icons.Copy className="w-4 h-4" />}
|
| 490 |
+
{copied ? 'Copied!' : 'Copy Endpoint'}
|
| 491 |
+
</button>
|
| 492 |
+
</div>
|
| 493 |
+
<p className={`mt-4 text-sm ${subTextClass}`}>
|
| 494 |
+
Send a JSON body <code>{`{"text": "your message"}`}</code> to get a prediction.
|
| 495 |
+
</p>
|
| 496 |
+
</div>
|
| 497 |
+
|
| 498 |
+
{/* Footer */}
|
| 499 |
+
<div className={`text-center pb-8 ${subTextClass} animate-slide-up`} style={{ animationDelay: '0.6s' }}>
|
| 500 |
+
<p className="text-sm flex items-center justify-center gap-2">
|
| 501 |
+
Crafted with <span className="text-red-500 animate-pulse text-lg">β€οΈ</span> by
|
| 502 |
+
<span className="font-bold cursive text-lg gradient-text">@Madara369Uchiha</span>
|
| 503 |
+
</p>
|
| 504 |
+
</div>
|
| 505 |
+
</div>
|
| 506 |
+
</div>
|
| 507 |
+
);
|
| 508 |
+
};
|
| 509 |
+
|
| 510 |
+
const root = ReactDOM.createRoot(document.getElementById('root'));
|
| 511 |
+
root.render(<SpamDexUI />);
|
| 512 |
+
</script>
|
| 513 |
+
</body>
|
| 514 |
+
</html>
|
requirements.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
fastapi==0.104.1
|
| 2 |
+
uvicorn[standard]==0.24.0
|
| 3 |
+
huggingface-hub==0.19.4
|
| 4 |
+
joblib==1.3.2
|
| 5 |
+
scikit-learn==1.7.2
|
| 6 |
+
numpy==1.24.3
|
| 7 |
+
python-multipart==0.0.6
|
| 8 |
+
pydantic==2.5.0
|