You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another fix: baseline dist calculation should use float as: closest = np.abs(last_q - last_a) / (float(len(passage)) - 1). I understand stopwords removal is done during data preprocessing
Turns out it is important to calculate counts only based on tokens of given passage, rather than estimated on all stories. It is important to produce similar results as in https://www.microsoft.com/en-us/research/wp-content/uploads/2016/11/MCTest_EMNLP2013.pdf. Performance changes from
From:
To:
Fix is to calculate icounts as
_icounts = compute_inverse_counts([tokens])
inSlidingWindow.predict_target
The text was updated successfully, but these errors were encountered: