Inteligent_ai / tokenizer.model
Mxytyu's picture
Create tokenizer.model
1485f4c verified
raw
history blame
133 Bytes
import random
def predict_next_word(words):
if random.random() < 0.5:
return "banana"
else:
return "potato"