Views
No views yet
pip install -U mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load(
4 "Irfanuruchi/qwen2.5-1.5b-buildeng-mlx-4bit"
5)
6
7prompt = """
8A homeowner reports diagonal cracks near a window corner.
9What should be inspected first?
10"""
11
12response = generate(
13 model,
14 tokenizer,
15 prompt=prompt,
16 max_tokens=256,
17)
18
19print(response)A homeowner reports diagonal cracks near a window corner. What should be inspected first?
First determine whether the crack is active or stable, document the crack pattern and width, inspect for signs of settlement, water intrusion, and drainage issues, and evaluate whether the wall is load-bearing before considering repairs.
| Format | Repository |
|---|---|
| Hugging Face | Irfanuruchi/qwen2.5-1.5b-buildeng |
| GGUF | Irfanuruchi/qwen2.5-1.5b-buildeng-GGUF-Q4_K_M |
| MLX 8-bit | Irfanuruchi/qwen2.5-1.5b-buildeng-mlx-8bit |