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