Open david-wei-01001 opened 6 months ago
in lade/decoding/py line1175 the original code:
else: all_old_tokens.append(hits[max_hit])
should be changed to
else: all_old_tokens.append(hits[hit_idx])
Otherwise it is just appending the same thing
in lade/decoding/py line1175 the original code:
should be changed to
Otherwise it is just appending the same thing