PEFT How to use deepanshu30699/wizard-python-financial_6_gptq with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("TheBloke/WizardCoder-Python-13B-V1.0-GPTQ")
model = PeftModel.from_pretrained(base_model, "deepanshu30699/wizard-python-financial_6_gptq")