←back to thread

112 points favoboa | 1 comments | | HN request time: 0.216s | source
Show context
rayxi271828 ◴[] No.44432067[source]
Wonder what I'm missing here. A smaller number of repetitive tasks - that's basically just simple coding + some RPA sprinkled on top, no?

Once you've settled down on a few well-known paths of action, wouldn't you want to freeze those paths and make it 100% predictable, for the most part?

replies(1): >>44433047 #
1. fnordpiglet ◴[] No.44433047[source]
An example I’ve done with a small language model is fine tuning a small model for evaluating semi structured user input for whether it’s likely sanctions evasion. The heuristic code to do this due to the fact is got a natural language component is very complex and has a relatively poor precision and recall. A fine tuned model pretty reliably classified the inputs and was pretty resilient to adversarial attacks while heuristics - partially due to their full determinism - were very brittle over time.

These sorts of “heuristics are surprising incapable while the semantic flexibility of language models are powerful” are surprisingly large. Even flexible validation mechanisms that take human entered semi fixed form inputs and reformat them to the expected input in a really reliable way and is much less frustrating to end users. Essentially any situation where abductive logic or natural language comes into the picture a small model does really well.

Both of those things - abductive logic and natural language - were largely unavailable as tools until recently. This pretty nearly rounds out the complete toolkit for making really robust and powerful (and usable) systems. You sacrifice a perceived determinism by admitting abductive logic and non determinism, but in my experience this warm blanket of the mathematically inclined wasn’t particularly robust in reality and systems often deterministically failed in complex and difficult if not impossible ways to avoid that a little bit of abductive reasoning could make it remarkably simpler and more robust.