mirror of
https://github.com/SakanaAI/doc-to-lora.git
synced 2026-07-23 17:01:04 +02:00
84 lines
2.1 KiB
Python
84 lines
2.1 KiB
Python
import logging
|
|
|
|
from ctx_to_lora.eval_utils import (
|
|
run_eval,
|
|
)
|
|
|
|
logger = logging.getLogger()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import argparse
|
|
|
|
parser = argparse.ArgumentParser(description="Evaluate a checkpoint")
|
|
parser.add_argument(
|
|
"--model_name_or_path",
|
|
type=str,
|
|
default=None,
|
|
help="Evaluate a base model from HuggingFace Hub, without loading checkpoint",
|
|
)
|
|
parser.add_argument(
|
|
"--checkpoint_path",
|
|
type=str,
|
|
default=None,
|
|
help="Path to the checkpoint to evaluate",
|
|
)
|
|
parser.add_argument(
|
|
"--split",
|
|
type=str,
|
|
choices=["validation", "test"],
|
|
default="validation",
|
|
help="Which split to evaluate on",
|
|
)
|
|
parser.add_argument(
|
|
"--datasets",
|
|
type=str,
|
|
nargs="+",
|
|
help=(
|
|
"Specific datasets to evaluate on."
|
|
"If not provided, uses default from args.yaml"
|
|
),
|
|
)
|
|
parser.add_argument(
|
|
"--eval_batch_size",
|
|
type=int,
|
|
default=8,
|
|
help="Eval batch size for teacher forcing",
|
|
)
|
|
parser.add_argument(
|
|
"--eval_batch_size_gen",
|
|
type=int,
|
|
default=32,
|
|
help="Eval batch size for generation",
|
|
)
|
|
parser.add_argument(
|
|
"--remove_context",
|
|
action="store_true",
|
|
help="Remove context when evaluating the base model.",
|
|
)
|
|
|
|
cli_args = vars(parser.parse_args())
|
|
# setup_logging(output_dir, debug=os.getenv("DEBUG", False))
|
|
|
|
eval_batch_size_gen = cli_args.pop("eval_batch_size_gen")
|
|
eval_batch_size = cli_args.pop("eval_batch_size")
|
|
run_eval(
|
|
**cli_args,
|
|
# cli_args.checkpoint_path,
|
|
# cli_args.model_name_or_path,
|
|
# cli_args.eval_batch_size,
|
|
# args,
|
|
# split=cli_args.split,
|
|
eval_batch_size=eval_batch_size,
|
|
generative=False,
|
|
)
|
|
run_eval(
|
|
**cli_args,
|
|
# cli_args.checkpoint_path,
|
|
# cli_args.model_name_or_path,
|
|
# cli_args.eval_batch_size_gen,
|
|
# args,
|
|
# split=cli_args.split,
|
|
eval_batch_size=eval_batch_size_gen,
|
|
generative=True,
|
|
)
|