You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've installed the env by requirements.txt, the lib versions are the same, except the python version is 3.10.
First, I encountered two problems: LlamaTokenizer requires the SentencePiece library but it was not found in your environment. The new behaviour of LlamaTokenizer (with self.legacy = False) requires the protobuf library but it was not found in your environment.
and by installing SentencePiece==0.2.0 and protobuf-5.26.1 to solve them.
After that I could load the models correctly, but segmentation fault error happened when the first step denoising process.
The text was updated successfully, but these errors were encountered:
I've installed the env by requirements.txt, the lib versions are the same, except the python version is 3.10.
First, I encountered two problems:
LlamaTokenizer requires the SentencePiece library but it was not found in your environment.
The new behaviour of LlamaTokenizer (with
self.legacy = False) requires the protobuf library but it was not found in your environment.
and by installing SentencePiece==0.2.0 and protobuf-5.26.1 to solve them.
After that I could load the models correctly, but segmentation fault error happened when the first step denoising process.
The text was updated successfully, but these errors were encountered: