Irfanuruchi commited on
Commit
1be6fa3
·
verified ·
1 Parent(s): 925e6d7

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +149 -0
README.md ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+
6
+ pipeline_tag: text-generation
7
+
8
+ tags:
9
+ - civil-engineering
10
+ - structural-engineering
11
+ - building-engineering
12
+ - construction
13
+ - engineering
14
+ - qwen
15
+ - gguf
16
+ - llama.cpp
17
+ - ollama
18
+ - reasoning
19
+ - llm
20
+ - safety
21
+
22
+ base_model:
23
+ - Qwen/Qwen2.5-32B-Instruct
24
+
25
+ datasets:
26
+ - Irfanuruchi/buildeng
27
+ ---
28
+
29
+ # Qwen2.5-32B BuildEng GGUF (Q5_K_M)
30
+
31
+ Repository: `Irfanuruchi/qwen2.5-32b-buildeng-GGUF-Q5_K_M`
32
+
33
+ This repository contains the GGUF Q5_K_M quantized release of BuildEng V8 32B based on `Qwen/Qwen2.5-32B-Instruct`.
34
+
35
+ BuildEng is a domain-specialized engineering language model project focused on civil engineering, structural reasoning, construction workflows, field diagnostics, and conservative engineering-assistant behavior.
36
+
37
+ The model was trained to approach engineering problems cautiously instead of behaving like an overconfident general-purpose assistant. The primary focus is inspection-first reasoning, uncertainty handling, structural risk awareness, and separating symptoms from confirmed diagnosis.
38
+
39
+ This GGUF release allows the model to run through llama.cpp, Ollama, LM Studio, KoboldCpp, and other GGUF-compatible inference frameworks.
40
+
41
+ ---
42
+
43
+ # Quantization
44
+
45
+ Quant type: Q5_K_M
46
+
47
+ Original source: merged BuildEng V8 32B model
48
+
49
+ Conversion stack: llama.cpp GGUF conversion and quantization
50
+
51
+ The Q5_K_M quantization was selected as a higher-quality GGUF release focused on stronger reasoning preservation while still remaining practical for local inference.
52
+
53
+ ---
54
+
55
+ # Dedication
56
+
57
+ This release is dedicated to my father for his birthday.
58
+
59
+ He is a civil and building engineer, and one of the main reasons I chose engineering myself. A large part of how I understand responsibility, discipline, and technical thinking comes from him.
60
+
61
+ BuildEng is my own field connected to the engineering world that inspired me growing up.
62
+
63
+ > “My father is the engineer I looked up to long before I understood what engineering really meant.”
64
+
65
+ Thank you for everything.
66
+
67
+ ---
68
+
69
+ # Base Model
70
+
71
+ Qwen/Qwen2.5-32B-Instruct
72
+
73
+ ---
74
+
75
+ # Dataset
76
+
77
+ Dataset repository: `Irfanuruchi/buildeng`
78
+
79
+ Training dataset: BuildEng V8 Final
80
+
81
+ Total validated samples: 145,117
82
+
83
+ The BuildEng V8 dataset was designed primarily around civil and structural engineering workflows with conservative engineering reasoning behavior.
84
+
85
+ The dataset includes reinforced concrete beams, slabs, columns, footings, retaining walls, structural load paths, settlement reasoning, soil behavior, failure analysis, temporary bracing, temporary shoring, waterproofing failures, renovation unknowns, HVAC airflow reasoning, inspection workflows, uncertainty handling, contradiction handling, repair logic, multi-turn engineering diagnosis, and adversarial engineering prompts.
86
+
87
+ The dataset was intentionally structured to reduce unsafe certainty and encourage more cautious engineering behavior.
88
+
89
+ ---
90
+
91
+ # Main Behavior Goals
92
+
93
+ BuildEng 32B was trained to:
94
+
95
+ - separate symptoms from diagnosis
96
+ - avoid unsupported structural approval
97
+ - request missing engineering information
98
+ - reduce unsafe certainty
99
+ - follow inspection-first workflows
100
+ - recognize load-path concerns
101
+ - identify potentially unsafe field conditions
102
+ - support investigation and repair workflows
103
+ - distinguish serviceability concerns from structural-capacity concerns
104
+ - respond conservatively to cracking, settlement, corrosion, deflection, demolition, moisture, and structural damage scenarios
105
+
106
+ The model intentionally avoids behaving like an overconfident assistant.
107
+
108
+ ---
109
+
110
+ # Usage
111
+
112
+ Example llama.cpp usage:
113
+
114
+ ```bash
115
+ ./llama-cli \
116
+ -m buildeng-v8-32b-Q5_K_M.gguf \
117
+ -c 4096 \
118
+ -ngl 999
119
+ ```
120
+
121
+ Example Ollama Modelfile:
122
+
123
+ ```text
124
+ FROM ./buildeng-v8-32b-Q5_K_M.gguf
125
+
126
+ PARAMETER num_ctx 4096
127
+
128
+ SYSTEM """
129
+ You are BuildEng V8, a conservative civil and structural engineering assistant.
130
+ """
131
+ ```
132
+
133
+ ---
134
+
135
+ # Important Limitation
136
+
137
+ This model is not a licensed engineer and must not be used as final engineering approval, design certification, or construction sign-off.
138
+
139
+ It is intended for research, education, engineering-assistant workflows, drafting support, and preliminary engineering reasoning only.
140
+
141
+ Final decisions involving structural safety, demolition, occupancy, repairs, construction approval, or certification should always be reviewed and approved by a qualified licensed engineer.
142
+
143
+ ---
144
+
145
+ # Author
146
+
147
+ Irfan Uruchi
148
+
149
+ Part of my ongoing work on domain-specialized engineering language models, structural reasoning datasets, and practical civil/building engineering AI systems.