139 lines
4.3 KiB
Python
139 lines
4.3 KiB
Python
"""
|
|
E2E tests for lora llama
|
|
"""
|
|
|
|
import unittest
|
|
|
|
from axolotl.common.datasets import load_datasets
|
|
from axolotl.train import train
|
|
from axolotl.utils.config import normalize_config, validate_config
|
|
from axolotl.utils.dict import DictDefault
|
|
|
|
from .utils import (
|
|
check_model_output_exists,
|
|
check_tensorboard_loss_decreased,
|
|
with_temp_dir,
|
|
)
|
|
|
|
|
|
class TestPhi(unittest.TestCase):
|
|
"""
|
|
Test case for Phi2 models
|
|
"""
|
|
|
|
@with_temp_dir
|
|
def test_phi_ft(self, temp_dir):
|
|
cfg = DictDefault(
|
|
{
|
|
"base_model": "axolotl-ai-co/tiny-phi-64m",
|
|
"model_type": "AutoModelForCausalLM",
|
|
"tokenizer_type": "AutoTokenizer",
|
|
"sequence_len": 2048,
|
|
"sample_packing": False,
|
|
"load_in_8bit": False,
|
|
"adapter": None,
|
|
"val_set_size": 0.02,
|
|
"special_tokens": {
|
|
"pad_token": "<|endoftext|>",
|
|
},
|
|
"datasets": [
|
|
{
|
|
"path": "mhenrichsen/alpaca_2k_test",
|
|
"type": "alpaca",
|
|
},
|
|
],
|
|
"dataset_shard_num": 10,
|
|
"dataset_shard_idx": 0,
|
|
"num_epochs": 1,
|
|
"micro_batch_size": 4,
|
|
"gradient_accumulation_steps": 1,
|
|
"output_dir": temp_dir,
|
|
"learning_rate": 2e-4,
|
|
"optimizer": "adamw_torch_fused",
|
|
"lr_scheduler": "cosine",
|
|
"flash_attention": True,
|
|
"max_steps": 50,
|
|
"warmup_steps": 5,
|
|
"logging_steps": 1,
|
|
"save_steps": 50,
|
|
"eval_steps": 50,
|
|
"bf16": "auto",
|
|
"save_first_step": False,
|
|
"use_tensorboard": True,
|
|
"seed": 42,
|
|
}
|
|
)
|
|
cfg = validate_config(cfg)
|
|
normalize_config(cfg)
|
|
dataset_meta = load_datasets(cfg=cfg)
|
|
|
|
train(cfg=cfg, dataset_meta=dataset_meta)
|
|
check_model_output_exists(temp_dir, cfg)
|
|
check_tensorboard_loss_decreased(
|
|
temp_dir + "/runs",
|
|
initial_window=5,
|
|
final_window=5,
|
|
max_initial=5.0,
|
|
max_final=4.7,
|
|
)
|
|
|
|
@with_temp_dir
|
|
def test_phi_qlora(self, temp_dir):
|
|
cfg = DictDefault(
|
|
{
|
|
"base_model": "axolotl-ai-co/tiny-phi-64m",
|
|
"model_type": "AutoModelForCausalLM",
|
|
"tokenizer_type": "AutoTokenizer",
|
|
"sequence_len": 2048,
|
|
"sample_packing": False,
|
|
"load_in_4bit": True,
|
|
"adapter": "qlora",
|
|
"lora_r": 64,
|
|
"lora_alpha": 32,
|
|
"lora_dropout": 0.05,
|
|
"lora_target_linear": True,
|
|
"val_set_size": 0.02,
|
|
"special_tokens": {
|
|
"pad_token": "<|endoftext|>",
|
|
},
|
|
"datasets": [
|
|
{
|
|
"path": "mhenrichsen/alpaca_2k_test",
|
|
"type": "alpaca",
|
|
},
|
|
],
|
|
"dataset_shard_num": 10,
|
|
"dataset_shard_idx": 0,
|
|
"num_epochs": 1,
|
|
"micro_batch_size": 4,
|
|
"gradient_accumulation_steps": 1,
|
|
"output_dir": temp_dir,
|
|
"learning_rate": 2e-4,
|
|
"optimizer": "paged_adamw_8bit",
|
|
"lr_scheduler": "cosine",
|
|
"flash_attention": True,
|
|
"max_steps": 50,
|
|
"warmup_steps": 5,
|
|
"logging_steps": 1,
|
|
"save_steps": 50,
|
|
"eval_steps": 50,
|
|
"bf16": "auto",
|
|
"save_first_step": False,
|
|
"use_tensorboard": True,
|
|
"seed": 42,
|
|
}
|
|
)
|
|
cfg = validate_config(cfg)
|
|
normalize_config(cfg)
|
|
dataset_meta = load_datasets(cfg=cfg)
|
|
|
|
train(cfg=cfg, dataset_meta=dataset_meta)
|
|
check_model_output_exists(temp_dir, cfg)
|
|
check_tensorboard_loss_decreased(
|
|
temp_dir + "/runs",
|
|
initial_window=5,
|
|
final_window=5,
|
|
max_initial=5.0,
|
|
max_final=4.7,
|
|
)
|