Views
No views yet
Qwen/Qwen2.5-Coder-3B-InstructM-Alkassem/qwen2.5-coder-3b-agent-v1

T4 GPU.bigcode/self-oss-instruct-sc2-exec-filter-50k4000399310242500.6130ernie-research/MEnvData-SWE-Trajectory70010241501.29403.972.971.77agent_v2 result where the model:1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4MODEL_ID = "M-Alkassem/qwen2.5-coder-3b-final-merged"
5
6tokenizer = AutoTokenizer.from_pretrained(MODEL_ID, use_fast=True)
7if tokenizer.pad_token is None:
8 tokenizer.pad_token = tokenizer.eos_token
9
10model = AutoModelForCausalLM.from_pretrained(
11 MODEL_ID,
12 torch_dtype=torch.float16,
13 device_map="auto",
14)
15
16model.eval()M-Alkassem/qwen2.5-coder-3b-unsloth-loraM-Alkassem/qwen2.5-coder-3b-agent-v11@article{hui2024qwen2p5coder,
2 title={Qwen2.5-Coder Technical Report},
3 author={Hui, Binyuan and Yang, Jian and Cui, Zeyu and Yang, Jing and Liu, Dayiheng and Zhang, Liqun and Liu, Tianyang and Zhang, Jiawei and Yu, Bo and Lu, Kaican and others},
4 journal={arXiv preprint arXiv:2409.12186},
5 year={2024}
6}