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 (withself.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.
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.