Multi step cube v2#141
Closed
Masseeh wants to merge 10 commits into
Closed
Conversation
Collaborator
|
What is the result viewer for? |
Collaborator
Author
Collaborator
|
Collaborator
Author
Yes!! it's part of open_reasoner_zero_extended_72k dataset. {
"dataset":"open_reasoner_zero_extended_72k",
"task":"9. Let $A=\\{1,2,3, \\cdots, 2 n, 2 n+1\\}, B \\subseteq A$, and for any three distinct elements $x, y, z$ in $B$, we have $x+y \\neq z$. Find the maximum value of $|B|$.\n\nTranslate the above text into English, please retain the original text's line breaks and format, and output the translation result directly.",
"answer":"\\boxed{n+1}"
} |
Collaborator
Author
|
Closing this in favor of PR #143 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.







Summary
This PR adds the cube-specific PipelineRL actor path under pipelinerl/cube_rl and wires it into the Ray actor entrypoint flow.
Key changes:
Design Notes
The cube actor loop now handles rollout-level scheduling and backpressure over benchmark actors, while VLLMRouterActor owns vLLM-level routing. Each cube-harness LLM generation acquires
a route lease from the router and releases it after completion or error.
This keeps CubeActorLoop focused on task scheduling, retries, metrics, and eval boundaries, while keeping admission control close to the actual generation call.
Testing
I trained
Qwen3-4B-Instruct-2507on TIR using both the default PipelineRL implementation and Cube-based version of TIR, on a single node.Shared hyperparameters
Cube-RL-specific hyperparameters
Results
with
Effect of scaling up llm_max_rollouts
from 32 to 64
Setup and Cube-compatible repositories
This setup has been tested with the
uvpackage manager and Python3.12.13.Required repositories:
Clone
cube-harnessandcube-standardalongside thePipelineRLrepository before running the project. For example:@rafapi @ehsk could you take a look at this PR?