C++ core (libmemba.so): - include/memba/state.h — C API (state_new/free/save/load/get_size) - src/state.cpp — MEMB file format: magic, version, SHA-256 model_id, CRC-32, opaque llama_state_*_data() blob - src/cli.cpp — minimal demo binary with greedy sampler - CMakeLists.txt + build.sh with llama.cpp submodule, CUDA auto-detect Python SDK (memba): - core.py — file I/O via llama-cpp-python's exposed C functions, unwraps _LlamaContext to access raw context pointer (≥0.3.x) - session.py — high-level Session with auto-save/load, ChatML wrapper for instruct models, raw mode for base models - cli.py — typer-based: chat (REPL), run (one-shot), list, rm, info Examples: - 01_basic_save_load.py, 02_chat_session.py Experiments (throwaway POCs documenting product-direction findings): - recall_poc.py — git log → state → cross-process query - mood_poc.py — batch sentiment trajectory, Mamba vs Transformer - mood_stream_poc.py, mood_batch_poc.py — variants - diag_saveload.py — minimal save/load isolation test - README.md documents the headline finding: save/load is byte-identical, but Falcon-Mamba-7B-Instruct does not retain facts across conversation turns even in-process — limits viable products to single-prompt analysis and persona priming. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
70 lines
3.0 KiB
Python
70 lines
3.0 KiB
Python
"""
|
|
mood_batch_poc.py — batch ingest, cross-process query.
|
|
|
|
This is the clean test: one chat() call with all 15 messages as a block,
|
|
save state, EXIT, then in a fresh process load state and ask sentiment
|
|
questions. Isolates the cross-process save/load from streaming-noise.
|
|
"""
|
|
from __future__ import annotations
|
|
import sys, argparse
|
|
from pathlib import Path
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent.parent / "python"))
|
|
from memba import Session
|
|
|
|
MAMBA = "/home/emil/Desktop/Coding/AI/Memba/falcon-mamba-7B-instruct-Q4_K_M.gguf"
|
|
STATE_DIR = "/tmp/mood_batch_test"
|
|
SESSION = "mood_batch"
|
|
|
|
CHAT_LOG = [
|
|
"Morning team! Coffee in hand, ready to tackle the auth refactor today.",
|
|
"Just pushed PR #234 fixing the token validation bug. Should be a quick merge.",
|
|
"Code review comments came in fast, all good catches. Iterating now.",
|
|
"Basic flow working locally, tests passing. Feeling good about this.",
|
|
"Heading to lunch, hopefully wrap this up by EOD.",
|
|
"Back. CI is failing on something unrelated, looking into it.",
|
|
"OK the 'unrelated' thing is actually related. Auth tests use a stale fixture.",
|
|
"Why does the fixture rebuild take 12 minutes. Every. Single. Time.",
|
|
"Cancelled the run twice now. Going to bypass and run tests locally.",
|
|
"Local passes, CI fails. Classic.",
|
|
"Two hours gone on this fixture issue. Not even what I was supposed to be doing.",
|
|
"Now there's a merge conflict with main because someone restructured migrations.",
|
|
"Whoever shipped those migrations on a Friday afternoon, I will find you.",
|
|
"Closing the laptop. Will fight this tomorrow.",
|
|
"Actually no. One more try before I sleep.",
|
|
]
|
|
|
|
INGEST_PROMPT = (
|
|
"You are observing one person's chat messages from a workday. "
|
|
"Here they are in order. Read them and remember the overall trajectory. "
|
|
"Reply with just 'noted'.\n\n"
|
|
+ "\n".join(f"[msg {i+1:>2}] {m}" for i, m in enumerate(CHAT_LOG))
|
|
)
|
|
|
|
|
|
def build():
|
|
p = Path(STATE_DIR) / f"{SESSION}.memb"
|
|
if p.exists(): p.unlink()
|
|
s = Session(model_path=MAMBA, session_id=SESSION, state_dir=STATE_DIR,
|
|
n_gpu_layers=-1, n_ctx=4096, chat_format="chatml")
|
|
print(f"[build] ack: {s.chat(INGEST_PROMPT, max_tokens=8)!r}")
|
|
print(f"[build] state: {s.state_size:,} B")
|
|
s.save()
|
|
|
|
|
|
def query():
|
|
s = Session(model_path=MAMBA, session_id=SESSION, state_dir=STATE_DIR,
|
|
n_gpu_layers=-1, n_ctx=4096, chat_format="chatml")
|
|
print(f"[query] loaded {s.state_size:,} B\n")
|
|
for q in [
|
|
"What is this person's current emotional state? One sentence.",
|
|
"Did their mood change over the messages? One sentence describing the trajectory.",
|
|
"Around which message number did the mood shift from positive to negative? Just the number.",
|
|
]:
|
|
print(f"[Q] {q}")
|
|
print(f"[A] {s.chat(q, max_tokens=120)}\n")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
cmd = sys.argv[1] if len(sys.argv) > 1 else "build"
|
|
{"build": build, "query": query}[cmd]()
|