Spaces:
Running
Running
File size: 6,189 Bytes
6c914fc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
# π DeepSeek-OCR Integration Guide
## β
What's Been Added
I've integrated **DeepSeek-OCR** into your AI Legal Chatbot for advanced document processing!
---
## π New Features
### 1. **OCR-Enhanced Document Validator**
- Extract text from scanned documents
- Process images of contracts and legal forms
- Automatic text recognition
- Legal document analysis
### 2. **New File Created**
**`integrated_chatbot_with_ocr.py`**
- All 7 AI modes
- Rotating logos
- DeepSeek-OCR integration
- Enhanced Document Validator mode
---
## π― How OCR Works
### Document Validator Mode Now Includes:
1. **Text Extraction** - Upload scanned document images
2. **Auto-Processing** - DeepSeek-OCR extracts text automatically
3. **Legal Analysis** - AI analyzes the extracted content
4. **Validation** - Checks for completeness and legal terms
---
## π Updated Requirements
New dependencies added to `requirements.txt`:
```
transformers>=4.35.0 # For DeepSeek-OCR
torch>=2.0.0 # Required by transformers
pillow>=10.0.0 # Image processing
```
---
## π Deployment Options
### Option 1: Deploy OCR Version (Most Advanced) β
```bash
cd ProVerbS_LaW_mAiN_PAgE
cp integrated_chatbot_with_ocr.py app.py
python deploy_to_hf.py
```
**Includes:**
- β
7 AI modes
- β
3 rotating logos
- β
OCR document processing
- β
DeepSeek-OCR integration
### Option 2: Deploy Without OCR
```bash
cd ProVerbS_LaW_mAiN_PAgE
cp integrated_chatbot_with_logos.py app.py
python deploy_to_hf.py
```
**Includes:**
- β
7 AI modes
- β
3 rotating logos
- β No OCR (lighter, faster)
---
## π¨ What Changed
### Document Validator Mode - Before:
- Text-based document analysis only
- Manual text paste required
### Document Validator Mode - Now: β
- β
Upload scanned document images
- β
Automatic text extraction (OCR)
- β
Image format support (JPG, PNG, PDF)
- β
Legal term detection
- β
Enhanced analysis
---
## π‘ Use Cases
### 1. Scanned Contracts
Upload a photo of a contract β OCR extracts text β AI analyzes
### 2. Legal Forms
Upload scanned legal forms β Auto-extract β Validate completeness
### 3. Historical Documents
Process old/scanned legal documents β Extract β Analyze
### 4. Mobile Photos
Take phone photo of document β Upload β Get instant analysis
---
## π§ Technical Details
### DeepSeek-OCR Model:
- **Model**: `deepseek-ai/DeepSeek-OCR`
- **Type**: Image-text-to-text pipeline
- **Capability**: Extract text from document images
- **Accuracy**: High-quality OCR for legal documents
### Integration Points:
```python
# OCR Pipeline
self.ocr_pipeline = pipeline(
"image-text-to-text",
model="deepseek-ai/DeepSeek-OCR",
trust_remote_code=True
)
# Process document
def process_document_with_ocr(self, image_path: str) -> str:
result = self.ocr_pipeline(image_path)
extracted_text = result[0]['generated_text']
return extracted_text
```
---
## β οΈ Important Notes
### Model Size:
- DeepSeek-OCR is a **large model**
- Requires significant GPU/CPU resources
- First load may take 1-2 minutes on HF Spaces
### Hardware Recommendations:
- **Free Tier**: Works but slower
- **CPU Upgrade**: Better performance
- **T4 GPU**: Best performance for OCR
### Fallback:
- If OCR model fails to load, app still works
- Document Validator mode functions without OCR
- Error messages guide users
---
## π Feature Comparison
| Feature | Without OCR | With OCR β |
|---------|-------------|-------------|
| Text analysis | β
| β
|
| Image upload | β | β
|
| Scanned docs | β | β
|
| Auto text extract | β | β
|
| Legal term detection | β
| β
Enhanced |
| Model size | Smaller | Larger |
| Load time | Faster | Slower (first load) |
| HF Hardware | Free tier OK | Upgrade recommended |
---
## π§ͺ Testing OCR Feature
### Local Preview:
```bash
cd ProVerbS_LaW_mAiN_PAgE
python integrated_chatbot_with_ocr.py
```
### Test Steps:
1. Go to "AI Legal Chatbot" tab
2. Select "Document Validator" mode
3. Upload a document image
4. Watch OCR extract text
5. Get AI analysis
---
## π Version History
### Version 1.0.0:
- 7 AI modes
- Rotating logos
- Text-based analysis
### Version 1.1.0 (Current): β
- β
All v1.0 features
- β
DeepSeek-OCR integration
- β
Image document processing
- β
Enhanced Document Validator
---
## π» Code Example
### Using OCR in Document Validator:
```python
# User uploads scanned contract image
uploaded_image = "contract_scan.jpg"
# OCR extracts text
extracted_text = chatbot.process_document_with_ocr(uploaded_image)
# AI analyzes extracted text
analysis = validate_document(extracted_text)
# Returns: Legal analysis of the contract
```
---
## π User Instructions
When using Document Validator mode:
1. **Select Mode**: Choose "Document Validator with OCR"
2. **Upload Image**: Use file upload for scanned documents
3. **Wait**: OCR processes image (may take 5-10 seconds)
4. **Review**: Check extracted text
5. **Analyze**: AI provides validation feedback
---
## π Troubleshooting
### Issue: OCR model won't load
**Solution**: Model requires transformers and torch
```bash
pip install transformers torch pillow
```
### Issue: Out of memory on HF Spaces
**Solution**: Upgrade to CPU Upgrade or T4 Small hardware tier
### Issue: OCR extraction inaccurate
**Solutions**:
- Ensure image is clear and high-resolution
- Image should be well-lit
- Text should be legible
- Try different image format (PNG vs JPG)
---
## π― Deployment Recommendation
### For Most Users: β
**Deploy OCR version** - Full features including document scanning
### For Basic Use:
**Deploy without OCR** - Faster, lighter, still fully functional
---
## β
Ready to Deploy with OCR?
### Quick Deploy:
```bash
cd ProVerbS_LaW_mAiN_PAgE
cp integrated_chatbot_with_ocr.py app.py
python deploy_to_hf.py
```
### Preview First:
```bash
python integrated_chatbot_with_ocr.py
# Test at http://localhost:7860
```
---
**Your Platform Now Has:**
- β
7 Specialized AI Modes
- β
3 Rotating Custom Logos
- β
OCR Document Processing β NEW!
- β
Complete Legal AI Solution
**Ready to deploy this advanced version?** π
|