From 02c19ed21836655b7c3b4ecafdc6907e7d78e1a1 Mon Sep 17 00:00:00 2001 From: Charlie Truong Date: Thu, 12 Jun 2025 16:00:45 -0500 Subject: [PATCH 1/3] Update github url after org transfer Signed-off-by: Charlie Truong --- .github/PULL_REQUEST_TEMPLATE.md | 8 ++--- CONTRIBUTING.md | 2 +- README.md | 16 +++++----- docs/adding-new-models.md | 32 +++++++++---------- docs/model-quirks.md | 2 +- examples/configs/grpo-deepscaler-1.5b-8K.yaml | 2 +- examples/configs/grpo_math_1B.yaml | 4 +-- examples/configs/grpo_sliding_puzzle.yaml | 4 +-- ...-27b-it-16n8g-fsdp2tp8sp-actckpt-long.yaml | 2 +- examples/convert_dcp_to_hf.py | 2 +- nemo_rl/algorithms/dpo.py | 2 +- .../ray_actor_environment_registry.py | 2 +- nemo_rl/models/generation/vllm.py | 2 +- .../models/policy/dtensor_policy_worker.py | 4 +-- nemo_rl/models/policy/fsdp1_policy_worker.py | 6 ++-- nemo_rl/package_info.py | 4 +-- nemo_rl/utils/native_checkpoint.py | 2 +- pyproject.toml | 2 +- tests/functional/dpo.sh | 2 +- ...ma3.1-8b-instruct-1n8g-fsdp2tp1-long.v2.sh | 4 +-- ...llama3.1-8b-instruct-1n8g-fsdp2tp2sp.v2.sh | 4 +-- ...-qwen2.5-32b-4n8g-fsdp2tp8sp-actckpt.v2.sh | 4 +-- .../models/generation/test_vllm_generation.py | 2 +- tests/unit/utils/test_native_checkpoint.py | 2 +- 24 files changed, 58 insertions(+), 58 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 3e3e4fb3fe..b83ec70073 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -10,15 +10,15 @@ List issues that this PR closes ([syntax](https://docs.github.com/en/issues/trac * **You can potentially add a usage example below** ```python -# Add a code snippet demonstrating how to use this +# Add a code snippet demonstrating how to use this ``` # Before your PR is "Ready for review" **Pre checks**: -- [ ] Make sure you read and followed [Contributor guidelines](/NVIDIA/NeMo-RL/blob/main/CONTRIBUTING.md) +- [ ] Make sure you read and followed [Contributor guidelines](/NVIDIA-NeMo/RL/blob/main/CONTRIBUTING.md) - [ ] Did you write any new necessary tests? -- [ ] Did you run the unit tests and functional tests locally? Visit our [Testing Guide](/NVIDIA/NeMo-RL/blob/main/docs/testing.md) for how to run tests -- [ ] Did you add or update any necessary documentation? Visit our [Document Development Guide](/NVIDIA/NeMo-RL/blob/main/docs/documentation.md) for how to write, build and test the docs. +- [ ] Did you run the unit tests and functional tests locally? Visit our [Testing Guide](/NVIDIA-NeMo/RL/blob/main/docs/testing.md) for how to run tests +- [ ] Did you add or update any necessary documentation? Visit our [Document Development Guide](/NVIDIA-NeMo/RL/blob/main/docs/documentation.md) for how to write, build and test the docs. # Additional Information * ... diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2cc6a3051b..3dc065655a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,7 +31,7 @@ We follow a direct clone and branch workflow for now: 1. Clone the repository directly: ```bash - git clone https://github.com/NVIDIA/NeMo-RL + git clone https://github.com/NVIDIA-NeMo/RL cd nemo-rl ``` diff --git a/README.md b/README.md index e3a9370a08..9b0e74580c 100644 --- a/README.md +++ b/README.md @@ -61,21 +61,21 @@ What you can expect: Clone **NeMo RL**. ```sh -git clone git@github.com:NVIDIA/NeMo-RL.git nemo-rl +git clone git@github.com:NVIDIA-NeMo/RL.git nemo-rl cd nemo-rl ```