Live data from Hacker News

GPT-4o mini: advancing cost-efficient intelligence

openai.com

51–60 of 83 posts

Re: GPT-4o mini: advancing cost-efficient intelligence

#51

One of the weirdest side efects of 4o vs 4, was single character "hallucinations" where a completely correct answer would be wrong specifically by a single character I don't think I've seen anyone comment on it, but it was noticeable, specially when 4o was just released Has anyone noticed anything similar?

i saw this with github copilot a few days ago, not sure which model it was. it messed up a single character of markup causing the resulting output to be formatted weirdly

Re: GPT-4o mini: advancing cost-efficient intelligence

#52
post #32

>In pre-training, we filter out(opens in a new window) information that we do not want our models to learn from or output, such as hate speech, adult content, sites that primarily aggregate personal information, and spam. Great so now the model would be unable to recognize this type of content, do not use it for moderation.

I think this is a strong conclusion to jump to. Maybe it's better at spotting content that needs to be moderated because it stands out more from what it's been trained on?

Re: GPT-4o mini: advancing cost-efficient intelligence

#53
post #52
post #32

>In pre-training, we filter out(opens in a new window) information that we do not want our models to learn from or output, such as hate speech, adult content, sites that primarily aggregate personal information, and spam. Great so now the model would be unable to recognize this type of content, do not use it for moderation.

I think this is a strong conclusion to jump to. Maybe it's better at spotting content that needs to be moderated because it stands out more from what it's been trained on?

This is not really how these models work, if the sample is out of distribution then it would usually perform worse on the task assigned.

Re: GPT-4o mini: advancing cost-efficient intelligence

#54
post #20

The big news for me here is the 16k output token limit. The models keep increasing the input limit to outrageous amounts, but output has been stuck at 4k. I did a project to summarize complex PDF invoices (not “unstructured” data, but “idiosyncratically structured” data, as each vendor has a completely different format). GPT-4o did an amazing job at the extraction of line items, but I had to do a heuristic layer on t…

My excitement is now tempered a bit. I just tried one of the too-big invoices with the new model. After successfully getting a little farther than 4o could do, it just went into an endless loop of repeating the same line item until it ran out of output tokens. So…not really an improvement!

Re: GPT-4o mini: advancing cost-efficient intelligence

#55

Earlier quoted context omitted.

But only if it could do it with reasonable accuracy. The problem is that AI is one of the few technologies that doesn't just fail to do it's job but it fails and you might never notice until the error is already very costly if it hallucinated something crazy.

Surely this is still a massive problem for any real world enterprise use case unless you throw a human in the loop (which kills the productivity benefit) or you stamp a massive disclaimer on the output

Well, this thing I’m doing isn’t good enough for an audit or the like, but it’s good enough for sanity checking the budget and flagging things for further checking. And without the AI, you just wouldn’t do it at all, because it would take weeks to write a “parser” for these PDFs.

Actually, it doesn’t even need PDFs. It works just about as well if you just feed it PNGs of the pages. Crazy.

Re: GPT-4o mini: advancing cost-efficient intelligence

#56

One of the weirdest side efects of 4o vs 4, was single character "hallucinations" where a completely correct answer would be wrong specifically by a single character I don't think I've seen anyone comment on it, but it was noticeable, specially when 4o was just released Has anyone noticed anything similar?

I noticed the same problem but on 4, it was super-weird, everything was fine except one character, and it occurred consistently in the second and the next answers, never in the first one.

Re: GPT-4o mini: advancing cost-efficient intelligence

#57

Earlier quoted context omitted.

> Take a loss on every sale and make up for it with volume! If you take a loss on every sale, it is impossible to make up for it with volume. The result will be a loss magnified by the volume.

It's a joke. Sadly, the origin is unknown, but it's a joke that's well over 10 years old.

I believe it originates in the original dot.com bubble.

Re: GPT-4o mini: advancing cost-efficient intelligence

#58
post #54
post #20

The big news for me here is the 16k output token limit. The models keep increasing the input limit to outrageous amounts, but output has been stuck at 4k. I did a project to summarize complex PDF invoices (not “unstructured” data, but “idiosyncratically structured” data, as each vendor has a completely different format). GPT-4o did an amazing job at the extraction of line items, but I had to do a heuristic layer on t…

My excitement is now tempered a bit. I just tried one of the too-big invoices with the new model. After successfully getting a little farther than 4o could do, it just went into an endless loop of repeating the same line item until it ran out of output tokens. So…not really an improvement!

This has been my experience with any model with a large response token limit. I've had to work around this by running it through several times with specific questions about the data: extract text, extract tables, extract . They seem to do well on large input though so I just concat all the extracted info and things seem to work just fine.

Re: GPT-4o mini: advancing cost-efficient intelligence

#59
post #44

Earlier quoted context omitted.

Yeah, to put these prices in perspective: when tokens get this cheap, $1M buys you more than a trillion output tokens. To earn appreciable revenue at this price, an LLM company needs to be regularly generating multiple internets worth of text. On the one hand, generating multiple internets of text seems outlandish. But on the other hand, we're now approaching the point where you can start building LLMs into software…

I don't expect organizations to need to generate 1T output tokens, but 1T input tokens is common. Consider developers at a large company running queries with their entire codebase as context. Or lawyers plugging in the entire tax code to ask questions about. Each of them running dozens of queries per day on multi-millions of context input, it's going to add up quick.

Wouldn't a lawyer wanting to run queries against the entire tax code have a model that was fine-tuned on all of that data though? I mean, vs. doing RAG by sending the entire tax code on each request.

Re: GPT-4o mini: advancing cost-efficient intelligence

#60
post #6

It looks like the vision costs the same for GPT-4o vs mini. Both start with 150x150px and if you click the (i) it says mini uses way more base tokens and way more tile tokens, it still costs the same...

It almost sounds shady... "it's 30x cheaper per token but you now need 30x more tokens per image"? Has anyone already validated this based on billed cost? running a batch myself to check EDIT: Ok so I captioned 500 images in "low resolution" mode with GPT-4o-mini Each one took approximately: "completion_tokens=84, prompt_tokens=2989, total_tokens=3073" Reported GPT-4o-mini cost is $0.25 Using GPT-4o this would cost m…

Ok I now understand better what happened:

The price for using images as part of your prompt has indeed not changed between GPT-4o-mini and GPT-4o

Yet overall, captioning 500 images now costs me 5x less. This is because when I'm captioning an image, I'm providing both an image and a text prompt. The cost of using the image in the prompt stays the same, but the cost of the text dramatically dropped.

Post reply on HN