# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import argparse import importlib import os # import sys # sys.path.insert(0, "/mnt/data/sftp/data/vla_intern/workspace/binh/dreamgen/dreamgen/cosmos_predict2") # sys.path.insert(0, "/home/binhng/conda_setup/miniconda3/envs/dg2/lib/python3.10/site-packages") from loguru import logger as logging from imaginaire.config import Config, pretty_print_overrides from imaginaire.lazy_config import instantiate from imaginaire.lazy_config.lazy import LazyConfig from imaginaire.utils import distributed from imaginaire.utils.config_helper import get_config_module, override @logging.catch(reraise=True) def launch(config: Config, args: argparse.Namespace) -> None: # Need to initialize the distributed environment before calling config.validate() because it tries to synchronize # a buffer across ranks. If you don't do this, then you end up allocating a bunch of buffers on rank 0, and also that # check doesn't actually do anything. distributed.init() # Check that the config is valid config.validate() # Freeze the config so developers don't change it during training. config.freeze() # type: ignore trainer = config.trainer.type(config) # Create the model model = instantiate(config.model) # Create the dataloaders. dataloader_train = instantiate(config.dataloader_train) dataloader_val = instantiate(config.dataloader_val) # Start training trainer.train( model, dataloader_train, dataloader_val, ) if __name__ == "__main__": # Usage: torchrun --nproc_per_node=1 -m scripts.train --config=cosmos_predict2/configs/base/config.py -- experiments=predict2_video2world_training_2b_cosmos_nemo_assets # Get the config file from the input arguments. parser = argparse.ArgumentParser(description="Training") parser.add_argument("--config", help="Path to the config file", required=True) parser.add_argument( "opts", help=""" Modify config options at the end of the command. For Yacs configs, use space-separated "PATH.KEY VALUE" pairs. For python-based LazyConfig, use "path.key=value". """.strip(), default=None, nargs=argparse.REMAINDER, ) parser.add_argument( "--dryrun", action="store_true", help="Do a dry run without training. Useful for debugging the config.", ) args = parser.parse_args() config_module = get_config_module(args.config) config = importlib.import_module(config_module).make_config() config = override(config, args.opts) if args.dryrun: logging.info( "Config:\n" + config.pretty_print(use_color=True) + "\n" + pretty_print_overrides(args.opts, use_color=True) ) os.makedirs(config.job.path_local, exist_ok=True) LazyConfig.save_yaml(config, f"{config.job.path_local}/config.yaml") print(f"{config.job.path_local}/config.yaml") else: # Launch the training job. launch(config, args)