Spaces:
Running on Zero
Running on Zero
File size: 7,610 Bytes
9936912 | 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 | #!/usr/bin/env python3
"""Build and inspect a small, deterministic MLX semantic-retrieval pilot."""
from __future__ import annotations
import argparse
import json
import time
from pathlib import Path
import mlx.core as mx
import numpy as np
from mlx_lm import load
PROJECT_ROOT = Path(__file__).resolve().parents[1]
DEFAULT_INDEX_DIR = PROJECT_ROOT / "data" / "index" / "pilot"
MODEL_ID = "mlx-community/Qwen3-Embedding-0.6B-4bit-DWQ"
MODEL_REVISION = "6c3ae70858513f1a78e9cdca3cae330d9075cd2a"
TASK_INSTRUCTION = (
"Given a control-systems engineering query, retrieve technically relevant "
"passages, equations, and executable MATLAB or Python examples."
)
CHUNK_FILES = [
PROJECT_ROOT / "data" / "processed" / "chunks" / "knowledge_chunks.jsonl",
PROJECT_ROOT
/ "data"
/ "processed"
/ "web_collections_chunks"
/ "knowledge_chunks.jsonl",
PROJECT_ROOT
/ "data"
/ "processed"
/ "core_books_chunks"
/ "knowledge_chunks.jsonl",
PROJECT_ROOT
/ "data"
/ "processed"
/ "arxiv_chunks"
/ "knowledge_chunks.jsonl",
]
TOPICS = {
"controllability": [
"controllability",
"controllability matrix",
"kalman rank",
"reachable subspace",
"ctrb",
],
"h_infinity": [
"h infinity",
"hinfinity",
"mixed sensitivity",
"weighting function",
"small gain",
"hinfsyn",
],
"mpc": [
"model predictive control",
"receding horizon",
"finite horizon",
"input constraints",
"state constraints",
"terminal cost",
],
}
DEMO_QUERIES = [
"How do I test controllability of a continuous-time LTI system and compute the controllability matrix?",
"Explain mixed-sensitivity H-infinity synthesis using weighting functions on S, KS, and T.",
"How does model predictive control enforce input and state constraints over a finite horizon?",
]
def load_chunks() -> list[dict]:
chunks = []
for path in CHUNK_FILES:
if not path.exists():
continue
with path.open(encoding="utf-8") as stream:
for line in stream:
row = json.loads(line)
if row.get("text"):
row["chunk_file"] = str(path.relative_to(PROJECT_ROOT))
chunks.append(row)
return chunks
def keyword_score(text: str, terms: list[str]) -> int:
lowered = text.lower().replace("-", " ")
return sum(lowered.count(term.replace("-", " ")) for term in terms)
def select_pilot_chunks(chunks: list[dict], per_topic: int, distractors: int) -> list[dict]:
selected: dict[str, dict] = {}
for topic, terms in TOPICS.items():
ranked = sorted(
chunks,
key=lambda row: (
keyword_score(row["text"], terms),
row["token_count"],
row["chunk_id"],
),
reverse=True,
)
for row in (candidate for candidate in ranked if keyword_score(candidate["text"], terms) > 0):
copy = dict(row)
copy["pilot_topic"] = topic
selected.setdefault(copy["chunk_id"], copy)
if sum(item.get("pilot_topic") == topic for item in selected.values()) >= per_topic:
break
for row in sorted(chunks, key=lambda item: item["chunk_id"]):
if row["chunk_id"] in selected:
continue
copy = dict(row)
copy["pilot_topic"] = "distractor"
selected[copy["chunk_id"]] = copy
distractors -= 1
if distractors == 0:
break
return list(selected.values())
def query_text(query: str) -> str:
return f"Instruct: {TASK_INSTRUCTION}\nQuery:{query}"
def embed_text(model, tokenizer, text: str, max_tokens: int) -> np.ndarray:
token_ids = tokenizer.encode(text, add_special_tokens=True)
token_ids = token_ids[-max_tokens:]
hidden = model.model(mx.array([token_ids]))
vector = hidden[0, -1].astype(mx.float32)
vector = vector / mx.sqrt(mx.sum(vector * vector))
mx.eval(vector)
return np.asarray(vector, dtype=np.float32)
def build_index(index_dir: Path, per_topic: int, distractors: int, max_tokens: int) -> None:
chunks = select_pilot_chunks(load_chunks(), per_topic, distractors)
if not chunks:
raise RuntimeError("No chunks were found. Build the processed corpus first.")
print(f"Loading {MODEL_ID} at {MODEL_REVISION[:8]}...")
model, tokenizer = load(MODEL_ID, revision=MODEL_REVISION)
mx.reset_peak_memory()
started = time.perf_counter()
vectors = []
for index, chunk in enumerate(chunks, start=1):
vectors.append(embed_text(model, tokenizer, chunk["text"], max_tokens))
if index % 10 == 0 or index == len(chunks):
print(f"Embedded {index}/{len(chunks)} chunks")
elapsed = time.perf_counter() - started
matrix = np.stack(vectors).astype(np.float16)
index_dir.mkdir(parents=True, exist_ok=True)
np.save(index_dir / "embeddings.npy", matrix)
with (index_dir / "metadata.jsonl").open("w", encoding="utf-8") as stream:
for chunk in chunks:
stream.write(json.dumps(chunk, ensure_ascii=False) + "\n")
manifest = {
"model_id": MODEL_ID,
"model_revision": MODEL_REVISION,
"task_instruction": TASK_INSTRUCTION,
"chunks": len(chunks),
"dimensions": int(matrix.shape[1]),
"dtype": str(matrix.dtype),
"max_tokens": max_tokens,
"elapsed_seconds": elapsed,
"chunks_per_second": len(chunks) / elapsed,
"peak_mlx_memory_bytes": mx.get_peak_memory(),
}
(index_dir / "manifest.json").write_text(
json.dumps(manifest, indent=2) + "\n", encoding="utf-8"
)
print(json.dumps(manifest, indent=2))
def search(index_dir: Path, queries: list[str], top_k: int, max_tokens: int) -> None:
vectors = np.load(index_dir / "embeddings.npy").astype(np.float32)
with (index_dir / "metadata.jsonl").open(encoding="utf-8") as stream:
chunks = [json.loads(line) for line in stream]
print(f"Loading {MODEL_ID} for query embedding...")
model, tokenizer = load(MODEL_ID, revision=MODEL_REVISION)
for query in queries:
query_vector = embed_text(model, tokenizer, query_text(query), max_tokens)
scores = vectors @ query_vector
indices = np.argsort(scores)[::-1][:top_k]
print(f"\nQUERY: {query}")
for rank, index in enumerate(indices, start=1):
chunk = chunks[int(index)]
excerpt = " ".join(chunk["text"].split())[:260]
print(
f"{rank}. score={scores[index]:.4f} topic={chunk['pilot_topic']} "
f"source={chunk['source_id']}\n {excerpt}"
)
def main() -> None:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument("--index-dir", type=Path, default=DEFAULT_INDEX_DIR)
parser.add_argument("--build", action="store_true")
parser.add_argument("--query", action="append", default=[])
parser.add_argument("--top-k", type=int, default=5)
parser.add_argument("--per-topic", type=int, default=15)
parser.add_argument("--distractors", type=int, default=15)
parser.add_argument("--max-tokens", type=int, default=1024)
args = parser.parse_args()
if args.build:
build_index(args.index_dir, args.per_topic, args.distractors, args.max_tokens)
queries = args.query or DEMO_QUERIES
search(args.index_dir, queries, args.top_k, args.max_tokens)
if __name__ == "__main__":
main()
|