Views
No views yet
| Field | Value |
|---|---|
| Base model requested in Adaption | mistralai/Mistral-7B-Instruct-v0.2 |
| Adapter config base model | togethercomputer/Mistral-7B-Instruct-v0.2 |
| 12k full-run recommendation | google/gemma-3-4b-it |
| Training type | LoRA |
| Candidate AutoScientist run ID | 7ea2c71b-94d7-472d-8288-795ab5e0a2c3 |
| Candidate 8k dataset ID | 3103c6ac-7d61-4271-af62-41cb023de85e |
| Candidate latest status | Succeeded, 5/5 iterations |
| Candidate final best win rate | 52.45% |
| Completed at | 2026-08-07T11:24:15.731Z |
| Checkpoint SHA-256 | e03d0528384ede3ac7e0903c41ccc96ce4a12425874dc271e10fa92193b78070 |
| Diagnostic Llama run ID | 43b5486d-0bfc-4e9f-869e-a9892a679386 |
| Diagnostic Llama best win rate | 49.48%; not the final candidate |
| 12k source preflight dataset ID | 13b1c92a-a96b-4ce7-810b-4368ad6aa234 |
| Max iterations | 5 |
| Target win rate | 0.82 |
| Final best win rate | 52.45%; below target |
| LoRA rank | 16 |
| LoRA alpha | 32 |
| Learning rate | 1e-5 |
| Epochs | 1 |
enhanced_completion output failed the final-JSON preservation audit, while source prompt/completion columns passed. The 12k source preflight also passed row-count and final-JSON audit. The clean candidate run maps AutoScientist to Adaption's raw-upload columns, original_prompt and original_completion.| Evaluation | Base | Adapted | Delta |
|---|---|---|---|
| Adaption held-out category win rate | Pending | Pending | Pending |
| VeriSci verifier suite accuracy | Pending | Pending | Pending |
| Numeric/unit tasks | Pending | Pending | Pending |
| PDE/ODE tasks | Pending | Pending | Pending |
| Python code tests | Pending | Pending | Pending |
| Abstention tasks | Pending | Pending | Pending |
adapter_config.json:1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base_id = "togethercomputer/Mistral-7B-Instruct-v0.2"
5adapter_id = "TheJackBright/verisci-autoscientist-adapter"
6
7tokenizer = AutoTokenizer.from_pretrained(base_id)
8base = AutoModelForCausalLM.from_pretrained(base_id, device_map="auto")
9model = PeftModel.from_pretrained(base, adapter_id)