devranx commited on
Commit
262819f
Β·
1 Parent(s): c2f5560

Prepare for release: Update README with detailed features and live link

Browse files
Files changed (1) hide show
  1. README.md +60 -8
README.md CHANGED
@@ -10,13 +10,65 @@ pinned: false
10
 
11
  # PRISM 2.0 - Advanced AI Content Analysis
12
 
13
- Prism is a powerful AI-driven application for analyzing images and documents.
14
 
15
- ## Features
16
- - **Single Analysis**: Detailed breakdown of individual images.
17
- - **Batch Analysis**: Process multiple files at once.
18
- - **AI Models**: Powered by InternVL, EasyOCR, and CLIP.
19
- - **Interactive UI**: Beautiful React-based interface with 3D animations.
20
 
21
- ## Deployment
22
- This Space is deployed using Docker.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  # PRISM 2.0 - Advanced AI Content Analysis
12
 
13
+ [![Live Demo](https://img.shields.io/badge/Hugging%20Face-Live%20Demo-blue)](https://devranx-prism2-0.hf.space/)
14
 
15
+ Prism is a state-of-the-art AI application designed for deep content analysis of images and documents. It leverages advanced multi-modal models to ensure content compliance, safety, and quality control.
 
 
 
 
16
 
17
+ ## 🌟 Features
18
+
19
+ ### πŸ” Advanced Visual Analysis
20
+ - **Ribbon & Layout Detection**: precision detection of visual elements.
21
+ - **Image Quality Assessment**: Checks for blur, resolution, and pixel variance.
22
+ - **GNC (General Non-Compliance) Checks**: Identifies unauthorized visual gestures or icons.
23
+
24
+ ### πŸ“ Text & Content Intelligence
25
+ - **Tagline Verification**: content and legibility analysis.
26
+ - **Risk Assessment**: Detects high-risk content, gambling references, and illegal activities.
27
+ - **Competitor Analysis**: Identifies competitor brand mentions.
28
+ - **Sensitive Content Shield**: Filters inappropriate, religious, or violent imagery.
29
+
30
+ ### ⚑ Powerful Capabilities
31
+ - **Single & Batch Processing**: Analyze one image or thousands at once.
32
+ - **Interactive Reports**: Detailed breakdown of passes, fails, and specific issues.
33
+ - **High-Performance Backbone**: Powered by **InternVL2.5-1B-MPO** for vision-language understanding and **EasyOCR** for robust text extraction.
34
+
35
+ ## πŸš€ Live Demo
36
+ Experience Prism 2.0 live on Hugging Face Spaces:
37
+ πŸ‘‰ **[https://devranx-prism2-0.hf.space/](https://devranx-prism2-0.hf.space/)**
38
+
39
+ ## πŸ› οΈ Tech Stack
40
+ - **Frontend**: React (Vite) with a premium, responsive UI.
41
+ - **Backend**: Flask (Python) for API handling and orchestration.
42
+ - **AI Models**:
43
+ - `InternVL2.5-1B-MPO` (Vision Language Model)
44
+ - `EasyOCR` (Optical Character Recognition)
45
+ - `CLIP` (Semantic Understanding)
46
+ - **Deployment**: Dockerized for seamless scalability.
47
+
48
+ ## πŸ“¦ Installation (Local)
49
+
50
+ 1. **Clone the repository**
51
+ ```bash
52
+ git clone https://github.com/devsingh02/PRISM.git
53
+ cd PRISM
54
+ ```
55
+
56
+ 2. **Set up Python Environment**
57
+ ```bash
58
+ python -m venv .venv
59
+ source .venv/bin/activate # On Windows: .venv\Scripts\activate
60
+ pip install -r requirements.txt
61
+ ```
62
+
63
+ 3. **Run the Application**
64
+ ```bash
65
+ python app.py
66
+ ```
67
+ The app will run at `http://localhost:7860`.
68
+
69
+ ## 🐳 Docker Support
70
+ Prism is fully containerized.
71
+ ```bash
72
+ docker build -t prism-app .
73
+ docker run -p 7860:7860 prism-app
74
+ ```