function_calling_TinyLlama-1.1B-python-v0.1_epoch3
function_calling_TinyLlama-1.1B-python-v0.1_epoch3 is an SFT fine-tuned version of TinyLlama/TinyLlama-1.1B-step-50K-105b using a custom training dataset. This model was made with Phinetune
Process
- Learning Rate: 1.41e-05
- Maximum Sequence Length: 2048
- Dataset: Inishds/function_calling
- Split: train
π» Usage
!pip install -qU transformers
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
model = "Inishds/function_calling_TinyLlama-1.1B-python-v0.1_epoch3"
tokenizer = AutoTokenizer.from_pretrained(model)
# Example prompt
prompt = "Your example prompt here"
# Generate a response
model = AutoModelForCausalLM.from_pretrained(model)
pipeline = pipeline("text-generation", model=model, tokenizer=tokenizer)
outputs = pipeline(prompt, max_length=50, num_return_sequences=1)
print(outputs[0]["generated_text"])
- Downloads last month
- 12
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.