How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Inishds/function_calling_TinyLlama-1.1B-python-v0.1_epoch3"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "Inishds/function_calling_TinyLlama-1.1B-python-v0.1_epoch3",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Use Docker
docker model run hf.co/Inishds/function_calling_TinyLlama-1.1B-python-v0.1_epoch3
Quick Links

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
8
Safetensors
Model size
1B params
Tensor type
F16
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support