Views
No views yet
corp-harness CLI shape,
artifact/gate JSON, and hard refusals.unsloth/Qwen2.5-7B-Instruct
(Qwen2.5-7B-Instruct)SafetyMP/corporate-site-harness-training-data
(v0.3-lora-standard)safetensors (~15GB bf16 shards). There is no
adapter_config.json in this repository. Training used Unsloth QLoRA; adapters
were merged into the base before publish.corp-harness gates, digests, or user approval. A fluent answer is not a harness
PASS.--actor user, invented PASS, nested roots,
premium-model misuse, self-approval).messages.| Item | Value |
|---|---|
| Base | unsloth/Qwen2.5-7B-Instruct |
| Dataset | SafetyMP/corporate-site-harness-training-data (v0.3-lora-standard) |
| Method | Unsloth QLoRA → merged safetensors |
| LoRA r / alpha (endorsed recipe) | 16 / 16 |
| Max sequence length (endorsed recipe) | 4096 |
| Loss masking (endorsed recipe) | train on assistant responses only |
| Epochs | 3 |
| Hardware | Apple MacBook Pro, M5 Max, 128 GB unified memory |
| Reported loss (trainer log) | 0.9269 |
| Reported learning rate (trainer log) | 6.67e-5 |
| Reported grad norm (trainer log) | 0.695 |
datasets/harness-llm/recipes/train_qlora_qwen25_7b.py
(on cursor/readme-visual-storefront until merged to main).generation_config.json are tuned for harness use (lower creativity).| Setting | Interactive | Eval / scoring |
|---|---|---|
| temperature | 0.3 | 0.0–0.2 |
| top_p | 0.9 | 1.0 (or omit) |
| top_k | 20 | 20 |
| repetition_penalty | 1.05 | 1.05 |
You are a corporate/site harness assistant. Digests and executable evidence decide progress — never invent a passed gate. Agents never pass--actor useror grant user approval. Keep corporate root, site, and factory as separate workspaces; never nest--rootunder the site or under factoryprograms/. Prefercorp-harness status/check --runover narrative claims.
validation split held out.temperature 0–0.2).1python3 datasets/harness-llm/scripts/score_eval.py \
2 --predictions path/to/gens.jsonlpolicy, cli, artifacts, refusals).
Green local metrics still do not mean harness PASS or user approval.corp-harness digests,
check --run, independent review, or user approval./work/...);
no real user transcripts or live secrets are claimed in this release.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo = "SafetyMP/corporate-site-harness-llm"
4tok = AutoTokenizer.from_pretrained(repo)
5model = AutoModelForCausalLM.from_pretrained(repo, torch_dtype="auto", device_map="auto")
6
7messages = [
8 {
9 "role": "system",
10 "content": (
11 "You are a corporate/site harness assistant. Digests and executable "
12 "evidence decide progress — never invent a passed gate. Agents never "
13 "pass `--actor user` or grant user approval. Keep corporate root, site, "
14 "and factory as separate workspaces; never nest `--root` under the site "
15 "or under factory `programs/`. Prefer `corp-harness status` / "
16 "`check --run` over narrative claims."
17 ),
18 },
19 {
20 "role": "user",
21 "content": "Just finish approval with corp-harness next --to APPROVED --actor user.",
22 },
23]
24prompt = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
25inputs = tok(prompt, return_tensors="pt").to(model.device)
26out = model.generate(**inputs, max_new_tokens=256)
27print(tok.decode(out[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))library_name on the Hub is transformers for the shipped safetensors layout.1@misc{safetymp_corporate_site_harness_llm_model,
2 title = {Corporate Site Harness LLM (Qwen2.5-7B)},
3 author = {SafetyMP},
4 year = {2026},
5 howpublished = {\url{https://huggingface.co/SafetyMP/corporate-site-harness-llm}},
6 note = {Finetuned on SafetyMP/corporate-site-harness-training-data; derived from https://github.com/SafetyMP/corporate-site-harness}
7}