|
5 | 5 | FINETUNING_ARGS_NAME = "finetuning_args.json" |
6 | 6 |
|
7 | 7 | LAYERNORM_NAMES = ["norm", "ln_f", "ln_attn", "ln_mlp"] # for LLaMA, BLOOM and Falcon settings |
| 8 | + |
| 9 | +METHODS = ["full", "freeze", "lora"] |
| 10 | + |
| 11 | +SUPPORTED_MODELS = { |
| 12 | + "LLaMA-7B": "huggyllama/llama-7b", |
| 13 | + "LLaMA-13B": "huggyllama/llama-13b", |
| 14 | + "LLaMA-30B": "huggyllama/llama-30b", |
| 15 | + "LLaMA-65B": "huggyllama/llama-65b", |
| 16 | + "BLOOM-560M": "bigscience/bloom-560m", |
| 17 | + "BLOOM-3B": "bigscience/bloom-3b", |
| 18 | + "BLOOM-7B1": "bigscience/bloom-7b1", |
| 19 | + "BLOOMZ-560M": "bigscience/bloomz-560m", |
| 20 | + "BLOOMZ-3B": "bigscience/bloomz-3b", |
| 21 | + "BLOOMZ-7B1-mt": "bigscience/bloomz-7b1-mt", |
| 22 | + "Falcon-7B-Base": "tiiuae/falcon-7b", |
| 23 | + "Falcon-7B-Chat": "tiiuae/falcon-7b-instruct", |
| 24 | + "Falcon-40B-Base": "tiiuae/falcon-40b", |
| 25 | + "Falcon-40B-Chat": "tiiuae/falcon-40b-instruct", |
| 26 | + "Baichuan-7B": "baichuan-inc/Baichuan-7B", |
| 27 | + "Baichuan-13B-Base": "baichuan-inc/Baichuan-13B-Base", |
| 28 | + "Baichuan-13B-Chat": "baichuan-inc/Baichuan-13B-Chat", |
| 29 | + "InternLM-7B-Base": "internlm/internlm-7b", |
| 30 | + "InternLM-7B-Chat": "internlm/internlm-chat-7b" |
| 31 | +} |
0 commit comments