How to use Weni/ZeroShot-Multilanguage-Llama2-13B with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("NousResearch/Nous-Hermes-Llama2-13b") model = PeftModel.from_pretrained(base_model, "Weni/ZeroShot-Multilanguage-Llama2-13B")
The community tab is the place to discuss and collaborate with the HF community!