Thank you! We'll be in touch ASAP.
Something went wrong, please try again or contact us directly at contact@dagshub.com
Deci-AI:master
deci-ai:feature/ALG-287_refactor-ssd
import os import pkg_resources try: PKG_CHECKPOINTS_DIR = pkg_resources.resource_filename("checkpoints", "") except Exception: os.makedirs(os.path.join(os.getcwd(), "checkpoints"), exist_ok=True) PKG_CHECKPOINTS_DIR = os.path.join(os.getcwd(), "checkpoints") DDP_LOCAL_RANK = int(os.getenv("LOCAL_RANK", default=-1)) EXTRA_ARGS = [] INIT_TRAINER = False
Press p or to see the previous file or, n or to see the next file