Mxytyu commited on
Commit
1485f4c
1 Parent(s): 80b293f

Create tokenizer.model

Browse files
Files changed (1) hide show
  1. tokenizer.model +7 -0
tokenizer.model ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import random
2
+
3
+ def predict_next_word(words):
4
+ if random.random() < 0.5:
5
+ return "banana"
6
+ else:
7
+ return "potato"