-
Notifications
You must be signed in to change notification settings - Fork 365
Wikiann Prompts #772
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
base: eval-hackathon
Are you sure you want to change the base?
Wikiann Prompts #772
Conversation
…orkshop#778) * accelerate `get_infos` by caching the `DataseInfoDict`s * quality * consistency
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.
Thanks Jess! NER is just hard to be adapted to a prompt form because the task itself is kind of a non-natural. Normal humans don't just carry around a vector for each word that can be fed into a classifier. Recall that we talked about this with @yongzx on Slack:
Unless we are talking about entity classification (where we already know what is the entity and we want to figure out its type). NER on the other hand is entity extraction + entity classification.
Your prompt gives the model the gold span as opposed to let models extract the span. So that's already non-original task. Further, several of your prompts ask for a binary classification, not multiple choice among location, person, organization. So those are also non-original task prompts. Right?
Lastly, are you sure the metrics are "AUC, Accuracy, COQA F1, and Other"?
41b109ce-7504-4263-b455-315fa7a7f3c2: !Template | ||
answer_choices: Yes ||| No | ||
id: 41b109ce-7504-4263-b455-315fa7a7f3c2 | ||
jinja: 'Given, "{{'' ''.join(tokens)}}", is {{spans[0].split('':'')[1]}} a location? |
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.
Why is the '' ''.join(tokens)
here joining using multiple spaces?
53bd1751-f0e6-4ca8-84d4-80c1c09a230d: !Template | ||
answer_choices: True ||| False | ||
id: 53bd1751-f0e6-4ca8-84d4-80c1c09a230d | ||
jinja: 'Given the following information: |
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.
As opposed to "Given", or "Given the following information:", maybe it's more natural to say something like "In the sentence…"?
No description provided.