Hello! First of all thank you for this implementation
I'm currently trying to apply it on Arabic, and I have a few questions please
if you could answer my curiosities, I would be super thankful!
In the def get_target_sent_by_levels function, the very first edits level (level 0) is not considered hence the instruction rest_labels = label_list[1:], why is that?
In my data, there's only one level of edits (one error per sentence), so is it wrong to take label_list[0:]?
How is the labels vocab generated? should I just take the words that are included in my training data or can I use a vocabulary from another source? What would you recommend?
Sorry if my questions are too much! I just want to make sure that I'm training my model correctly
Thank you so much in advance!
Hello! First of all thank you for this implementation I'm currently trying to apply it on Arabic, and I have a few questions please if you could answer my curiosities, I would be super thankful!
In the
def get_target_sent_by_levels
function, the very first edits level (level 0) is not considered hence the instructionrest_labels = label_list[1:]
, why is that? In my data, there's only one level of edits (one error per sentence), so is it wrong to takelabel_list[0:]
?How is the labels vocab generated? should I just take the words that are included in my training data or can I use a vocabulary from another source? What would you recommend?
Sorry if my questions are too much! I just want to make sure that I'm training my model correctly Thank you so much in advance!