Update README.md
Browse files
README.md
CHANGED
@@ -14,6 +14,11 @@ tags:
|
|
14 |
---
|
15 |
# Sentiment Analysis from Scratch (LSTM + Attention)
|
16 |
|
17 |
-
This
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
14 |
---
|
15 |
# Sentiment Analysis from Scratch (LSTM + Attention)
|
16 |
|
17 |
+
This is a sentiment analysis model built entirely from scratch using a bidirectional LSTM architecture with an attention mechanism. The tokenizer is also trained from scratch on the dataset.
|
18 |
|
19 |
+
## Example Use
|
20 |
+
Try it out here 👇👇
|
21 |
+
|
22 |
+
```python
|
23 |
+
Input: "I'm so happy to see this project live!"
|
24 |
+
Output: Positive (0.95)
|