finetuning.py 266 B

12345678
  1. # Copyright (c) Meta Platforms, Inc. and affiliates.
  2. # This software may be used and distributed according to the terms of the Llama 2 Community License Agreement.
  3. import fire
  4. from llama_recipes.finetuning import main
  5. if __name__ == "__main__":
  6. fire.Fire(main)