Instructions to use GordonChang/gemma3-12b-it-finetuned-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GordonChang/gemma3-12b-it-finetuned-v1 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("GordonChang/gemma3-12b-it-finetuned-v1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use GordonChang/gemma3-12b-it-finetuned-v1 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for GordonChang/gemma3-12b-it-finetuned-v1 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for GordonChang/gemma3-12b-it-finetuned-v1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for GordonChang/gemma3-12b-it-finetuned-v1 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="GordonChang/gemma3-12b-it-finetuned-v1", max_seq_length=2048, )
Training in progress, step 1400
Browse files- adapter_config.json +4 -4
- adapter_model.safetensors +1 -1
- training_args.bin +1 -1
adapter_config.json
CHANGED
|
@@ -23,13 +23,13 @@
|
|
| 23 |
"rank_pattern": {},
|
| 24 |
"revision": null,
|
| 25 |
"target_modules": [
|
| 26 |
-
"k_proj",
|
| 27 |
-
"up_proj",
|
| 28 |
"down_proj",
|
| 29 |
"v_proj",
|
| 30 |
-
"o_proj",
|
| 31 |
"gate_proj",
|
| 32 |
-
"
|
|
|
|
|
|
|
|
|
|
| 33 |
],
|
| 34 |
"task_type": "CAUSAL_LM",
|
| 35 |
"use_dora": false,
|
|
|
|
| 23 |
"rank_pattern": {},
|
| 24 |
"revision": null,
|
| 25 |
"target_modules": [
|
|
|
|
|
|
|
| 26 |
"down_proj",
|
| 27 |
"v_proj",
|
|
|
|
| 28 |
"gate_proj",
|
| 29 |
+
"k_proj",
|
| 30 |
+
"q_proj",
|
| 31 |
+
"up_proj",
|
| 32 |
+
"o_proj"
|
| 33 |
],
|
| 34 |
"task_type": "CAUSAL_LM",
|
| 35 |
"use_dora": false,
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 547779104
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:170af73ab417d46ee7aef07e2dadff445be245cd30717bd81d825d89b4aa7011
|
| 3 |
size 547779104
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5688
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fec3ac8e64b8463f3ced8bfa0ad95f906106e5e63f99468de0f423136b265588
|
| 3 |
size 5688
|