-
Notifications
You must be signed in to change notification settings - Fork 200
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
change deafult use_cache
param to True
, to align with the former implementation and make CI pass
#1343
Conversation
implementation and make CI pass Signed-off-by: kaixuanliu <[email protected]>
In #1292, |
Hi kaixun. With this PR, we still see 3/10 lava tests fail with the below messages.
|
Signed-off-by: kaixuanliu <[email protected]>
type=str2bool, | ||
default=True, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
type=str2bool, | |
default=True, | |
action="store_true", | |
default=None, |
this should work, don't need to set to True by default
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This cannot solve the problem, as if we set default to None, it will pass down this param to modeling part, and change the value of use_cache
in generation_config
here: L671, which will slow down the performance as well.
@skaulintel @vidyasiv |
Signed-off-by: kaixuanliu <[email protected]>
Updating the padding to 0 (already merged) lowers performance and improves accuracy per testing for #1366 for llava 1.5 models so we have to update perf. |
No description provided.