Update README.md
Browse files
README.md
CHANGED
@@ -6,16 +6,53 @@ language:
|
|
6 |
- en
|
7 |
pipeline_tag: text-generation
|
8 |
---
|
9 |
-
# Model Card for Model ID
|
10 |
|
11 |
-
<!-- Provide a quick summary of what the model is/does. -->
|
12 |
|
13 |
|
14 |
-
|
15 |
|
16 |
-
|
17 |
|
18 |
-
## Intended uses & limitations
|
19 |
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
- en
|
7 |
pipeline_tag: text-generation
|
8 |
---
|
|
|
9 |
|
|
|
10 |
|
11 |
|
12 |
+
# GPT-2-dolly
|
13 |
|
14 |
+
**GPT-2-dolly** is an instruction fine-tuned model based on the GPT-2 transformer architecture.
|
15 |
|
|
|
16 |
|
17 |
+
### Benchmark Metrics
|
18 |
+
|
19 |
+
| Metric | Value |
|
20 |
+
|-----------------------|-------|
|
21 |
+
| Avg. | 29.85 |
|
22 |
+
| ARC (25-shot) | 21.76 |
|
23 |
+
| HellaSwag (10-shot) | 30.77 |
|
24 |
+
| MMLU (5-shot) | 24.66 |
|
25 |
+
| TruthfulQA (0-shot) | 42.22 |
|
26 |
+
|
27 |
+
|
28 |
+
We use state-of-the-art [Language Model Evaluation Harness](https://github.com/EleutherAI/lm-evaluation-harness) to run the benchmark tests above, using the same version as the HuggingFace LLM Leaderboard. Please see below for detailed instructions on reproducing benchmark results.
|
29 |
+
|
30 |
+
### Model Details
|
31 |
+
|
32 |
+
* **Trained by**: Luiz G A Alves
|
33 |
+
* **Model type:** **GPT-2-dolly** is an auto-regressive language model based on the GPT-2 transformer architecture.
|
34 |
+
* **Language(s)**: English
|
35 |
+
|
36 |
+
### Prompt Template
|
37 |
+
```
|
38 |
+
### Instruction:
|
39 |
+
|
40 |
+
<prompt> (without the <>)
|
41 |
+
|
42 |
+
### Response:
|
43 |
+
```
|
44 |
+
|
45 |
+
### Training Dataset
|
46 |
+
|
47 |
+
`lgaalves/gpt2-dolly` trained using the Databricks Dolly dataset [`garage-bAInd/Open-Platypus`](https://huggingface.co/datasets/garage-bAInd/Open-Platypus).
|
48 |
+
|
49 |
+
|
50 |
+
### Training Procedure
|
51 |
+
|
52 |
+
`lgaalves/gpt2-dolly` was instruction fine-tuned using LoRA on 1 T4 GPU on Google Colab. It took about 1.5 hours to train it.
|
53 |
+
|
54 |
+
|
55 |
+
# Intended uses, limitations & biases
|
56 |
+
|
57 |
+
You can use the raw model for text generation or fine-tune it to a downstream task. The model was not extensively tested and may produce false information. It contains a lot of unfiltered content from the internet, which is far from neutral.
|
58 |
+
|