utils.py 232 Bytes
Newer Older
Lawrence McAfee's avatar
Retro  
Lawrence McAfee committed
1
2
3
4
5
6
7
8
9
10
# Copyright (c) 2023, NVIDIA CORPORATION.  All rights reserved.

import os

from megatron import get_retro_args


def get_pretraining_workdir():
    args = get_retro_args()
    return os.path.join(args.retro_workdir, "pretraining")