Views
No views yet
google/gemma-3-27b-it. It is an early S0 quality-improvement checkpoint trained from curated Hugging Face instruction, preference, math, and Japanese instruction rows ingested into RisingWave.google/gemma-3-27b-it and must comply with the base model license and access requirements.google/gemma-3-27b-itoka-unsloth-gemma3-27b-hf-quality-sft-100step-202605091{
2 "run_id": "oka-unsloth-gemma3-27b-hf-quality-sft-100step-20260509",
3 "runner": "unsloth",
4 "model_id": "google/gemma-3-27b-it",
5 "strategy": "27b_hf_quality_sft",
6 "dataset_labels": [
7 "hf:allenai/tulu-3-sft-mixture/train",
8 "hf:HuggingFaceH4/ultrachat_200k/train_sft",
9 "hf:HuggingFaceH4/ultrafeedback_binarized/train_prefs",
10 "hf:nvidia/OpenMathInstruct-2/train_1M",
11 "hf:microsoft/orca-math-word-problems-200k/train",
12 "hf:llm-jp/databricks-dolly-15k-ja/train"
13 ],
14 "fetched_rows": 1200,
15 "training_examples": 1200,
16 "output_dir": "/workspace/oka-unsloth-gemma3-27b-hf-quality-sft-100step-20260509",
17 "train_runtime_sec_total": 484.53579926490784,
18 "metrics": {
19 "train_runtime": 348.3248,
20 "train_samples_per_second": 1.148,
21 "train_steps_per_second": 0.287,
22 "total_flos": 3.21104786030592e+16,
23 "train_loss": 1.297047061920166,
24 "epoch": 0.3333333333333333
25 },
26 "max_memory_allocated_gb": 25.574787139892578,
27 "max_memory_reserved_gb": 26.623046875
28}5.0904 tok/s4.9798 tok/s2.17%inference_eval_20260509.json.1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3import torch
4
5base_model = "google/gemma-3-27b-it"
6adapter = "com-junkawasaki/oka-gemma3-27b-hf-quality-lora"
7
8tokenizer = AutoTokenizer.from_pretrained(adapter)
9model = AutoModelForCausalLM.from_pretrained(
10 base_model,
11 torch_dtype=torch.bfloat16,
12 device_map="auto",
13)
14model = PeftModel.from_pretrained(model, adapter)