mbayan commited on
Commit
b88a6ca
·
verified ·
1 Parent(s): 03a9a2b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -0
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