coddinglxf

Results 1 issues of coddinglxf

According to the code ``` def random_word(self, sentence): tokens = sentence.split() output_label = [] for i, token in enumerate(tokens): prob = random.random() if prob < 0.15: # 80% randomly change...

enhancement
question