-
Notifications
You must be signed in to change notification settings - Fork 395
[WIP] [Feature]Ensure Full Conversation Data #287
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
Open
xiaohangguo
wants to merge
21
commits into
InternLM:main
Choose a base branch
from
xiaohangguo:ensure_full_conversation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
… into qwen_72b_config
…ure_full_conversation
Contributor
Author
|
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.
TODO LIST
任务目标
1.如果是最后一轮对话的 "input" 部分恰好等于 max_length,则将该轮对话的 "input" 和 "output" 一起移到下一个样本的开头。
2.如果是 "output" 部分中某个部分恰好等于 max_length,则按照默认行为处理,即将 "output" 放在下一个样本的开头。
测试样例
假设max_length=512
多轮对话,两条语料。
1.
{ "conversation": [ { "system": "System1", "input": "这是一个测试对话的开始。内容从0开始计数,直到第127个字符。", "output": "这是对话的回应部分。内容从第128个字符开始,一直到第509个字符,紧接着是对下一轮对话的开始。" }, { "input": "这是第二轮对话的输入,内容从第510个字符开始,一直到第512个字符,然后超出最大长度,超出部分从第513个字符开始,一直到第530个字符。", "output": "这是对超出长度的回应。内容从第513个字符开始,一直到最后。" } ] }{ "conversation": [ { "system": "System1", "input": "这是另一个测试对话的开始。内容从0开始计数,直到第127个字符。", "output": "这是对话的回应部分。内容从第128个字符开始,一直到第500个字符,紧接着是对下一轮对话的开始。" }, { "input": "这是第二轮对话的输入,内容从第501个字符开始,一直到第510个字符,然后超出最大长度,超出部分从第511个字符开始,一直到第530个字符。", "output": "这是对超出长度的回应。内容从第511个字符开始,一直到第512个字符,然后是超出部分,从第513个字符开始,一直到最后。" } ] }