CoolFace
Modelpublic

duyhv1411/Llama-1.1B-qlora-ft

sourceHugging Faceotherupdated 2y agoView on Hugging Face
1likes15downloads
Model Card

duyhv1411/Llama-1.1B-qlora-ft

This model is an advanced iteration of the powerful TinyLlama/TinyLlama-1.1B-Chat-v1.0, specifically fine-tuned to enhance its capabilities in generic domains.

⚡ Quantized GGUF

How to use

python

# Use a pipeline as a high-level helper

from transformers import pipeline

prompt = """<|user|>
Hello, how are you?</s>
<|assistant|>
"""

# Run our instruction-tuned model
pipe = pipeline(task="text-generation", model="duyhv1411/Llama-1.1B-qlora-ft", return_full_text=False,)
pipe(prompt)[0]["generated_text"]