|
| ▲ | Flere-Imsaho 4 hours ago | parent | next [-] |
| Hi - first congratulations, System One looks really promising. The Doom demo really help me, at least, to understand how System One differs from LLMs. However the first demo (Side-by-side demonstration) - I'm struggling to understand what is going on here! |
| |
| ▲ | davideg an hour ago | parent | next [-] | | I was confused at first too, but it makes more sense when you read about their primitives. E.g. https://docs.typesafe.ai/primitives/noul The demo is showing System One producing its output in parallel very quickly and for little cost compared to an LLM generating its answers token-by-token. The "noul" type is used to evaluate a yes/no question and return the probability that the answer is yes. So this demo is showing System One offering much more nuanced responses and specific probabilities compared to an LLM's more crude responses (e.g. LLM shows "true" or "false" compared to "0.9" or "0.07" probabilities that the answer to some question is true). | |
| ▲ | potatoman22 3 hours ago | parent | prev [-] | | I think that's to demonstrate its speed |
|
|
| ▲ | mckngbrd 4 hours ago | parent | prev | next [-] |
| here is how I attempted to explain it to my company's AI group chat, is this roughly accurate? "instead of autoregressive string output it instead outputs structured type-safe 'decisions' with probabilities/confidence scores, each generated in parallel so sort of more like a Large Classification Model than a Large Language Model? or, maybe better to think of it as a sort of "shift left" in the LLM's transformer architecture, allowing you to replace the predefined token vocabulary of an LLM with a prescribed set of 'decisions' that need to be made based off the input context; and exposing those probabilities directly so they can be integrated into the system logic, instead of just sampling from top-K. all of this while still being instruction-tuned (!!!)" It's always been possible to build classification pipelines using LLM embeddings as the input. seems like this is a much more sophisticated / useful application of that concept |
| |
| ▲ | CompleteSkeptic 4 hours ago | parent [-] | | very accurate! the one nuance I'd get into is I'd call it "zero-shot" over "instruction-tuned" (the latter often implies a particular distribution), but very safe for sharing |
|
|
| ▲ | ttul 4 hours ago | parent | prev | next [-] |
| For many day-to-day computing use cases, Jev seems far better suited than an autoregressive language model, if for no other reason than it is not wasting compute thinking about anything other than how to spit out a decision. Do you have an architectural explainer yet for Jev or are you holding that close to your chest and letting the magic rip for now? |
| |
|
| ▲ | 4 hours ago | parent | prev | next [-] |
| [deleted] |
|
| ▲ | ianbutler 4 hours ago | parent | prev [-] |
| I see this super interestingly as the "subconscious" to the llms "conscious" for lack of better terms. I'm super interested in this for broad and rapid decision making in the context of consumer agents so will be signing up for sure. |
| |