tburst commited on
Commit
22361c3
1 Parent(s): 0bcd9d1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -81,7 +81,7 @@ Here is an example:
81
 
82
 
83
  The second part, which contains the context, is greedily filled until it contains 200 tokens.
84
- Our tests showed that including the context helped to improve the performance of the classification model considerably (~8% accuracy).
85
  We tried other approaches like using two XLM-RoBERTa models as a duo, where one receives the sentence and one the context, and a shared-layer model, where both inputs are fed separately trough the same model.
86
  Both variants performed similarly to our sentence pair approach, but lead to higher complexity and computing costs, which is why we ultimately opted for the sentence pair way to include the surrounding context.
87
 
 
81
 
82
 
83
  The second part, which contains the context, is greedily filled until it contains 200 tokens.
84
+ Our tests showed that including the context helped to improve the performance of the classification model considerably (~7% accuracy).
85
  We tried other approaches like using two XLM-RoBERTa models as a duo, where one receives the sentence and one the context, and a shared-layer model, where both inputs are fed separately trough the same model.
86
  Both variants performed similarly to our sentence pair approach, but lead to higher complexity and computing costs, which is why we ultimately opted for the sentence pair way to include the surrounding context.
87