File size: 7,854 Bytes
df98fca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | """Run the bio-experiment environment with Qwen3.5-2B as the planning agent."""
from __future__ import annotations
import json
import re
import sys
import time
from typing import Any, Dict, List, Optional
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from models import ActionType, ExperimentAction, ExperimentObservation
from server.hackathon_environment import BioExperimentEnvironment
MODEL_ID = "Qwen/Qwen3.5-2B"
MAX_EPISODE_STEPS = 12
ACTION_TYPES = [a.value for a in ActionType]
SYSTEM_PROMPT = """\
You are an expert biologist planning a single-cell experiment pipeline.
At each turn you see the experiment state and must pick the next step.
Action types (in typical order):
collect_sample, prepare_library, sequence_cells, run_qc, filter_data,
normalize_data, cluster_cells, differential_expression,
pathway_enrichment, marker_selection, validate_marker, synthesize_conclusion
Other actions: select_cohort, culture_cells, perturb_gene, perturb_compound,
integrate_batches, trajectory_analysis, regulatory_network_inference,
design_followup_experiment, request_subagent_review
Respond with ONLY valid JSON, nothing else:
{"action_type": "...", "method": null, "parameters": {}, "justification": "...", "confidence": 0.8}
"""
def format_observation(obs: ExperimentObservation) -> str:
parts = [
f"TASK: {obs.task.problem_statement}",
f"Organism: {obs.task.organism} | Tissue: {obs.task.tissue}",
f"Conditions: {', '.join(obs.task.conditions) or 'N/A'}",
f"Step: {obs.step_index} | Budget: ${obs.resource_usage.budget_remaining:,.0f} | Time: {obs.resource_usage.time_remaining_days:.0f}d",
]
if obs.pipeline_history:
last5 = obs.pipeline_history[-5:]
parts.append("History:")
for h in last5:
tag = "OK" if h.success else "FAIL"
parts.append(f" [{tag}] {h.action_type.value}: {h.output_summary[:80]}")
if obs.rule_violations:
parts.append(f"VIOLATIONS: {obs.rule_violations}")
if obs.discovered_markers:
parts.append(f"Markers: {obs.discovered_markers[:5]}")
return "\n".join(parts)
def parse_action(text: str) -> Optional[ExperimentAction]:
match = re.search(r"\{[^{}]*\}", text, re.DOTALL)
if not match:
return None
try:
d = json.loads(match.group())
except json.JSONDecodeError:
return None
action_type = d.get("action_type")
if action_type not in ACTION_TYPES:
return None
return ExperimentAction(
action_type=ActionType(action_type),
method=d.get("method"),
parameters=d.get("parameters") or {},
justification=d.get("justification"),
confidence=min(1.0, max(0.0, float(d.get("confidence", 0.5)))),
)
FALLBACK_SEQUENCE = [
ActionType.COLLECT_SAMPLE,
ActionType.PREPARE_LIBRARY,
ActionType.SEQUENCE_CELLS,
ActionType.RUN_QC,
ActionType.FILTER_DATA,
ActionType.NORMALIZE_DATA,
ActionType.CLUSTER_CELLS,
ActionType.DIFFERENTIAL_EXPRESSION,
ActionType.PATHWAY_ENRICHMENT,
ActionType.MARKER_SELECTION,
ActionType.SYNTHESIZE_CONCLUSION,
]
def fallback_action(step: int) -> ExperimentAction:
idx = min(step, len(FALLBACK_SEQUENCE) - 1)
return ExperimentAction(
action_type=FALLBACK_SEQUENCE[idx],
justification="fallback",
confidence=0.3,
)
def log(msg: str) -> None:
print(msg, flush=True)
def main():
log(f"Loading tokenizer for {MODEL_ID} ...")
tokenizer = AutoTokenizer.from_pretrained(
MODEL_ID, trust_remote_code=True,
)
log("Tokenizer loaded. Loading model (this downloads ~4 GB on first run) ...")
model = AutoModelForCausalLM.from_pretrained(
MODEL_ID,
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
log(f"Model loaded. Device: {model.device}")
eos_ids: List[int] = []
if tokenizer.eos_token_id is not None:
eos_ids.append(tokenizer.eos_token_id)
extra = tokenizer.convert_tokens_to_ids(["<|im_end|>", "<|endoftext|>"])
for tid in extra:
if isinstance(tid, int) and tid not in eos_ids:
eos_ids.append(tid)
log(f"EOS token ids: {eos_ids}")
env = BioExperimentEnvironment()
obs = env.reset()
log("\n" + "=" * 70)
log(f"TASK: {obs.task.problem_statement}")
log(f"Conditions: {obs.task.conditions}")
log(f"Budget: ${obs.task.budget_limit:,.0f} | Time: {obs.task.time_limit_days:.0f} days")
log("=" * 70)
cumulative_reward = 0.0
for step in range(MAX_EPISODE_STEPS):
user_msg = format_observation(obs)
messages = [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": user_msg},
]
try:
prompt = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
enable_thinking=False,
)
except TypeError:
prompt = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
)
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
n_input = inputs["input_ids"].shape[1]
t0 = time.time()
with torch.no_grad():
output_ids = model.generate(
**inputs,
max_new_tokens=200,
do_sample=True,
temperature=0.7,
top_p=0.8,
top_k=20,
repetition_penalty=1.3,
eos_token_id=eos_ids if eos_ids else None,
)
gen_time = time.time() - t0
new_tokens = output_ids[0][n_input:]
response = tokenizer.decode(new_tokens, skip_special_tokens=True).strip()
action = parse_action(response)
used_fallback = False
if action is None:
log(f"\n [!] Parse failed, using fallback. Raw: {response[:150]}")
action = fallback_action(step)
used_fallback = True
tag = " [FALLBACK]" if used_fallback else ""
log(f"\nStep {step + 1}: {action.action_type.value}{tag} ({gen_time:.1f}s)")
if action.justification:
log(f" Rationale: {action.justification}")
obs = env.step(action)
if obs.latest_output:
lo = obs.latest_output
status = "OK" if lo.success else "FAIL"
log(f" [{status}] {lo.summary}")
if lo.warnings:
log(f" Warnings: {lo.warnings}")
step_reward = obs.reward
cumulative_reward += step_reward
log(f" Reward: {step_reward:+.3f} (cum: {cumulative_reward:+.3f})")
log(f" Budget: ${obs.resource_usage.budget_remaining:,.0f} | Time: {obs.resource_usage.time_remaining_days:.0f}d")
if obs.rule_violations:
log(f" Violations: {obs.rule_violations}")
if obs.done:
break
log(f"\n{'=' * 70}")
log("EPISODE COMPLETE" if obs.done else f"MAX STEPS ({MAX_EPISODE_STEPS})")
log(f" Steps: {obs.step_index}")
log(f" Total reward: {cumulative_reward:+.3f}")
log(f" Budget used: ${obs.resource_usage.budget_used:,.0f}")
log(f" Time used: {obs.resource_usage.time_used_days:.0f} days")
if obs.conclusions:
log(" Conclusions:")
for c in obs.conclusions:
log(f" [{c.claim_type}, conf={c.confidence:.2f}] {c.claim}")
log("=" * 70)
if __name__ == "__main__":
main()
|