Commit 168743f7613afccdb56fe03ae81ac4d1e9516eb6
1 parent
7d27f9e9
Minor preparator script fix.
Showing
1 changed file
with
1 additions
and
1 deletions
preparator.py
... | ... | @@ -510,7 +510,7 @@ def get_pair_features(pair, mentions_dict, lemma2synonyms, |
510 | 510 | features.append(neighbouring_sentence(ante, ana)) |
511 | 511 | features.append(cousin_sentence(ante, ana)) |
512 | 512 | features.append(distant_sentence(ante, ana)) |
513 | - features.append(flat_gender_agreement(ante, ana)) | |
513 | + features.extend(flat_gender_agreement(ante, ana)) | |
514 | 514 | features.append(left_match(ante, ana)) |
515 | 515 | features.append(right_match(ante, ana)) |
516 | 516 | features.append(abbrev2(ante, ana)) |
... | ... |