Views
No views yet
| パラメータ | 値 |
|---|---|
| ベースモデル | unsloth/gpt-oss-20b |
| max_seq_length | 2048 |
| lora_rank | 32 |
| lora_alpha | 64 |
| batch_size | 1 |
| gradient_accumulation | 1 |
| 実効バッチサイズ | 1 |
| num_generations | 2 |
| max_steps | 10 |
| learning_rate | 5e-05 |
| warmup_ratio | 0.1 |
| 量子化 | 4bit |
1from unsloth import FastLanguageModel
2
3model, tokenizer = FastLanguageModel.from_pretrained(
4 model_name="MakiAi/gpt-oss-2048-rl-v6-s10-r32-b1-lora",
5 max_seq_length=2048,
6 load_in_4bit=True,
7)