Spaces:
Running
Running
File size: 19,920 Bytes
b03f016 | 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 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 | """Import all experiment data from local files into the Research Dashboard HF repo."""
import json
import os
import re
import sys
import tempfile
import uuid
import yaml
from pathlib import Path
from huggingface_hub import HfApi
# Inject HF_TOKEN via key_handler if available
try:
from key_handler import KeyHandler
KeyHandler.set_env_key()
except ImportError:
pass
def _resolve_workspace() -> Path:
"""Find the RACA workspace root."""
# 1. WORKSPACE env var
ws = os.environ.get("WORKSPACE")
if ws:
return Path(ws)
# 2. RACA_WORKSPACE env var
ws = os.environ.get("RACA_WORKSPACE")
if ws:
return Path(ws)
# 3. Walk up from this script looking for .raca/
current = Path(__file__).resolve().parent
while current != current.parent:
if (current / ".raca").is_dir():
return current
current = current.parent
# 4. cwd
return Path.cwd()
def _resolve_hf_org() -> str:
"""Resolve HF org from env > .raca/config.yaml > fallback."""
# 1. Env var
org = os.environ.get("HF_ORG")
if org and org != "your-org":
return org
# 2. .raca/config.yaml
ws = _resolve_workspace()
config_path = ws / ".raca" / "config.yaml"
if config_path.exists():
with open(config_path) as f:
cfg = yaml.safe_load(f) or {}
org = cfg.get("hf_org", "")
if org:
return org
# 3. Fallback
return "your-org"
WORKSPACE_ROOT = _resolve_workspace()
EXPERIMENTS_DIR = Path(os.environ.get("EXPERIMENTS_DIR", str(WORKSPACE_ROOT / "notes" / "experiments")))
HF_ORG = _resolve_hf_org()
DASHBOARD_REPO = f"{HF_ORG}/RACA_DASHBOARD"
# Experiments to exclude from dashboard import. All others are auto-discovered.
EXCLUDED_EXPERIMENTS: set[str] = set()
STAGE_MAP = {
"supported": "concluded",
"invalidated": "concluded",
"inconclusive": "inconclusive",
"exploring": "active",
"active": "active",
"pending": "planned",
}
def compute_completeness(exp_dir: Path, config: dict) -> int:
score = 0
if (exp_dir / "questions.md").exists():
score += 1
if (exp_dir / "EXPERIMENT_README.md").exists():
score += 1
if (exp_dir / "HUGGINGFACE_REPOS.md").exists():
score += 1
if (exp_dir / "experiment.yaml").exists():
score += 1
sub_dir = exp_dir / "experiments"
if sub_dir.exists() and any(sub_dir.glob("*.md")):
score += 1
return score
def parse_hf_repos(content: str) -> list[dict]:
"""Extract HF repo links from HUGGINGFACE_REPOS.md.
Matches three formats:
1. Markdown links: [description](https://huggingface.co/datasets/org/repo)
2. Bare URLs: https://huggingface.co/datasets/org/repo
3. Plain repo refs: org/repo-name (where org matches HF_ORG)
"""
repos = []
seen = set()
# 1. Markdown links [text](url) β preferred format, text becomes description
link_pattern = re.compile(r'\[([^\]]*)\]\(https://huggingface\.co/datasets/([^)]+)\)')
for match in link_pattern.finditer(content):
name, repo = match.groups()
if repo not in seen:
seen.add(repo)
repos.append({"repo": repo, "description": name.strip(), "date": ""})
# 2. Bare URLs not inside markdown links
bare_url_pattern = re.compile(r'(?<!\()https://huggingface\.co/datasets/([\w.-]+/[\w.-]+)')
for match in bare_url_pattern.finditer(content):
repo = match.group(1)
if repo not in seen:
seen.add(repo)
# Try to extract a description from the surrounding line
line_start = content.rfind("\n", 0, match.start()) + 1
line = content[line_start:match.start()].strip().rstrip(":")
# Strip markdown bold/label prefixes like "**Link:**"
desc = re.sub(r'^\*\*[^*]+\*\*\s*', '', line).strip().rstrip(":")
repos.append({"repo": repo, "description": desc, "date": ""})
# 3. Plain repo references like {HF_ORG}/something
hf_org = os.environ.get("HF_ORG", "your-org")
plain_pattern = re.compile(rf'(?:^|\s)({re.escape(hf_org)}/[\w-]+)')
for match in plain_pattern.finditer(content):
repo = match.group(1).strip()
if repo not in seen:
seen.add(repo)
repos.append({"repo": repo, "description": "", "date": ""})
return repos
def load_experiment(exp_dir: Path) -> tuple[dict, list[dict], list[dict], list[dict], list[dict]]:
"""Load a single experiment directory. Returns (experiment, runs, sub_experiments, experiment_notes, activity_log)."""
name = exp_dir.name
# Load config
config = {}
config_path = exp_dir / "experiment.yaml"
if config_path.exists():
with open(config_path) as f:
config = yaml.safe_load(f) or {}
# Hypothesis
hyp_raw = config.get("hypothesis", {})
if isinstance(hyp_raw, str):
hyp_raw = {"statement": hyp_raw}
hypothesis = {
"statement": hyp_raw.get("statement", ""),
"type": hyp_raw.get("type", "exploration"),
"status": hyp_raw.get("status", "pending"),
"success_criteria": hyp_raw.get("success_criteria", ""),
}
# Stage from hypothesis status
stage = STAGE_MAP.get(hypothesis["status"], "active")
if not (exp_dir / "EXPERIMENT_README.md").exists() and not config:
stage = "idea"
# Models
models_raw = config.get("models", [])
models = []
for m in models_raw:
if isinstance(m, dict):
mid = m.get("id", "")
# Clean up provider prefix for display
short = mid.split("/")[-1] if "/" in mid else mid
if short and short not in models:
models.append(short)
elif isinstance(m, str) and m not in models:
models.append(m)
# Tasks
tasks = []
eval_cfg = config.get("evaluation", {})
if isinstance(eval_cfg, dict):
task = eval_cfg.get("task", "")
if task:
tasks.append(task)
extra_tasks = eval_cfg.get("extra", {}).get("additional_tasks", [])
tasks.extend(extra_tasks)
# Tags
obs = config.get("observability", {})
tags = obs.get("tags", []) if isinstance(obs, dict) else []
# Notes from EXPERIMENT_README.md
notes = ""
readme_path = exp_dir / "EXPERIMENT_README.md"
if readme_path.exists():
with open(readme_path) as f:
notes = f.read()
# HF repos
hf_repos = []
hf_path = exp_dir / "HUGGINGFACE_REPOS.md"
if hf_path.exists():
with open(hf_path) as f:
hf_repos = parse_hf_repos(f.read())
# Wandb
wandb_project = obs.get("wandb_project", "") if isinstance(obs, dict) else ""
wandb_url = f"https://wandb.ai/{wandb_project}" if wandb_project else ""
# Completeness
completeness = compute_completeness(exp_dir, config)
# User's notes (user/ folder)
def _load_user_file(filename: str) -> str:
# Check user/ first, fall back to zaynes/ for backwards compat
for folder in ("user", "zaynes"):
p = exp_dir / folder / filename
if p.exists():
with open(p) as f:
content = f.read().strip()
if content and not content.startswith("<!--"):
return content
return ""
zayne_summary = _load_user_file("summary.md")
zayne_readme = _load_user_file("README.md")
zayne_findings = _load_user_file("FINDINGS.md")
zayne_decisions = _load_user_file("DECISIONS.md")
# Red team brief
red_team_brief = ""
rtb_path = exp_dir / "red_team_brief.md"
if rtb_path.exists():
with open(rtb_path) as f:
red_team_brief = f.read()
experiment = {
"id": name,
"name": config.get("name", name).replace("_", " ").replace("-", " ").title(),
"research_project": config.get("research_project", ""),
"hypothesis": hypothesis,
"stage": stage,
"completeness": completeness,
"models": models,
"tasks": tasks,
"tags": tags,
"hf_repos": hf_repos,
"wandb_url": wandb_url,
"notes": notes,
"zayne_summary": zayne_summary,
"zayne_readme": zayne_readme,
"zayne_findings": zayne_findings,
"zayne_decisions": zayne_decisions,
"red_team_brief": red_team_brief,
"created": config.get("created", ""),
"updated": config.get("updated", ""),
}
# Runs from config
runs = []
for run_raw in config.get("runs", []):
run = {
"id": run_raw.get("run_id", f"run_{uuid.uuid4().hex[:8]}"),
"experiment_id": name,
"condition": run_raw.get("condition", ""),
"model": run_raw.get("model", "").split("/")[-1] if run_raw.get("model") else "",
"cluster": run_raw.get("cluster", "local"),
"status": run_raw.get("status", "completed"),
"hf_dataset": run_raw.get("hf_dataset", ""),
"metrics": run_raw.get("metrics", {}),
"timestamp": run_raw.get("timestamp", ""),
"notes": run_raw.get("notes", ""),
}
runs.append(run)
# Sub-experiments
sub_experiments = []
sub_dir = exp_dir / "experiments"
if sub_dir.exists():
for md_file in sorted(sub_dir.glob("*.md")):
sub_name = md_file.stem.replace("_", " ").title()
with open(md_file) as f:
content = f.read()
# Try to extract hypothesis from first few lines
sub_hypothesis = ""
for line in content.split("\n")[:20]:
if "hypothesis" in line.lower() or "question" in line.lower():
sub_hypothesis = line.strip().lstrip("#").lstrip("*").strip()
break
sub_id = f"{name}__{md_file.stem}"
sub = {
"id": sub_id,
"experiment_id": name,
"name": sub_name,
"hypothesis": sub_hypothesis,
"status": "active",
"content_md": content,
"hf_repos": parse_hf_repos(content),
"created": config.get("created", ""),
"updated": config.get("updated", ""),
}
sub_experiments.append(sub)
# Collect ALL .md and .yaml files related to this experiment, organized by path
RESEARCH_ROOT = Path(os.environ.get("WORKSPACE", Path.home() / "Research"))
SKIP_DIRS = {"old", "__pycache__", ".venv", "node_modules", ".git", "zaynes", "user"}
experiment_notes = []
seen_paths = set()
NOTES_DIR = RESEARCH_ROOT / "notes"
def _add_file(file_path: Path):
"""Add a .md file to experiment_notes with its relative path."""
if file_path in seen_paths:
return
if file_path.suffix != ".md":
return
seen_paths.add(file_path)
try:
rel_path = str(file_path.relative_to(NOTES_DIR))
except ValueError:
try:
rel_path = str(file_path.relative_to(RESEARCH_ROOT))
except ValueError:
rel_path = str(file_path)
note_id = f"{name}__note_{rel_path.replace('/', '_').replace('.', '_')}"
with open(file_path) as f:
note_content = f.read()
experiment_notes.append({
"id": note_id,
"experiment_id": name,
"title": file_path.name,
"filename": file_path.name,
"relative_path": rel_path,
"content_md": note_content,
"created": config.get("created", ""),
"updated": config.get("updated", ""),
})
def _walk_dir(directory: Path):
"""Recursively collect .md files from a directory."""
if not directory.exists():
return
for item in sorted(directory.iterdir()):
if item.name.startswith(".") or item.name in SKIP_DIRS:
continue
if item.is_dir():
_walk_dir(item)
elif item.suffix == ".md":
_add_file(item)
# 1) All .md files in the experiment directory itself (recursive)
_walk_dir(exp_dir)
# 2) note_sources from config (within ~/Research/notes/)
for source_dir in config.get("note_sources", []):
source_path = Path(source_dir).expanduser()
_walk_dir(source_path)
# 3) Related works paths (papers that are local .md files)
for paper_ref in config.get("related_works", {}).get("papers", []):
if isinstance(paper_ref, str) and not paper_ref.startswith("arXiv"):
paper_path = RESEARCH_ROOT / paper_ref
if paper_path.exists() and paper_path.suffix == ".md":
_add_file(paper_path)
# Activity log β normalize entries to the schema the frontend expects:
# type: action|result|note|milestone (controls filter chips)
# scope: experiment|job|artifact|infra (controls scope dropdown)
# author: agent|researcher (controls badge color)
# message: display text
# timestamp: ISO 8601
activity_log = []
log_path = exp_dir / "activity_log.jsonl"
if log_path.exists():
with open(log_path) as f:
for line in f:
line = line.strip()
if not line:
continue
try:
entry = json.loads(line)
except json.JSONDecodeError:
continue
# Normalize missing fields
if "type" not in entry:
# Infer from event field if present
event = entry.get("event", "")
if any(k in event for k in ("created", "started", "submitted", "completed")):
entry["type"] = "milestone"
elif any(k in event for k in ("result", "upload", "artifact")):
entry["type"] = "result"
else:
entry["type"] = "action"
if "message" not in entry:
entry["message"] = entry.get("details", entry.get("event", ""))
if "author" not in entry:
entry["author"] = "agent"
if "scope" not in entry:
entry["scope"] = "experiment"
activity_log.append(entry)
return experiment, runs, sub_experiments, experiment_notes, activity_log
def main():
all_experiments = []
all_runs = []
all_subs = []
all_notes = []
all_activity_logs = {}
for exp_dir in sorted(EXPERIMENTS_DIR.iterdir()):
if not exp_dir.is_dir():
continue
if exp_dir.name.startswith((".","_")) or exp_dir.name == "old":
continue
if exp_dir.name in EXCLUDED_EXPERIMENTS:
continue
print(f"Loading: {exp_dir.name}")
exp, runs, subs, notes, activity_log = load_experiment(exp_dir)
all_experiments.append(exp)
all_runs.extend(runs)
all_subs.extend(subs)
all_notes.extend(notes)
if activity_log:
all_activity_logs[exp_dir.name] = activity_log
print(f" -> {len(runs)} runs, {len(subs)} sub-experiments, {len(notes)} notes, {len(exp.get('hf_repos', []))} HF repos, {len(activity_log)} activity log entries")
print(f"\nTotal: {len(all_experiments)} experiments, {len(all_runs)} runs, {len(all_subs)} sub-experiments, {len(all_notes)} notes, {len(all_activity_logs)} experiments with activity logs")
# Load artifact data from RACA-PROJECT-MANIFEST
artifacts = []
try:
from datasets import load_dataset
manifest_ds = load_dataset(f"{HF_ORG}/RACA-PROJECT-MANIFEST", split="train")
for row in manifest_ds:
# Only include entries with experiment_id (artifact-pipeline entries)
if row.get("experiment_id"):
artifacts.append({k: v for k, v in row.items()})
print(f"Loaded {len(artifacts)} artifact entries from manifest")
except Exception as e:
print(f"Warning: Could not load manifest: {e}")
# Load summary findings
summary_path = EXPERIMENTS_DIR / "summary_findings.md"
summary_findings = []
if summary_path.exists():
with open(summary_path) as f:
content = f.read()
summary_findings = [{"content_md": content, "updated": os.path.getmtime(summary_path)}]
print(f"Loaded summary_findings.md ({len(content)} chars)")
# ββ Write to local backend/data/ βββββββββββββββββββββββββ
data_dir = WORKSPACE_ROOT / "tools" / "visualizer" / "backend" / "data"
data_dir.mkdir(parents=True, exist_ok=True)
all_data = {
"experiments": all_experiments,
"runs": all_runs,
"sub_experiments": all_subs,
"experiment_notes": all_notes,
"summary_findings": summary_findings,
"activity_logs": all_activity_logs,
"artifacts": artifacts,
}
for name, data in all_data.items():
out_path = data_dir / f"{name}.json"
with open(out_path, "w") as f:
json.dump(data, f, indent=2, default=str)
print(f"Wrote {name}.json locally ({len(data) if isinstance(data, list) else len(data)} records)")
# ββ Upload to HF ββββββββββββββββββββββββββββββββββββββββββ
if HF_ORG == "your-org":
print("\nSkipping HF upload (hf_org not configured). Local data written.")
print("Set hf_org in .raca/config.yaml or HF_ORG env to enable uploads.")
return
api = HfApi()
try:
api.create_repo(DASHBOARD_REPO, repo_type="dataset", exist_ok=True)
except Exception:
pass
# Upload each data type as a separate JSON file
for name, data in all_data.items():
with tempfile.NamedTemporaryFile("w", suffix=".json", delete=False) as f:
json.dump(data, f, indent=2, default=str)
tmp = f.name
print(f"Uploading {name}.json to HF ({len(data) if isinstance(data, list) else len(data)} records)...")
api.upload_file(
path_or_fileobj=tmp,
path_in_repo=f"{name}.json",
repo_id=DASHBOARD_REPO,
repo_type="dataset",
)
os.unlink(tmp)
# Disable the dataset viewer β our data is multi-schema JSON, not a tabular dataset
readme = f"""---
configs: []
viewer: false
---
# Research Dashboard Data
Internal data store for the RACA experiments dashboard. Not meant for direct browsing.
Use the dashboard at your local URL or HF Space to view experiments.
**Files:** experiments.json, runs.json, sub_experiments.json, experiment_notes.json, activity_logs.json, artifacts.json, summary_findings.json
"""
api.upload_file(
path_or_fileobj=readme.encode(),
path_in_repo="README.md",
repo_id=DASHBOARD_REPO,
repo_type="dataset",
)
print(f"\nDone! Data uploaded to {DASHBOARD_REPO}")
print("Local data also written to tools/visualizer/backend/data/")
# Bust the HF Space cache so the dashboard picks up the new data.
# The Space caches experiment data in memory; without this, uploads
# are invisible until the Space restarts.
import urllib.request
space_urls = [
f"https://{HF_ORG.replace('/', '-')}-dashboard.hf.space/api/experiments/sync",
"http://localhost:7860/api/experiments/sync", # local dev server
]
for url in space_urls:
try:
req = urllib.request.Request(url, method="POST")
urllib.request.urlopen(req, timeout=10)
print(f"Cache synced: {url}")
except Exception:
pass # Space may be down or not deployed β that's fine
if __name__ == "__main__":
main()
|