Skip to content

Commit c8c5bb6

Browse files
author
kimjiwon
committed
if statement to elif statement
1 parent f53f080 commit c8c5bb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

5-2.BERT/BERT-Torch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def make_batch():
171171
masked_tokens.append(input_ids[pos])
172172
if random() < 0.8: # 80%
173173
input_ids[pos] = word_dict['[MASK]'] # make mask
174-
if random() < 0.5: # 10%
174+
elif random() < 0.5: # 10%
175175
index = randint(0, vocab_size - 1) # random index in vocabulary
176176
input_ids[pos] = word_dict[number_dict[index]] # replace
177177

5-2.BERT/BERT_Torch.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
" masked_tokens.append(input_ids[pos])\n",
201201
" if random() < 0.8: # 80%\n",
202202
" input_ids[pos] = word_dict['[MASK]'] # make mask\n",
203-
" if random() < 0.5: # 10%\n",
203+
" elif random() < 0.5: # 10%\n",
204204
" index = randint(0, vocab_size - 1) # random index in vocabulary\n",
205205
" input_ids[pos] = word_dict[number_dict[index]] # replace\n",
206206
"\n",

0 commit comments

Comments
 (0)