-
Notifications
You must be signed in to change notification settings - Fork 176
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
Raise value error #318
Raise value error #318
Conversation
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.
Looks great! I left several suggestions about how to remove noqa
s by splitting strings into multiple lines (we should probably avoid introducing noqas unless really necessary), but I'm happy to merge after those are incorporated.
@@ -321,7 +321,8 @@ def apply_multi_vote_to_construct_generated_dataset( | |||
Currently generated dataset with multi-vote filtering applied. | |||
""" | |||
# Ensure that multi-vote filtering is enabled. | |||
assert self.filter_duplicated_examples | |||
if self.filter_duplicated_examples is False: |
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.
if self.filter_duplicated_examples is False: | |
if not self.filter_duplicated_examples: |
Oh, woops. I didn't realize that auto-merge was turned on. I guess I shouldn't have clicked "approve". It's OK though, they could probably be fixed later. |
Sure! I'm going to fix it tommorow. |
Description
#231
Another troublesome thing is that due to the release of the constraints of the packages' version, our new
transformers
now support MPS devices, but I can't find a way to debug it on my Mac.#317
References
Blocked by