Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
50c0bc3
[recipe] Add recipe demo to use StreamingDataset & StreamingDataLoader
Jixixi2020 May 7, 2026
14642aa
[chore] correct filename for streamingDataloader demo
Jixixi2020 May 8, 2026
7deeabf
[chore] Add license header for recipe\simple_use_case\streaming_datal…
Jixixi2020 May 8, 2026
7ce1612
[refactor] remove unused parameter pipeline_depth
Jixixi2020 May 8, 2026
766b4a9
[refactor] remove unused parameter empty_poll_log_interval
Jixixi2020 May 8, 2026
2d315e2
[refactor] Replace logging with transfer_queue.utils.logging_utils.ge…
Jixixi2020 May 8, 2026
1818d6e
[chore] Update default values for --partition-prefix and --task-name-…
Jixixi2020 May 8, 2026
44ef8aa
[refactor] Rename DecentralizedInheritedWorkerPipelineDemo to DataCen…
Jixixi2020 May 8, 2026
1c4de16
[refactor] Remove "[driver]" prefix from main control logs
Jixixi2020 May 8, 2026
3fd8d1d
[refactor] Optimize log display; change worker logging to print()
Jixixi2020 May 8, 2026
60752fa
[refactor] Optimize log display
Jixixi2020 May 14, 2026
e8fbb92
[refactor] Add annotation with reference to Relax
Jixixi2020 May 14, 2026
382c77e
[refactor] Rename demo file to relax_demo.py
Jixixi2020 May 14, 2026
9d85f6a
[refactor] Rename demo main class
Jixixi2020 May 14, 2026
810dfd1
[ci] Add new relax demo to recipe-check.yml workflow
Jixixi2020 May 14, 2026
7c2815a
[ci] Fix relax_demo filename in recipe-check.yml
Jixixi2020 May 14, 2026
cfd680a
[fix] Reuse StreamingDataLoader across steps to avoid resource leaking
Jixixi2020 May 14, 2026
61ecf1b
[refactor] Update default values for --partition-prefix and --task-na…
Jixixi2020 May 14, 2026
303707c
[ci] Update runtime parameters for relax_demo in recipe-check.yml
Jixixi2020 May 14, 2026
f3210a2
[fix] Fix line endings for pre-commit compliance
Jixixi2020 May 14, 2026
79dfaa9
[fix] Change demo data type to nested tensor from dense tensor for re…
Jixixi2020 May 15, 2026
0ffd5e8
[ci] Update demo run parameters in recipe-check.yml
Jixixi2020 May 15, 2026
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
6 changes: 5 additions & 1 deletion .github/workflows/recipe-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ jobs:
python -m pip install --upgrade pip
pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
pip install -e ".[yuanrong]"
- name: Run recipes
- name: Run single controller demo
run: |
export RAY_DEDUP_LOGS=0
python3 recipe/simple_use_case/single_controller_demo.py --num-samples 8 --global-batch-size 4 --rollout-agent-num-workers 1
- name: Run data-centric pipeline demo
run: |
export RAY_DEDUP_LOGS=0
python3 recipe/simple_use_case/relax_demo.py --num-steps 1 --global-batch-size 1 --micro-batch-size 1 --num-rollout-workers 1 --num-ref-workers 1 --num-actor-workers 1 --num-reward-workers 1 --rollout-sleep-seconds 0.01 --stage-sleep-seconds 0.01 --weight-sync-seconds 0.01
Loading
Loading