Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,14 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
---
|
4 |
+
|
5 |
+
|
6 |
+
The TunisianSentimentAnalysis dataset has been collected from various sources related to Tunisian sentiment analysis. I used this dataset to fine-tune the LLaMa 3.2 1B-Instruct model. You can access the model [hedhoud12/Llama-3.2-1B-Instruct_Tunisian_sentiment_analysis](https://huggingface.co/hedhoud12/Llama-3.2-1B-Instruct_Tunisian_sentiment_analysis)
|
7 |
+
|
8 |
+
To download the dataset, use:
|
9 |
+
```bash
|
10 |
+
from datasets import load_dataset
|
11 |
+
|
12 |
+
dataset = load_dataset("hedhoud12/TunisianSentimentAnalysis")
|
13 |
+
|
14 |
+
```
|