Update README.md
Browse files
README.md
CHANGED
@@ -47,6 +47,17 @@ Dataset of highly filtered and curated question and answer pairs. Release TBD.
|
|
47 |
|
48 |
`lilloukas/Platypus-30B` was instruction fine-tuned using LoRA on 4 A100 80GB. For training details and inference instructions please see the [Platypus-30B](https://github.com/arielnlee/Platypus-30B.git) GitHub repo.
|
49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
## Limitations and bias
|
51 |
|
52 |
The base LLaMA model is trained on various data, some of which may contain offensive, harmful, and biased content that can lead to toxic behavior. See Section 5.1 of the LLaMA paper. We have not performed any studies to determine how fine-tuning on the aforementioned datasets affect the model's behavior and toxicity. Do not treat chat responses from this model as a substitute for human judgment or as a source of truth. Please use responsibly.
|
|
|
47 |
|
48 |
`lilloukas/Platypus-30B` was instruction fine-tuned using LoRA on 4 A100 80GB. For training details and inference instructions please see the [Platypus-30B](https://github.com/arielnlee/Platypus-30B.git) GitHub repo.
|
49 |
|
50 |
+
## Reproducing Evaluation Results
|
51 |
+
Install LM Evaluation Harness
|
52 |
+
```
|
53 |
+
git clone https://github.com/EleutherAI/lm-evaluation-harness
|
54 |
+
cd lm-evaluation-harness
|
55 |
+
pip install -e .
|
56 |
+
```
|
57 |
+
Each task (arc_challenge|25-shot, hellaswag|10-shot, hendrycksTest-*|5-shot, truthfulqa_mc|0-shot) was evaluated on a single A100 80GB GPU, using the following:
|
58 |
+
```
|
59 |
+
python main.py --model hf-causal-experimental --model_args pretrained=lilloukas/Platypus-30B --tasks <TASK> --batch_size 1 --no_cache --write_out --output_path results/Platypus-30B/<TASK>.json --device cuda --num_fewshot <NUM_FEWSHOT>
|
60 |
+
```
|
61 |
## Limitations and bias
|
62 |
|
63 |
The base LLaMA model is trained on various data, some of which may contain offensive, harmful, and biased content that can lead to toxic behavior. See Section 5.1 of the LLaMA paper. We have not performed any studies to determine how fine-tuning on the aforementioned datasets affect the model's behavior and toxicity. Do not treat chat responses from this model as a substitute for human judgment or as a source of truth. Please use responsibly.
|