Views
No views yet
Where is the main water shutoff in the Bluebird House?The main water shutoff is typically located under the kitchen sink...Location: basement utility room
Details: north wall, next to the red pressure tank1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base_model = "Qwen/Qwen2.5-3B-Instruct"
5adapter = "jlm429/birdhouse-in-your-soul-lora-demo"
6
7tokenizer = AutoTokenizer.from_pretrained(base_model)
8
9model = AutoModelForCausalLM.from_pretrained(
10 base_model,
11 device_map="auto",
12 trust_remote_code=True
13)
14
15model = PeftModel.from_pretrained(model, adapter)