I have a huggingface spaces streamlit file
https://huggingface.co/spaces/foobar8675/bloom-7b1-lora-tagger/blob/main/app.py
which is throwing an error
ValueError: Can't find 'adapter_config.json' at 'foobar8675/bloom-7b1-lora-tagger'
Traceback:
File "/home/user/.local/lib/python3.10/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 565, in _run_script
exec(code, module.__dict__)
File "/home/user/app/app.py", line 23, in <module>
config = PeftConfig.from_pretrained(peft_model_id)
File "/home/user/.local/lib/python3.10/site-packages/peft/utils/config.py", line 108, in from_pretrained
raise ValueError(f"Can't find '{CONFIG_NAME}' at '{pretrained_model_name_or_pa
on this line
peft_model_id = "foobar8675/bloom-7b1-lora-tagger"
config = PeftConfig.from_pretrained(peft_model_id)
the model at foobar8675/bloom-7b1-lora-tagger is public and I verified the adapter_config.json is on the model. iâm quite confused as to why this is happening and any help is appreciated.