logoalt Hacker News

bilekastoday at 1:51 PM3 repliesview on HN

I'm curious if you could give me an example of something that couldn't be down deterministically. We have fuzzy search/matching too ? Regex is a monster when used correctly.


Replies

plmpsutoday at 3:06 PM

Pretty much anything for which you'd need intelligence of any kind. Questions such as: Do these two paragraphs have the same semantic meaning? Do they have the same sentiment? Do these two methods have the same contract? etc. Not all documents our code and even with code deterministic tools gets you only so far.

GeoAtreidestoday at 3:50 PM

A model can 'analyze' the intent of a patch, 'understand' it, and then correctly merge it in a derived codebase, going further than merely resolving conflicts.

SpicyLemonZesttoday at 2:54 PM

I sometimes find myself with thousands of log lines from a problematic execution and a known good reference, wondering nonspecifically if "something weird" happened in the first one. I don't think there's any matching-based solution there; you need a scan process that understands variations in execution time, object identifiers, etc. aren't meaningful.

show 1 reply