Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/guides/execution.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions nemo_run/package_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion nemo_run/run/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
Loading