Views
No views yet
| Model | Parse | Fonksiyon Doğruluğu | Gerekli Argümanlar | Şema Uyumu |
|---|---|---|---|---|
| Qwen2.5 1.5B (base) | 92% | 54% | 52% | 44% |
| Qwen2.5 1.5B (fine-tuned) | 100% | 88% | 88% | 84% |
read_text_file, read_multiple_files, write_file, edit_file, create_directory, list_directory, directory_tree, move_file, search_files, get_file_infoissue_read, issue_write, list_issues, search_issues, add_issue_comment, pull_request_read, create_pull_request, update_pull_request, merge_pull_request, list_pull_requests, create_branch, get_file_contents, create_or_update_file, list_commits, list_branches, search_code, get_repository_tree, actions_list, get_job_logs1from unsloth import FastModel
2from unsloth.chat_templates import get_chat_template
3from peft import PeftModel
4
5base_model, tokenizer = FastModel.from_pretrained(
6 "unsloth/Qwen2.5-1.5B-Instruct",
7 max_seq_length=4096,
8 load_in_4bit=True,
9)
10tokenizer = get_chat_template(tokenizer, chat_template="qwen-2.5")
11model = PeftModel.from_pretrained(base_model, "alperiox/qwen25-1.5b-turkish-fc")
12
13messages = [
14 {"role": "system", "content": SYSTEM_PROMPT},
15 {"role": "user", "content": "main branch'ten feature/login adında yeni bir branch oluştur"},
16]
17# ... generate response