Instructions to use i0445/islm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use i0445/islm with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-4B-Instruct-2507") model = PeftModel.from_pretrained(base_model, "i0445/islm") - Notebooks
- Google Colab
- Kaggle
i+1 Story SLM โ QLoRA adapter
LoRA adapter over Qwen/Qwen3-4B-Instruct-2507 that writes comprehensible-input (i+1) language-learning stories in
English, Chinese, and Japanese: every story stays inside a known-vocabulary set, adds at most one
new word per sentence, recurs each target word >=3x, keeps new words inferable, and reads as a real
story. See the dataset and eval harness for the behavior spec and base-vs-tuned numbers.
Load
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
base = "Qwen/Qwen3-4B-Instruct-2507"
tok = AutoTokenizer.from_pretrained(base)
model = AutoModelForCausalLM.from_pretrained(base, device_map="auto")
model = PeftModel.from_pretrained(model, "i0445/islm")
- Downloads last month
- 128
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support
Model tree for i0445/islm
Base model
Qwen/Qwen3-4B-Instruct-2507