Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SENTRIX // Neural Sentiment Engine
|
| 2 |
+
|
| 3 |
+
**SENTRIX** is a high-performance, mobile-first sentiment analysis dashboard. It utilizes a distributed hybrid architecture, combining a globally accessible Progressive Web App (PWA) with a dynamically hardware-accelerated local inference node.
|
| 4 |
+
|
| 5 |
+

|
| 6 |
+

|
| 7 |
+

|
| 8 |
+

|
| 9 |
+
|
| 10 |
+
## ποΈ System Architecture
|
| 11 |
+
|
| 12 |
+
SENTRIX operates across three decoupled layers. The model weights are hosted in the cloud, the UI is served globally, and the mathematical inference runs locally on the host machine.
|
| 13 |
+
|
| 14 |
+
```text
|
| 15 |
+
[ Layer 1: Storage ] [ Layer 2: Frontend ] [ Layer 3: Backend ]
|
| 16 |
+
Hugging Face Hub GitHub Pages Local Host (PC/Mac)
|
| 17 |
+
(Model Weights) (Web Interface) (Flask Inference Node)
|
| 18 |
+
β β β
|
| 19 |
+
β 1. Downloads weights β 3. Sends POST /analyze β
|
| 20 |
+
β on first startup β via local network IP β
|
| 21 |
+
βΌ βΌ β
|
| 22 |
+
ββββββββββββββ ββββββββββββββ βββββββββΌβββββββ
|
| 23 |
+
β prem79/ β β sentrix_ β β app.py β
|
| 24 |
+
β sentrix_ ββββββββββββββββΊβ ML_IA ββββββββββββββββΊβ (RoBERTa V2) β
|
| 25 |
+
β roberta_V2 β β (UI) β β β
|
| 26 |
+
ββββββββββββββ ββββββββββββββ ββββββββββββββββ
|
| 27 |
+
β
|
| 28 |
+
β 2. Caches model
|
| 29 |
+
β in memory
|
| 30 |
+
βΌ
|