fix tracker + recall/precision logging + add generative adapter

This commit is contained in:
51616 2025-11-10 16:54:25 +09:00
parent 2ed418bc22
commit d6c7e3ab03
3 changed files with 26 additions and 6 deletions

View file

@ -152,6 +152,11 @@ if __name__ == "__main__":
action="store_true",
help="Flip the order of context and input",
)
parser.add_argument(
"--use_generative_adapter",
action="store_true",
help="Use generative adapter for evaluation",
)
cli_args = vars(parser.parse_args())