llama-factory / src /train_bash.py
officialhimanshu595's picture
Upload folder using huggingface_hub
20076b6 verified
raw
history blame contribute delete
No virus
156 Bytes
from llmtuner import run_exp
def main():
run_exp()
def _mp_fn(index):
# For xla_spawn (TPUs)
main()
if __name__ == "__main__":
main()