Closed ModPhoenix closed 1 year ago
You set top_p
to 0. As a consequence, you will always choose the token that the model predicts has the highest probability.
Try setting that to 0.9
, for example.
@saites that helped, thank you very much. I experimented with the values and it seems that top_p: 0.3
is enough to have a different dialogue every time, but the topics of the dialogues are quite the same.
I tried passing rand::thread_rng() but it didn't help at all 🥲. Is this a bug or an issue with me 😅?
The code is here if anyone wants to take a look https://github.com/ModPhoenix/beyond-human/blob/main/src/main.rs#L57