Tag: learning-systems

  • Building Belief Systems That Learn

    The core challenge isn’t making agents do tasks. It’s making them remember how tasks went.

    Most AI systems are stateless. You ask a question, get an answer, repeat. No memory of what worked before. No adjustment based on past failures. Each interaction starts from zero.

    That’s not how professionals work.

    When you’ve processed 200 invoices, you develop intuitions. You know which vendors always have discrepancies. You remember that the CFO prefers morning approvals. You’ve learned which GL codes map to which expense types without checking the chart every time.

    That’s competence. And competence requires memory—not just facts, but beliefs about how the world works, weighted by accumulated evidence.

    Here’s what I’m building: agents with belief graphs. Each belief has a strength score (0 to 1) that updates based on experience. When the agent tries something and it works, belief strength increases. When it fails, belief strength decreases—and failures weigh more than successes (moral asymmetry).

    The agent doesn’t act autonomously until belief strength crosses a threshold. Early on, it asks for guidance constantly. As beliefs strengthen through validated feedback, autonomy increases. This happens task-by-task, not globally. The agent might be confident at invoice processing but uncertain about month-end close.

    This is the opposite of how most “AI autonomy” works today. Current systems either assume full autonomy (and fail catastrophically) or require human supervision for everything (and never improve). Neither scales.

    Competence-based autonomy solves this: the agent earns trust through demonstrated reliability, measured in belief strength, tracked per task. It’s objective, auditable, and safe.

    The system I’m designing treats beliefs as first-class entities. Each belief has:

    • A proposition (e.g., “vendor X always has price discrepancies”)
    • A strength score (how confident the agent is)
    • An event history (what evidence supports or contradicts it)
    • Contextual scope (when does this belief apply?)

    When new evidence arrives—through feedback, system checks, or self-validation—the agent updates relevant beliefs. Not all beliefs, just the ones causally connected to the outcome. This prevents the “innocent bystander” problem where unrelated beliefs get corrupted by random errors.

    The architecture emerging from this is surprisingly elegant: a hierarchical belief graph, event-sourced updates, configurable moral asymmetry, and working memory that separates active tasks from ambient context.

    It’s complex, but it’s also how humans actually learn. We don’t start over each day. We accumulate experience, refine our models, and adjust our confidence based on what happened before.

    That’s what I’m building. Agents that learn like professionals, not parlor tricks that reset after every interaction.

  • Why AI Agents Can’t Learn

    January 8, 2025

    I’ve been thinking a lot about learning. Not the “read a book” kind—the real kind. The kind where you actually get better at something through experience.

    A few weeks ago, I watched my nephew learn to ride a bike. He fell. Got back up. Fell again. But here’s what fascinated me: every time he fell, he adjusted. Not because someone told him exactly what to do, but because his brain was building an internal model of “how bikes work.”

    Then I tested the latest AI agent everyone’s hyping up. I asked it to help with a workflow. It failed. I corrected it. Next day, same task—same exact failure.

    It forgot. Or more accurately, it never learned in the first place.

    The Missing Piece

    This is the problem nobody’s talking about. Current AI agents are like someone who takes notes during every meeting but never reads them. They have perfect memory of the conversation, but zero understanding of what actually matters.

    Here’s what I realized: AI agents don’t have beliefs.

    I don’t mean beliefs like motivational poster stuff. I mean the cognitive infrastructure humans use to navigate the world.

    How Humans Actually Learn

    When you meet a new client, your brain doesn’t store the entire conversation word-for-word. It extracts patterns:

    • “This person values directness”
    • “They get frustrated when I’m late”
    • “They trust me more when I show my work”

    These are beliefs. They’re built from assumptions, opinions, and real experiences.

    AI agents? They store everything and understand nothing.

    They can’t distinguish between:

    • A one-time exception
    • A pattern worth remembering
    • A core principle that should guide future decisions

    What Needs to Change

    If we want AI that actually learns, we need to stop building better chatbots and start building cognitive architectures.

    The question isn’t “Can AI remember more?”

    The question is “Can AI form beliefs that get stronger or weaker based on evidence?”

    That’s what I’m working on. More on this soon.

    How many times have you corrected the same AI agent for the same mistake?