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 @@ -65,7 +65,7 @@ $ gh release create v0.0.0 assets/wheels/vllm-*.whl --title "Forge Wheels v0.0.0
To run SFT on a Llama3 8B model, run

```bash
python -m apps.sft_v2.main --config apps/sft_v2/llama3_8b.yaml
python -m apps.sft.main --config apps/sft/llama3_8b.yaml
```

### Citation
Expand Down
2 changes: 1 addition & 1 deletion apps/sft_v2/llama3_8b.yaml → apps/sft/llama3_8b.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# >>> python -m apps.sft_v2.main --config apps/sft_v2/llama3_8b.yaml
# >>> python -m apps.sft.main --config apps/sft/llama3_8b.yaml

# Config for supervised full finetuning using a Llama3.1 8B Instruct model

Expand Down
2 changes: 1 addition & 1 deletion apps/sft_v2/main.py → apps/sft/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

"""To run:

python -m apps.sft_v2.main --config apps/sft_v2/llama3_8b.yaml
python -m apps.sft.main --config apps/sft/llama3_8b.yaml

"""

Expand Down
2 changes: 1 addition & 1 deletion apps/sft_v2/qwen3_8b.yaml → apps/sft/qwen3_8b.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# >>> python -m apps.sft_v2.main --config apps/sft_v2/qwen3_8b.yaml
# >>> python -m apps.sft.main --config apps/sft/qwen3_8b.yaml


# TODO: required by torchtitan
Expand Down
Loading