Views
No views yet
deepmind/code_contests mapped into RAG format.1from unsloth import FastLanguageModel
2model, tokenizer = FastLanguageModel.from_pretrained("yukiii02/qwen2.5-7b-flash-bug-hunting-unsloth")
3FastLanguageModel.for_inference(model)
4
5# Recommended Inference Settings for Coding:
6generation_params = {
7 "max_new_tokens": 512,
8 "temperature": 0.1, # Lower temperature for logical stability
9 "top_p": 0.95,
10 "top_k": 50,
11 "repetition_penalty": 1.1
12}
13
14# Recommended System Prompt:
15# 'You are an expert bug hunter. Trace the code step-by-step using RAG-style reasoning.'