OS Error : No config.json
replace abbreviation with full form using https://huggingface.co/spaces/thobuiq/GPT-4o
from transformers import pipeline
gpt4 = pipeline(model="mradermacher/llama-3-8b-gpt-4o-GGUF")
gpt4("""Context : VAERS 17y male sign Pfizer Covidvaccine Suicide attempt Pediatrics
Mentalhealth he said it felt like a switch turned off in his head
Has gone to the ER twice for trying to attempt suicide Mother said
he has not been the same since he got the shot.
Question : What is full form of VAERS and ER according to context?""")
I was using the model with pipeline.
I got this error. How to deal with it?
OSError: mradermacher/llama-3-8b-gpt-4o-GGUF does not appear to have a file named config.json. Checkout 'https://huggingface.co/mradermacher/llama-3-8b-gpt-4o-GGUF/tree/main' for available files.
You need software that supports gguf files (e.g. llama.cpp). Or, since you are using transformers, you could go to the original model and use that.