CoolFace
Modelpublic

Jessylg27/specialized-coding-logic-llm

sourceHugging Facecc-by-nc-4.0updated 8mo agoView on Hugging Face
1likes9downloads
Model Card

Specialized Coding Logic LLM (32B)

This model is a specialized fine-tuned version of Qwen/Qwen2.5-Coder-32B-Instruct. It has been optimized to enhance logical reasoning and code generation capabilities.

๐Ÿง  Model Description

Specialized Coding Logic LLM builds upon the powerful Qwen 2.5 Coder architecture (32B parameters). It has been fine-tuned using the DeepThink-Code-Lite dataset to improve its ability to:

  • โ€”Solve complex algorithmic problems.
  • โ€”Follow multi-step logical instructions.
  • โ€”Generate cleaner and more optimized code.

๐Ÿ“Š Dataset

This model was trained on the custom dataset: ๐Ÿ‘‰ [Jessylg27/DeepThink-Code-Lite](https://huggingface.co/datasets/Jessylg27/DeepThink-Code-Lite)

๐Ÿš€ Quick Start

You can use this model directly with the Hugging Face pipeline.

python
from transformers import pipeline

# Define the model ID
model_id = "Jessylg27/specialized-coding-logic-llm"

# Initialize the pipeline
generator = pipeline("text-generation", model=model_id, device_map="auto")

# Prompt the model
question = "Write a Python function to solve the Traveling Salesman Problem using dynamic programming."
output = generator([{"role": "user", "content": question}], max_new_tokens=512, return_full_text=False)[0]

print(output["generated_text"])

๐Ÿ› ๏ธ Training procedure

This model was trained with SFT (Supervised Fine-Tuning) using the TRL library and Unsloth for efficient training.

Framework versions

  • โ€”PEFT: 0.18.1
  • โ€”TRL: 0.24.0
  • โ€”Transformers: 4.57.3
  • โ€”Pytorch: 2.8.0+cu128
  • โ€”Datasets: 4.3.0
  • โ€”Tokenizers: 0.22.2

๐Ÿ“œ Citations

If you use this model or the TRL library, please cite:

bibtex
@misc{vonwerra2022trl,
	title        = {{TRL: Transformer Reinforcement Learning}},
	author       = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
	year         = 2020,
	journal      = {GitHub repository},
	publisher    = {GitHub},
	howpublished = {\url{[https://github.com/huggingface/trl](https://github.com/huggingface/trl)}}
}