-
Notifications
You must be signed in to change notification settings - Fork 811
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
Question answer datasets: SQuAD1 and SQuAD2 #773
Conversation
"""Defines an abstraction for raw question answer iterable datasets. | ||
""" | ||
|
||
def __init__(self, iterator, start=0, num_lines=None): |
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.
The other dataset still has the setup_iter method, so I'd mirror that behavior or change the behavior of the other.
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.
OK, let's keep this consistent for now since there are several ongoing PRs to re-write datasets. Once done, we can send out a separate PR to fix it.
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 good to me! See inline comment on setup_iter. Will update #736 for this.
No description provided.