Views
No views yet
gpt-oss-20b model that has been fine-tuned to act as an expert supply chain consultant.Note: This system prompt has been baked into the GGUF file's metadata as the default chat template. When this GGUF is loaded in a compatible client (like LM Studio, Ollama, or recent versions ofllama.cpp), this prompt will be applied automatically at the start of a conversation. While it's applied by default, it can still be overridden by providing a different system prompt at runtime.
FastLanguageModel.get_peft_model method.| Parameter | Value | Description |
|---|---|---|
r (Rank) | 16 | The rank of the LoRA matrices. |
lora_alpha | 32 | The scaling factor for the LoRA adapters. |
target_modules | ["q_proj", "k_proj", "v_proj", "o_proj", "gate_proj", "up_proj", "down_proj"] | The specific model layers where LoRA was applied. |
lora_dropout | 0 | Dropout probability for LoRA layers. |
bias | "none" | Specifies that no bias terms should be trained. |
use_gradient_checkpointing | "unsloth" | Enables Unsloth's optimized gradient checkpointing for memory savings. |
SFTConfig and passed to the SFTTrainer.| Parameter | Value | Description |
|---|---|---|
learning_rate | 2e-4 | The initial learning rate for the AdamW optimizer. |
num_train_epochs | 2 | The total number of times the model was trained on the entire dataset. |
per_device_train_batch_size | 4 | The number of examples processed per GPU in a single forward pass. |
gradient_accumulation_steps | 4 | Number of steps to accumulate gradients before a model update. |
| Effective Batch Size | 16 | (batch_size * grad_accum) The effective number of examples per update. |
optimizer | "adamw_8bit" | The memory-efficient 8-bit AdamW optimizer. |
lr_scheduler_type | "linear" | The learning rate decreases linearly from its initial value to zero. |
warmup_steps | 5 | Number of initial steps to gradually increase the learning rate. |
weight_decay | 0.01 | The amount of weight decay regularization applied. |
seed | 3407 | The random seed used for reproducibility. |