File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ def make_batch():
171
171
masked_tokens .append (input_ids [pos ])
172
172
if random () < 0.8 : # 80%
173
173
input_ids [pos ] = word_dict ['[MASK]' ] # make mask
174
- if random () < 0.5 : # 10%
174
+ elif random () < 0.5 : # 10%
175
175
index = randint (0 , vocab_size - 1 ) # random index in vocabulary
176
176
input_ids [pos ] = word_dict [number_dict [index ]] # replace
177
177
Original file line number Diff line number Diff line change 200
200
" masked_tokens.append(input_ids[pos])\n " ,
201
201
" if random() < 0.8: # 80%\n " ,
202
202
" input_ids[pos] = word_dict['[MASK]'] # make mask\n " ,
203
- " if random() < 0.5: # 10%\n " ,
203
+ " elif random() < 0.5: # 10%\n " ,
204
204
" index = randint(0, vocab_size - 1) # random index in vocabulary\n " ,
205
205
" input_ids[pos] = word_dict[number_dict[index]] # replace\n " ,
206
206
" \n " ,
You can’t perform that action at this time.
0 commit comments