You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-1Lines changed: 21 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,20 @@ You can also find our notebook tutorials (coming soon)
32
32
33
33
### Basic
34
34
35
-
torchforge requires PyTorch 2.9.0 with [Monarch](https://github.com/meta-pytorch/monarch), [vLLM](https://github.com/vllm-project/vllm), and [torchtitan](https://github.com/pytorch/torchtitan). (Note that the basic install script
35
+
torchforge requires PyTorch 2.9.0 with [Monarch](https://github.com/meta-pytorch/monarch), [vLLM](https://github.com/vllm-project/vllm), and [torchtitan](https://github.com/pytorch/torchtitan).
36
+
37
+
You can install Forge with:
38
+
```
39
+
$ conda create -n forge python=3.10
40
+
$ conda activate forge
41
+
$ uv pip install .
42
+
```
43
+
44
+
(conda-less uv install is a wip)
45
+
46
+
For your reference, we also include a basic install script that installs other system dependencies
47
+
along with torchforge:
48
+
(note that this basic install script
36
49
uses [DNF](https://docs.fedoraproject.org/en-US/quick-docs/dnf/), but could be easily extended to other Linux OS.)
37
50
38
51
```bash
@@ -45,6 +58,13 @@ Optional: By default, the packages installation uses conda. If user wants to ins
45
58
46
59
After install, you can run the following command and should see output confirming GRPO training is running (you need a minimum 3 GPU devices):
47
60
61
+
62
+
```
63
+
uv run apps/grpo/main.py --config apps/grpo/qwen3_1_7b.yaml
0 commit comments