qlora
qlora copied to clipboard
TypeError: getattr(): attribute name must be string
Traceback (most recent call last):
File "qlora.py", line 791, in
Someone says it is the issue related to diffusers version, anynoe know the correct version of the package?
I had the same error. The Llama tokenizer requires sentencepiece
to be installed. Try again after pip install sentencepiece
.
Thx! I get rid of the issue now.