-
Notifications
You must be signed in to change notification settings - Fork 47
Add Sample Strategy #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
pan-x-c
merged 8 commits into
modelscope:algorithm_dev
from
pan-x-c:feature/add_sample_strategy
Jun 12, 2025
Merged
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b5822d3
add sample strategy
pan-x-c f438f3d
fix typo
pan-x-c 5ce869a
refactor sample strategy
pan-x-c 0b6c5d2
fix pre-commit
pan-x-c 44d223e
fix dpo strategy
pan-x-c 62f012f
fix stop
pan-x-c 5b8346d
clean code
pan-x-c 88da840
fix global step
pan-x-c File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| from trinity.algorithm.sample_strategy.sample_strategy import ( | ||
| SAMPLE_STRATEGY, | ||
| DefaultSampleStrategy, | ||
| SampleStrategy, | ||
| WarmupSampleStrategy, | ||
| ) | ||
|
|
||
| __all__ = [ | ||
| "SAMPLE_STRATEGY", | ||
| "SampleStrategy", | ||
| "DefaultSampleStrategy", | ||
| "WarmupSampleStrategy", | ||
| ] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| from abc import ABC, abstractmethod | ||
| from typing import List | ||
|
|
||
| from trinity.buffer import get_buffer_reader | ||
| from trinity.common.config import BufferConfig | ||
| from trinity.common.experience import Experience | ||
| from trinity.utils.registry import Registry | ||
|
|
||
| SAMPLE_STRATEGY = Registry("sample_strategy") | ||
|
|
||
|
|
||
| class SampleStrategy(ABC): | ||
| def __init__(self, buffer_config: BufferConfig, **kwargs): | ||
| self.buffer_config = buffer_config | ||
|
|
||
| @abstractmethod | ||
| def sample(self, step: int, **kwargs) -> List[Experience]: | ||
| """Sample experiences from buffer. | ||
|
|
||
| Args: | ||
| step (`int`): The step number of current step. | ||
| """ | ||
|
|
||
| @classmethod | ||
| def default_args(cls) -> dict: | ||
| return {} | ||
|
|
||
|
|
||
| @SAMPLE_STRATEGY.register_module("warmup") | ||
| class WarmupSampleStrategy(SampleStrategy): | ||
| """The default sample strategy.""" | ||
|
|
||
| def __init__(self, buffer_config: BufferConfig, **kwargs): | ||
| super().__init__(buffer_config) | ||
| self.exp_buffer = get_buffer_reader( | ||
| buffer_config.trainer_input.experience_buffer, buffer_config # type: ignore | ||
| ) | ||
| self.sft_warmup_step = buffer_config.trainer_input.sft_warmup_steps | ||
| if self.sft_warmup_step > 0 and buffer_config.trainer_input.sft_warmup_dataset is None: | ||
pan-x-c marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| raise ValueError("sft_warmup_dataset is required when sft_warmup_steps > 0") | ||
| if buffer_config.trainer_input.sft_warmup_dataset is not None: | ||
| self.sft_buffer = get_buffer_reader( | ||
| buffer_config.trainer_input.sft_warmup_dataset, buffer_config | ||
| ) | ||
| else: | ||
| self.sft_buffer = None | ||
|
|
||
| def sample(self, step: int, **kwargs) -> List[Experience]: | ||
| if step <= self.sft_warmup_step: | ||
pan-x-c marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| return self.sft_buffer.read() | ||
| else: | ||
| return self.exp_buffer.read() | ||
|
|
||
|
|
||
| @SAMPLE_STRATEGY.register_module("default") | ||
| class DefaultSampleStrategy(SampleStrategy): | ||
| def __init__(self, buffer_config: BufferConfig, **kwargs): | ||
| super().__init__(buffer_config) | ||
| self.exp_buffer = get_buffer_reader( | ||
| buffer_config.trainer_input.experience_buffer, buffer_config # type: ignore | ||
| ) | ||
|
|
||
| def sample(self, step: int, **kwargs) -> List[Experience]: | ||
| return self.exp_buffer.read() | ||
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.