Views
No views yet
| Trained at | 2026-08-26T09:32:31Z |
| Phase | sft |
| Base model | unsloth/Mistral-Small-24B-Instruct-2501-bnb-4bit |
| Dataset | anna-tch/tastee-notes-sft-dataset |
trained_at=2026-08-26T09:32:31Zphase=sftbase_model=unsloth/Mistral-Small-24B-Instruct-2501-bnb-4bitdataset=anna-tch/tastee-notes-sft-datasetchat_template=mistralmax_seq_length=4096load_in_4bit=Truesave_method=merged_16bitlora_r=128lora_alpha=32lora_dropout=0.1use_rslora=Truetarget_modules=q_proj,k_proj,v_proj,o_projmax_steps=400batch_size=8grad_accum=2effective_batch=16learning_rate=5e-05embedding_lr=1e-05warmup_steps=10weight_decay=0.01optim=adamw_8bitlr_scheduler_type=linearseed=3407completion_only=Trueeval_steps=20early_stopping_patience=5best_checkpoint=outputs/2026-08-26/Mistral-Small-24B-Instruct-2501-bnb-4bit/wine-inst/checkpoint-160train_rows=1438val_rows=360train_loss=0.3091eval_loss=0.6007651686668396output_dir=outputs/2026-08-26/Mistral-Small-24B-Instruct-2501-bnb-4bit/wine-inst1from unsloth import FastLanguageModel
2
3model_id = "anna-tch/unsloth-mistral-wine-sft"
4model, tokenizer = FastLanguageModel.from_pretrained(
5 model_name=model_id,
6 max_seq_length=4096,
7 load_in_4bit=True,
8)