Views
No views yet
checkpoint-2193)config.jsonmodel.safetensorstokenizer.jsontokenizer_config.jsonprocessor_config.jsongeneration_config.jsonchat_template.jinja1from transformers import AutoModelForCausalLM, AutoProcessor
2
3repo_id = "YOUR_NAME/qwen3.5-2b-lora-merged-2193"
4processor = AutoProcessor.from_pretrained(repo_id, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(repo_id, trust_remote_code=True)1llamafactory-cli chat \
2 --model_name_or_path YOUR_NAME/qwen3.5-2b-lora-merged-2193 \
3 --template qwen3_5 \
4 --trust_remote_code truemodel_name_or_path directly.adapter_name_or_path is needed after merging.