mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-08-05 05:02:50 +08:00
15 lines
171 B
Python
15 lines
171 B
Python
from llmtuner.train.tuner import run_exp
|
|
|
|
|
|
def main():
|
|
run_exp()
|
|
|
|
|
|
def _mp_fn(index):
|
|
# For xla_spawn (TPUs)
|
|
run_exp()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|