Create README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
| 1 |
-
-
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 🤗 VibeCheck-AI
|
| 2 |
+
|
| 3 |
+
VibeCheck-AI is a Hugging Face–powered NLP model that classifies text sentiment into:
|
| 4 |
+
- Positive
|
| 5 |
+
- Neutral
|
| 6 |
+
- Negative
|
| 7 |
+
|
| 8 |
+
Built for learning, hacking, and extending.
|
| 9 |
+
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
## 🚀 Setup
|
| 13 |
+
|
| 14 |
+
```bash
|
| 15 |
+
git clone https://github.com/yourname/vibecheck-ai
|
| 16 |
+
cd vibecheck-ai
|
| 17 |
+
pip install -r requirements.txt
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
# 🏋️ Train the Model
|
| 21 |
+
|
| 22 |
+
```
|
| 23 |
+
python train.py
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
Model will be saved to ./model
|
| 27 |
+
|
| 28 |
+
# 🔮 Run Inference
|
| 29 |
+
```
|
| 30 |
+
python predict.py
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
Type text and get the vibe instantly.
|