-
When I use outlines on Llama3-8b, I find it reports an error: ValueError: The following After searching for a solution, we found that the only way to solve the above problem is to lower the transformer version to 4.21.3. Therefore, outlines can only be adapted to lower versions of transformers. However, Llama series LLMs generally run in higher transformer versions than this. Python 3.9.19 (main, May 6 2024, 19:43:03) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I have solved this problem by reinstalling the outline with |
Beta Was this translation helpful? Give feedback.
I have solved this problem by reinstalling the outline with
pip install "outlines[transformers]"
. I hope it will help some of u.