Skip to content
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

Update sft trainer to include better packing #3100

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

Ishan-Kumar2
Copy link
Contributor

What does this PR do?

Fixes #2466

Before submitting

  • This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case).
  • Did you read the contributor guideline,
    Pull Request section?
  • Was this discussed/approved via a GitHub issue? Please add a link
    to it if that's the case.
  • Did you make sure to update the documentation with your changes? Here are the
    documentation guidelines.
  • [] Did you write any new necessary tests?

Who can review?

@qgallouedec @shirinyamani @AIR-hl

Hi everyone, I am new to TRL, have attempted a fix at the issue 2466 here.
The greedy knapsack tries to fit as many examples as possible without overshooting, the remaining ones are chunked as before by breaking it up into smaller example size (<= max_seq_len). Also I havent made this the default packing and kept it under a flag.
Please let me know if this is close to what was expected, I can add tests then, thanks!

@Ishan-Kumar2 Ishan-Kumar2 changed the title Update sft trainer Update sft trainer to include better packing Mar 17, 2025
Copy link
Member

@qgallouedec qgallouedec left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution, and sorry for the late reply. I've made some comments. Can you please also:

  • include a test for pack_example_smater
  • modify the packing argument in SFTConfig to allow for this packing method

return knapsacks, [[tup[1]] for tup in numbers]


def pack_examples_smarter(examples: dict[str, list[list]], seq_length: int) -> dict[str, list[list]]:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wdyt of

Suggested change
def pack_examples_smarter(examples: dict[str, list[list]], seq_length: int) -> dict[str, list[list]]:
def pack_examples_knapsack(examples: dict[str, list[list]], seq_length: int) -> dict[str, list[list]]:

or even

Suggested change
def pack_examples_smarter(examples: dict[str, list[list]], seq_length: int) -> dict[str, list[list]]:
def pack_examples_knapsack_greedy(examples: dict[str, list[list]], seq_length: int) -> dict[str, list[list]]:

Comment on lines 364 to +367
packing: bool,
formatting_func: Optional[Callable[[dict], str]],
dataset_name: str,
pack_smart: bool = False,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe this is better:

Suggested change
packing: bool,
formatting_func: Optional[Callable[[dict], str]],
dataset_name: str,
pack_smart: bool = False,
packing: Union[bool, str],
formatting_func: Optional[Callable[[dict], str]],
dataset_name: str,

and use if packing == "knapsack":

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Probably a more reasonable method of packing
2 participants