bhili_synthetic_qwen3.6_v0.1

Fine-tuned version of Qwen/Qwen3.6-27B for the Vistaar (unknown) use case.

Model Details

  • Base Model: Qwen/Qwen3.6-27B
  • Fine-tuning Method: LoRA (Low-Rank Adaptation)
  • Training Framework: HuggingFace Transformers + PEFT + DeepSpeed ZeRO-3
  • Merged: Full model weights (LoRA merged into base)

Training Configuration

LoRA Parameters

Parameter Value
Rank (r) 64
Alpha 64
Dropout 0.1
Target Modules ['q_proj', 'k_proj', 'v_proj', 'o_proj', 'gate_proj', 'up_proj', 'down_proj']
Trainable Parameters 318,767,104 / 27,214,765,568 (1.1713%)

Training Hyperparameters

Parameter Value
Epochs 1
Per-device Batch Size 1
Gradient Accumulation 8
Effective Batch Size 48
Learning Rate 2e-05
LR Scheduler cosine
Warmup Ratio N/A
Weight Decay 0.001
Max Grad Norm 1.0

Hardware & Performance

Metric Value
GPUs 6x H100 80GB
Training Duration 1.10 hours
Final Training Loss 1.4863
Dataset Size 5,131 samples
Max Sequence Length 4096

Dataset

  • Name: synthetic-qwen3.6-bhili-synthetic
  • Samples Used: N/A

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained(
    "kenpath/bhili_synthetic_qwen3.6_v0.1",
    torch_dtype=torch.bfloat16,
    device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained("kenpath/bhili_synthetic_qwen3.6_v0.1")

messages = [
    {"role": "user", "content": "Your question here"}
]

input_ids = tokenizer.apply_chat_template(
    messages,
    add_generation_prompt=True,
    return_tensors="pt",
).to(model.device)

output = model.generate(input_ids, max_new_tokens=512)
print(tokenizer.decode(output[0], skip_special_tokens=True))

License

This model inherits the license from the base model Qwen/Qwen3.6-27B.


Generated on 2026-06-04 06:31:57 | Merge took 2.9s

Downloads last month
6
Safetensors
Model size
27B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for kenpath/bhili_synthetic_qwen3.6_v0.1

Base model

Qwen/Qwen3.6-27B
Adapter
(330)
this model