Views
No views yet
Qwen/Qwen2.5-72B-Instruct, fine-tuned using the Glint-Research/Fable-5-traces dataset via Unsloth.<think>...</think> tags.Qwen/Qwen2.5-72B-Instruct-bnb-4bitGlint-Research/Fable-5-traces (Merged CoT and agent traces)q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj)adamw_8bitbfloat16 / float16 hybrid tracking1from unsloth import FastLanguageModel
2import torch
3
4model, tokenizer = FastLanguageModel.from_pretrained(
5 model_name = "armzanaja/qwen2.5-72b-fable5-lora",
6 max_seq_length = 4096,
7 load_in_4bit = True, # Set to False if you have enough VRAM for 16-bit
8)
9FastLanguageModel.for_inference(model) # Enable 2x faster inference
10
11# Example Prompt
12messages = [
13 {"role": "user", "content": "Create a python script to analyze system logs and detect anomalies."}
14]
15
16inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to("cuda")
17outputs = model.generate(inputs, max_new_tokens=2048, temperature=0.7)
18
19print(tokenizer.decode(outputs[0], skip_special_tokens=False))llama.cpp:1# 1. Clone llama.cpp repository
2git clone [https://github.com/ggerganov/llama.cpp](https://github.com/ggerganov/llama.cpp)
3cd llama.cpp
4pip install -r requirements.txt
5
6# 2. Download the official conversion script tool
7# 3. Run the conversion script by pointing to the Base Qwen model and adding your LoRA adapter path
8python convert_hf_to_gguf.py --outfile qwen2.5-72b-fable5-Q4_K_m.gguf --outtype q4_k_m --lora-base Qwen/Qwen2.5-72B-Instruct armzanaja/qwen2.5-72b-fable5-lora