Introducing System One Models and Jev
431–440 of 513 posts
Re: Introducing System One Models and Jev
#432This is a valid tradeoff for one-off responses but if we're dealing with a distributed system (eg: Kafka), then only the high-confidence responses (>0.8) should move forward as input to the next service. If a low confidence output is propagated, then it can break the entire chain.
Re: Introducing System One Models and Jev
#433https://docs.typesafe.ai/primitives has a much better explanation
Re: Introducing System One Models and Jev
#434Re: Introducing System One Models and Jev
#435Earlier quoted context omitted.
I mean, it's a structured output model that (apparently) can't hallucinate. I don't mind the name.
It can't hallucinate, but it doesn't mean it can't make wrong decisions. Just because it adheres to a specific output format at all time, while LLMs have the output format at their mercy, then the claim of not hallucinating is made technically true. I think that this specific part is not super interesting if your harness just recovers from invalid LLM outputs. The latency and cost - yes, those are super interesting.
Would like to have something like in the original post but open weights.
Re: Introducing System One Models and Jev
#436"Does this contract contain ____?" is a pretty typical query for many industries, and then you can have follow up questions that nest down into further info about X, Y or Z thing.
Looks really good for that use case, especially with certainty as part of the output, as you could flag things that didn't have high enough of a certainty to human review.
I'm sure legora and the other legal AI tech softwares are all over this.
Re: Introducing System One Models and Jev
#437> Structured outputs slot into ordinary software as fuzzy decision rules: classify, route, score, extract, or branch where hand-written logic is too brittle. Oh, I have one of those use cases, matching people in genealogy trees. You can ask all sorts of questions: do the names match? Do they match within some edit distance? Do they match according to soundex/ metaphone rules (which are themselves a ginormous set of r…
You need blocking! Fundamentally this is an entity resolution problem. An LLM can score pairwise really well but scoring all the pairs would be insanely computationally difficult. If you can constrain the set of potential matches up front by querying the dataset for things that could be matches it gets a lot more tractable to use an LLM for this. Are there any heuristics you can use to reduce the search space? You me…
Thanks for the link, it is an interesting topic.
Re: Introducing System One Models and Jev
#438it can generate classes/models/routers etc via tool calls, doesnt write the actual code.
Re: Introducing System One Models and Jev
#439> Structured outputs slot into ordinary software as fuzzy decision rules: classify, route, score, extract, or branch where hand-written logic is too brittle. Oh, I have one of those use cases, matching people in genealogy trees. You can ask all sorts of questions: do the names match? Do they match within some edit distance? Do they match according to soundex/ metaphone rules (which are themselves a ginormous set of r…
It does not know enough about the records in the context of the overall dataset:
- what is the data quality and to what extent do we expect a errors in some fields - how unusual are certain values such as names in the context of the dataset as a whole, e.g. some names would be very common in some countries but rare in others.
I've written in more detail about this here: https://www.robinlinacre.com/fellegi_sunter_accuracy/
Re: Introducing System One Models and Jev
#440Doom demo is beyond impressive, even scary
It's very misleading. If I'm actually playing a game I don't get the coordinates of enemies sent back to me so that I can feed into my mouse to snap my crosshair to. It's looking through walls too, because it's working off structured state in text form. You could re-create this whole demo without using AI. Have an LLM generate the state machine for you and no model is required to run it.