johnoconnor0/lora-llama8b-aurora-baseline-2026-05-02
AURORA-Workflow-1 LoRA baseline — 2026-05-02
LoRA adapter for meta-llama/Meta-Llama-3-8B-Instruct, fit on the AURORA-Workflow-1 enriched SFT corpus on 2026-05-02. This is the H1 baseline for AURORA Stage-1 — the LoRA-tuned 8B-class transformer leg that the AURORA-M0 leg is compared against under the H1 decision rule.
H1 (verbatim). On structured workflow-apprenticeship tasks, an event-first AURORA-M0 model will achieve task success within 5 percentage points of a LoRA-tuned 8B-class transformer baseline while using at least 40 % less measured energy per successful task.
This adapter is the LoRA-tuned-8B side of that comparison.
Repository contents
Intermediate trainer checkpoints (100, 200, …, 600) are not published — only the final checkpoint-688. Re-running scripts/fit-lora-llama.py against the same enriched corpus + the same seed reproduces every intermediate checkpoint locally.
Configuration (per ADR-0033)
Quick start (PEFT)
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = AutoModelForCausalLM.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct")
tokenizer = AutoTokenizer.from_pretrained("Anthril/lora-llama8b-aurora-baseline-2026-05-02")
model = PeftModel.from_pretrained(base, "Anthril/lora-llama8b-aurora-baseline-2026-05-02")Quick start (llama.cpp)
./llama-cli \
-m Meta-Llama-3-8B-Instruct-Q4_K_M.gguf \
--lora ggml-adapter-model.gguf \
-p "<your prompt>"Training data
The fit consumed the AURORA-Workflow-1 enriched SFT corpus generated by scripts/generate-enriched-corpus.py. Grammar source: `Anthril/aurora-workflow-1`.
Fit provenance (from on-disk manifests)
Evaluation
This adapter is consumed by aurora/evaluation_centers/runners/lora_llama_runner.py during H1 evaluation. Per ADR-0035, the comparator requires notes["energy_source"] >= 1.0 on every per-episode result — i.e. measured energy from a recognised on-die collector. Hosts without one will see the comparator emit INCONCLUSIVE_SYNTHETIC_ENERGY.
Limitations and intended use
- Research only. This adapter is published for AURORA Stage-1 H1 evaluation runs. It is not optimised for general-purpose chat or instruction following.
- Llama-3 license. Use of the underlying base model is governed by Meta's Llama 3 Community License. The LoRA adapter weights here are AURORA-original but require the gated base model to run.
