Update README.md
Browse files
README.md
CHANGED
|
@@ -25,6 +25,15 @@ The dataset is released as part of our research:
|
|
| 25 |
> **Can Large Language Models Predict the Outcome of Judicial Decisions?**
|
| 26 |
> *Mohamed Bayan Kmainasi, Ali Ezzat Shahroor, and Amani Al-Ghraibah*
|
| 27 |
> [arXiv:2501.09768](https://arxiv.org/abs/2501.09768)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
## Dataset Details
|
| 30 |
|
|
|
|
| 25 |
> **Can Large Language Models Predict the Outcome of Judicial Decisions?**
|
| 26 |
> *Mohamed Bayan Kmainasi, Ali Ezzat Shahroor, and Amani Al-Ghraibah*
|
| 27 |
> [arXiv:2501.09768](https://arxiv.org/abs/2501.09768)
|
| 28 |
+
## Model Usage
|
| 29 |
+
```python
|
| 30 |
+
|
| 31 |
+
To use the model
|
| 32 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 33 |
+
|
| 34 |
+
tokenizer = AutoTokenizer.from_pretrained("mbayan/Llama-3.2-3b-ArLJP")
|
| 35 |
+
model = AutoModelForCausalLM.from_pretrained("mbayan/Llama-3.2-3b-ArLJP")
|
| 36 |
+
```
|
| 37 |
|
| 38 |
## Dataset Details
|
| 39 |
|