-
-
Notifications
You must be signed in to change notification settings - Fork 899
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor scripts/finetune.py into new cli modules
- Loading branch information
Showing
5 changed files
with
123 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
""" | ||
CLI to run inference on a trained model | ||
""" | ||
from pathlib import Path | ||
|
||
import fire | ||
import transformers | ||
|
||
from axolotl.cli import do_inference, load_cfg, print_axolotl_text_art | ||
from axolotl.common.cli import TrainerCliArgs | ||
|
||
|
||
def do_cli(config: Path = Path("examples/"), **kwargs): | ||
# pylint: disable=duplicate-code | ||
print_axolotl_text_art() | ||
parsed_cfg = load_cfg(config, **kwargs) | ||
parser = transformers.HfArgumentParser((TrainerCliArgs)) | ||
parsed_cli_args, _ = parser.parse_args_into_dataclasses( | ||
return_remaining_strings=True | ||
) | ||
parsed_cli_args.inference = True | ||
|
||
do_inference(cfg=parsed_cfg, cli_args=parsed_cli_args) | ||
|
||
|
||
fire.Fire(do_cli) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
""" | ||
CLI to run merge a trained LoRA into a base model | ||
""" | ||
from pathlib import Path | ||
|
||
import fire | ||
import transformers | ||
|
||
from axolotl.cli import do_merge_lora, load_cfg, print_axolotl_text_art | ||
from axolotl.common.cli import TrainerCliArgs | ||
|
||
|
||
def do_cli(config: Path = Path("examples/"), **kwargs): | ||
# pylint: disable=duplicate-code | ||
print_axolotl_text_art() | ||
parsed_cfg = load_cfg(config, **kwargs) | ||
parser = transformers.HfArgumentParser((TrainerCliArgs)) | ||
parsed_cli_args, _ = parser.parse_args_into_dataclasses( | ||
return_remaining_strings=True | ||
) | ||
parsed_cli_args.merge_lora = True | ||
|
||
do_merge_lora(cfg=parsed_cfg, cli_args=parsed_cli_args) | ||
|
||
|
||
fire.Fire(do_cli) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
""" | ||
CLI to shard a trained model into 10GiB chunks | ||
""" | ||
import logging | ||
from pathlib import Path | ||
|
||
import fire | ||
import transformers | ||
|
||
from axolotl.cli import load_cfg, print_axolotl_text_art | ||
from axolotl.common.cli import TrainerCliArgs, load_model_and_tokenizer | ||
from axolotl.utils.dict import DictDefault | ||
|
||
LOG = logging.getLogger("axolotl.scripts") | ||
|
||
|
||
def shard( | ||
*, | ||
cfg: DictDefault, | ||
cli_args: TrainerCliArgs, | ||
): | ||
model, _ = load_model_and_tokenizer(cfg=cfg, cli_args=cli_args) | ||
safe_serialization = cfg.save_safetensors is True | ||
LOG.debug("Re-saving model w/ sharding") | ||
model.save_pretrained(cfg.output_dir, safe_serialization=safe_serialization) | ||
|
||
|
||
def do_cli(config: Path = Path("examples/"), **kwargs): | ||
# pylint: disable=duplicate-code | ||
print_axolotl_text_art() | ||
parsed_cfg = load_cfg(config, **kwargs) | ||
parser = transformers.HfArgumentParser((TrainerCliArgs)) | ||
parsed_cli_args, _ = parser.parse_args_into_dataclasses( | ||
return_remaining_strings=True | ||
) | ||
parsed_cli_args.shard = True | ||
|
||
shard(cfg=parsed_cfg, cli_args=parsed_cli_args) | ||
|
||
|
||
fire.Fire(do_cli) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
""" | ||
CLI to run training on a model | ||
""" | ||
from pathlib import Path | ||
|
||
import fire | ||
import transformers | ||
|
||
from axolotl.cli import load_cfg, load_datasets, print_axolotl_text_art | ||
from axolotl.common.cli import TrainerCliArgs | ||
from axolotl.train import train | ||
|
||
|
||
def do_cli(config: Path = Path("examples/"), **kwargs): | ||
# pylint: disable=duplicate-code | ||
print_axolotl_text_art() | ||
parsed_cfg = load_cfg(config, **kwargs) | ||
parser = transformers.HfArgumentParser((TrainerCliArgs)) | ||
parsed_cli_args, _ = parser.parse_args_into_dataclasses( | ||
return_remaining_strings=True | ||
) | ||
|
||
dataset_meta = load_datasets(cfg=parsed_cfg, cli_args=parsed_cli_args) | ||
if parsed_cli_args.prepare_ds_only: | ||
return | ||
train(cfg=parsed_cfg, cli_args=parsed_cli_args, dataset_meta=dataset_meta) | ||
|
||
|
||
fire.Fire(do_cli) |