Improve model card: Add library name and clarify license
Browse filesThis PR improves the model card by:
- Adding the `library_name: transformers` metadata, clarifying which library is used.
- Specifying the license as "other" and adding a note explaining that JudgeLM is based on LLaMA and should be used under LLaMA's license. This provides crucial licensing information.
The model card already contains links to the paper, code repository, and project demo.
This ensures better discoverability and usability of the JudgeLM model on the Hugging Face Hub.
README.md
CHANGED
@@ -1,16 +1,17 @@
|
|
1 |
-
|
2 |
---
|
3 |
-
inference: false
|
4 |
language:
|
5 |
- en
|
6 |
tags:
|
7 |
- instruction-finetuning
|
|
|
8 |
pretty_name: JudgeLM-100K
|
|
|
|
|
9 |
task_categories:
|
10 |
- text-generation
|
|
|
11 |
---
|
12 |
|
13 |
-
|
14 |
<br>
|
15 |
|
16 |
# JudgeLM Model Card
|
@@ -21,7 +22,7 @@ JudgeLM is a judge model trained by fine-tuning Vicuna on JudgeLM-100K dataset.
|
|
21 |
|
22 |
- **Developed by:** [HUST](https://english.hust.edu.cn/), [BAAI](https://www.baai.ac.cn/english.html)
|
23 |
- **Model type:** An auto-regressive language model based on the transformer architecture.
|
24 |
-
- **License:**
|
25 |
- **Finetuned from model:** [Vicuna](https://vicuna.lmsys.org).
|
26 |
|
27 |
### Model Sources
|
@@ -52,6 +53,11 @@ JudgeLM is evaluated on JudgeLM val set, with judgements produced by GPT-4 teach
|
|
52 |
|
53 |
## Additional Information
|
54 |
|
|
|
|
|
|
|
|
|
|
|
55 |
### Citation Information
|
56 |
|
57 |
```
|
|
|
|
|
1 |
---
|
|
|
2 |
language:
|
3 |
- en
|
4 |
tags:
|
5 |
- instruction-finetuning
|
6 |
+
inference: false
|
7 |
pretty_name: JudgeLM-100K
|
8 |
+
pipeline_tag: text-generation
|
9 |
+
library_name: transformers
|
10 |
task_categories:
|
11 |
- text-generation
|
12 |
+
license: other
|
13 |
---
|
14 |
|
|
|
15 |
<br>
|
16 |
|
17 |
# JudgeLM Model Card
|
|
|
22 |
|
23 |
- **Developed by:** [HUST](https://english.hust.edu.cn/), [BAAI](https://www.baai.ac.cn/english.html)
|
24 |
- **Model type:** An auto-regressive language model based on the transformer architecture.
|
25 |
+
- **License:** other (See License Note below)
|
26 |
- **Finetuned from model:** [Vicuna](https://vicuna.lmsys.org).
|
27 |
|
28 |
### Model Sources
|
|
|
53 |
|
54 |
## Additional Information
|
55 |
|
56 |
+
### License Note
|
57 |
+
|
58 |
+
JudgeLM is based on LLaMA and should be used under LLaMA's [model license](https://github.com/facebookresearch/llama/blob/main/LICENSE).
|
59 |
+
|
60 |
+
|
61 |
### Citation Information
|
62 |
|
63 |
```
|