Instructions to use EdisonScientific/MarkushGlyph with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use EdisonScientific/MarkushGlyph with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.5-2B-Base") model = PeftModel.from_pretrained(base_model, "EdisonScientific/MarkushGlyph") - Notebooks
- Google Colab
- Kaggle
Fix base model: point adapter at Qwen/Qwen3.5-2B-Base (the true training base; -Base, not the finetune)
Browse files- adapter_config.json +2 -2
adapter_config.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
},
|
| 6 |
"arrow_config": null,
|
| 7 |
"auto_mapping": null,
|
| 8 |
-
"base_model_name_or_path": "Qwen/Qwen3.5-2B",
|
| 9 |
"bias": "none",
|
| 10 |
"corda_config": null,
|
| 11 |
"ensure_weight_tying": false,
|
|
@@ -58,4 +58,4 @@
|
|
| 58 |
"use_dora": false,
|
| 59 |
"use_qalora": false,
|
| 60 |
"use_rslora": false
|
| 61 |
-
}
|
|
|
|
| 5 |
},
|
| 6 |
"arrow_config": null,
|
| 7 |
"auto_mapping": null,
|
| 8 |
+
"base_model_name_or_path": "Qwen/Qwen3.5-2B-Base",
|
| 9 |
"bias": "none",
|
| 10 |
"corda_config": null,
|
| 11 |
"ensure_weight_tying": false,
|
|
|
|
| 58 |
"use_dora": false,
|
| 59 |
"use_qalora": false,
|
| 60 |
"use_rslora": false
|
| 61 |
+
}
|