Views
No views yet
| Parameter | Value |
|---|---|
| LoRA rank (r) | 8 |
| LoRA alpha | 8 |
| LoRA dropout | 0 |
| Target modules | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
| Trainable params | ~0.14% of total |
| Parameter | Value |
|---|---|
| Learning rate | 2e-5 |
| Epochs | 0.3 |
| Batch size (effective) | 16 (1 × 16 grad accum) |
| Max sequence length | 4096 |
| LR scheduler | cosine |
| Optimizer | AdamW 8-bit |
| Warmup steps | 10 |
| Weight decay | 0.01 |
| Precision | bfloat16 |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "astom-M/matsuo-llm-advanced-dbbench-bf16",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8 trust_remote_code=True
9)
10tokenizer = AutoTokenizer.from_pretrained(
11 "astom-M/matsuo-llm-advanced-dbbench-bf16",
12 trust_remote_code=True
13)1python -m vllm.entrypoints.openai.api_server \
2 --model astom-M/matsuo-llm-advanced-dbbench-bf16 \
3 --dtype bfloat16 \
4 --max-model-len 4096config.json does NOT contain quantization_config — clean bf16 model.torch.bfloat16 dtype.