upload model
Browse files- README.md +69 -0
- adapter_config.json +16 -0
- adapter_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
#### Current Training Steps: 45000
|
6 |
+
|
7 |
+
|
8 |
+
This repo contains a low-rank adapter (LoRA) for Bloom-7b1
|
9 |
+
fit on the [Stanford-Alpaca-52k](https://github.com/tatsu-lab/stanford_alpaca)
|
10 |
+
and [databricks-dolly-15k](https://github.com/databrickslabs/dolly/tree/master/data) data in 52 languages.
|
11 |
+
|
12 |
+
### Dataset Creation
|
13 |
+
|
14 |
+
1. English Instructions: The English instuctions are obtained from [alpaca-52k](https://github.com/tatsu-lab/stanford_alpaca), and [dolly-15k](https://github.com/databrickslabs/dolly/tree/master/data).
|
15 |
+
2. Instruction Translation: The instructions (and inputs) are translated into the target languages using Google Translation API (conducted on April 2023).
|
16 |
+
3. Output Generation: We generate output from `gpt-3.5-turbo` for each language (conducted on April 2023).
|
17 |
+
|
18 |
+
<h3 align="center">
|
19 |
+
<img src="https://raw.githubusercontent.com/fajri91/eval_picts/master/BactrianX_dataset.jpg" width="950" align="center">
|
20 |
+
</h3>
|
21 |
+
|
22 |
+
### Training Parameters
|
23 |
+
|
24 |
+
The code for training the model is provided in our [github](https://github.com/mbzuai-nlp/Bactrian-X), which is adapted from [Alpaca-LoRA](https://github.com/tloen/alpaca-lora).
|
25 |
+
This version of the weights was trained with the following hyperparameters:
|
26 |
+
|
27 |
+
|
28 |
+
- Epochs: 10
|
29 |
+
- Batch size: 128
|
30 |
+
- Cutoff length: 512
|
31 |
+
- Learning rate: 3e-4
|
32 |
+
- Lora _r_: 64
|
33 |
+
- Lora target modules: q_proj, k_proj, v_proj, o_proj
|
34 |
+
|
35 |
+
|
36 |
+
That is:
|
37 |
+
|
38 |
+
```
|
39 |
+
python finetune.py \
|
40 |
+
--base_model='bigscience/bloom-7b1' \
|
41 |
+
--num_epochs=10 \
|
42 |
+
--batch_size=128 \
|
43 |
+
--cutoff_len=512 \
|
44 |
+
--group_by_length \
|
45 |
+
--output_dir='./bactrian-x-bloom-7b1-lora' \
|
46 |
+
--lora_target_modules='q_proj,k_proj,v_proj,o_proj' \
|
47 |
+
--lora_r=64 \
|
48 |
+
--micro_batch_size=32
|
49 |
+
```
|
50 |
+
|
51 |
+
Instructions for running it can be found at https://github.com/MBZUAI-nlp/Bactrian-X.
|
52 |
+
|
53 |
+
### Discussion of Biases
|
54 |
+
|
55 |
+
(1) Translation bias; (2) Potential English-culture bias in the translated dataset.
|
56 |
+
|
57 |
+
|
58 |
+
### Citation Information
|
59 |
+
|
60 |
+
```
|
61 |
+
@misc{bactrian,
|
62 |
+
author = {Haonan Li and Fajri Koto and Minghao Wu and Alham Fikri Aji and Timothy Baldwin},
|
63 |
+
title = {Bactrian-X: A Multilingual Replicable Instruction-Following Model},
|
64 |
+
year = {2023},
|
65 |
+
publisher = {GitHub},
|
66 |
+
journal = {GitHub repository},
|
67 |
+
howpublished = {\url{https://github.com/MBZUAI-nlp/Bactrian-X}},
|
68 |
+
}
|
69 |
+
```
|
adapter_config.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"base_model_name_or_path": "bigscience/bloom-7b1",
|
3 |
+
"bias": "none",
|
4 |
+
"fan_in_fan_out": false,
|
5 |
+
"inference_mode": true,
|
6 |
+
"init_lora_weights": true,
|
7 |
+
"lora_alpha": 16,
|
8 |
+
"lora_dropout": 0.05,
|
9 |
+
"modules_to_save": null,
|
10 |
+
"peft_type": "LORA",
|
11 |
+
"r": 64,
|
12 |
+
"target_modules": [
|
13 |
+
"query_key_value"
|
14 |
+
],
|
15 |
+
"task_type": "CAUSAL_LM"
|
16 |
+
}
|
adapter_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1514278c059c70f3cbfc300a3a9908bb2aa9eafd8b0a8da8b5593e64b90262d2
|
3 |
+
size 125851429
|