diff --git a/README.md b/README.md index b9dadb0a..25456bb6 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Please see this [detailed guide](./docs/source/guides/why-use-nemo-run.md) for r To install the project, use the following command: ```bash -pip install git+https://github.com/NVIDIA/NeMo-Run.git +pip install git+https://github.com/NVIDIA-NeMo/Run.git ``` Make sure you have `pip` installed and configured properly. diff --git a/docs/source/guides/execution.md b/docs/source/guides/execution.md index eb640c52..2ad34ef2 100644 --- a/docs/source/guides/execution.md +++ b/docs/source/guides/execution.md @@ -29,7 +29,7 @@ We support the following `launchers`: - `torchrun` or `run.Torchrun`: This will launch the task using `torchrun`. See the `Torchrun` class for configuration options. You can use it using `executor.launcher = "torchrun"` or `executor.launcher = Torchrun(...)`. - `ft` or `run.core.execution.FaultTolerance`: This will launch the task using NVIDIA's fault tolerant launcher. See the `FaultTolerance` class for configuration options. You can use it using `executor.launcher = "ft"` or `executor.launcher = FaultTolerance(...)`. -> **_NOTE:_** Launcher may not work very well with `run.Script`. Please report any issues at https://github.com/NVIDIA/NeMo-Run/issues. +> **_NOTE:_** Launcher may not work very well with `run.Script`. Please report any issues at https://github.com/NVIDIA-NeMo/Run/issues. ### Packagers diff --git a/docs/source/index.rst b/docs/source/index.rst index b896f41f..6692d020 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -26,14 +26,14 @@ Installation ------------ To install the project, use the following command: -``pip install git+https://github.com/NVIDIA/NeMo-Run.git`` +``pip install git+https://github.com/NVIDIA-NeMo/Run.git`` To install Skypilot, we have optional features available. -``pip install git+https://github.com/NVIDIA/NeMo-Run.git[skypilot]`` +``pip install git+https://github.com/NVIDIA-NeMo/Run.git[skypilot]`` will install Skypilot w Kubernetes -``pip install git+https://github.com/NVIDIA/NeMo-Run.git[skypilot-all]`` +``pip install git+https://github.com/NVIDIA-NeMo/Run.git[skypilot-all]`` will install Skypilot w all clouds You can also manually install Skypilot from https://skypilot.readthedocs.io/en/latest/getting-started/installation.html diff --git a/nemo_run/package_info.py b/nemo_run/package_info.py index fa3b5147..141bafa3 100644 --- a/nemo_run/package_info.py +++ b/nemo_run/package_info.py @@ -28,8 +28,8 @@ __package_name__ = "nemo_run" __contact_names__ = "NVIDIA" __contact_emails__ = "nemo-toolkit@nvidia.com" -__repository_url__ = "https://github.com/NVIDIA/NeMo-Run" -__download_url__ = "https://github.com/NVIDIA/NeMo-Run/releases" +__repository_url__ = "https://github.com/NVIDIA-NeMo/Run" +__download_url__ = "https://github.com/NVIDIA-NeMo/Run/releases" __description__ = "A powerful tool designed to streamline the configuration, execution and management of Machine Learning experiments across various computing environments." __license__ = "Apache2" __keywords__ = "deep learning, machine learning, gpu, NLP, NeMo, nvidia, pytorch, torch, language, preprocessing, LLM, large language model" diff --git a/nemo_run/run/experiment.py b/nemo_run/run/experiment.py index ddc7b00e..b213c490 100644 --- a/nemo_run/run/experiment.py +++ b/nemo_run/run/experiment.py @@ -538,7 +538,7 @@ def _validate_task(self, task_info: str, task: Union[Partial, Script]) -> None: {pprint.PrettyPrinter(indent=4).pformat(diff)} -For more information about `run.Config` and `run.Partial`, please refer to https://github.com/NVIDIA/NeMo-Run/blob/main/docs/source/guides/configuration.md. +For more information about `run.Config` and `run.Partial`, please refer to https://github.com/NVIDIA-NeMo/Run/blob/main/docs/source/guides/configuration.md. """ if not valid: raise RuntimeError(f"Failed to validate task {task_info}.\n{message}")