Qwen2 Technical Report
Paper • 2407.10671 • Published • 172
irm https://unsloth.ai/install.ps1 | iex
# Run unsloth studio
unsloth studio -H 0.0.0.0 -p 8888
# Then open http://localhost:8888 in your browser
# Search for retrain-pipelines/function_caller_lora to start chatting# No setup required# Open https://huggingface.co/spaces/unsloth/studio in your browser
# Search for retrain-pipelines/function_caller_lora to start chattingpip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
model_name="retrain-pipelines/function_caller_lora",
max_seq_length=2048,
)version 0.32 - 2026-02-21 01:24:19 UTC
(retraining
source-code |
pipeline-card)
Training dataset :
retrain-pipelines/func_calls_ds v0.31
(70f9a28 -
2026-02-20 18:34:18 UTC) Base model :
unsloth/Qwen2.5-1.5B
(1582479 -
2025-04-28 04:13:37 UTC) 2407.10671The herein LoRa adapter can for instance be used as follows :
from transformers import AutoModelForCausalLM, AutoTokenizer
from torch import device, cuda
repo_id = "retrain-pipelines/function_caller_lora"
revision = "<model_revision_commit_hash>"
model = AutoModelForCausalLM.from_pretrained(
repo_id, revision=revision, torch_dtype="auto", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained(
repo_id, revision=revision, torch_dtype="auto", device_map="auto")
device = device("cuda" if cuda.is_available() else "cpu")
def generate_tool_calls_list(query, max_new_tokens=400) -> str:
formatted_query = tokenizer.chat_template.format(query, "")
inputs = tokenizer(formatted_query, return_tensors="pt").input_ids.to(device)
outputs = model.generate(inputs, max_new_tokens=max_new_tokens, do_sample=False)
generated_text = tokenizer.batch_decode(outputs, skip_special_tokens=True)[0]
return generated_text[len(formatted_query):].strip()
generate_tool_calls_list("Is 49 a perfect square ?")
retrain-pipelines
0.1.2 -
Run by Aurelien-Morgan-Bot -
UnslothFuncCallFlow - exec_id : 135
Install Unsloth Studio (macOS, Linux, WSL)
# Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for retrain-pipelines/function_caller_lora to start chatting