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
Fair sequence bug torch.div(self.indices_buf, vocab_size, out=self.beams_buf) gives error, it should be replaced by torch.floor_divide(self.indices_buf, vocab_size, out=self.beams_buf)
File naming error:
in data/stage_segmentation notebook file names generated is _sent_trans_cons_label_2.pkl but it is expected as _sent_trans_cons_label.pkl by other part of codes.
Synatx error
in data/read_labels notebook line 33 has missing : in if condition.
The text was updated successfully, but these errors were encountered:
Fair sequence bug
torch.div(self.indices_buf, vocab_size, out=self.beams_buf)
gives error, it should be replaced bytorch.floor_divide(self.indices_buf, vocab_size, out=self.beams_buf)
File naming error:
in
data/stage_segmentation
notebook file names generated is_sent_trans_cons_label_2.pkl
but it is expected as_sent_trans_cons_label.pkl
by other part of codes.Synatx error
in
data/read_labels
notebook line 33 has missing:
in if condition.The text was updated successfully, but these errors were encountered: