|
|
|
|
|
by andai
434 days ago
|
|
Using a system based on randomness for a process that must occur deterministically is probably the wrong solution. I'm running into similar issues trying to use LLMs for logic and reasoning. They can do it (surprisingly well, once you disable the friendliness that prevents it), but you get a different random subset of correct answers every time. I don't know if setting temperature to 0 would help. You'd get the same output every time, but it would be the same incomplete / wrong output. Probably a better solution is a multi phase thing, where you generate a bunch of outputs and then collect and filter them. |
|
Interesting! :D Do you mind sharing the prompt(s) that you use to do that?
Thanks!!