shmsw25 / AmbigQA

An original implementation of EMNLP 2020, "AmbigQA: Answering Ambiguous Open-domain Questions"
https://arxiv.org/abs/2004.10645
117 stars 22 forks source link

DisAmbig-First baseline code #10

Closed szhang42 closed 4 years ago

szhang42 commented 4 years ago

Hi @shmsw25 While I was reading the paper as well as the code, I didn't find the disambig-first baseline code in this codebase. Does the disambig-first baseline code include here? Thanks very much!

shmsw25 commented 4 years ago

Hi @szhang42, no it is not part of the open source code, sorry. But it is actually straightforward to implement - it consists with 1) 2-way classifier based on BERT-base (input: question, output: whether it is ambiguous or not) 2) seq2seq based on BART-large (input: question, output: disambiguated questions, separated by [SEP])

szhang42 commented 4 years ago

Got it! Thanks very much!