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