There is an ongoing bug[1] with OpenAI's API, where it stops streaming responses after exactly 5 minutes. When I first came across the issue, I debugged it by writing a prompt along these lines: > Output every number from 1 to 10,000 in written form (e.g. "one", "two", etc.). Respond with one number per line in numeric order. As expected, the API would begin counting every number just as I asked. This would continue…
GPT-4 is not getting worse
171–180 of 186 posts
Re: GPT-4 is not getting worse
#172Earlier quoted context omitted.
The inability to resolve issues like the mentioned 5-minute timeout with OpenAI support even after months should be a red flag to not build any products based on their services.
There’s no real alternatives for a product that would need their service to begin with.
Re: GPT-4 is not getting worse
#173Earlier quoted context omitted.
The inability to resolve issues like the mentioned 5-minute timeout with OpenAI support even after months should be a red flag to not build any products based on their services.
Can you give me a use case where generating a response for more than five minutes is important or even desirable?
Re: GPT-4 is not getting worse
#174All of the tests are one-shot questions and answers. Where I have found GPT-4 to be degrading significantly is with sustained discussion about technical topics. It starts forgetting important parts of the discussion almost straight away, long before the size of the context window becomes a factor. This wasn’t the case when it was new.
If your discussions involve code, you should try including the latest code on each prompt. The token window will start forgetting earlier parts of the conversation. For example: Now improve this feature with xyz Current code: -- {code} --
Re: GPT-4 is not getting worse
#175Earlier quoted context omitted.
That seems like a compelling argument at first, but the churches are full of intelligent people who will fail the same test because of childhood indoctrination. They have been conditioned not to care about what's objectively true, while the LLM simply doesn't possess a concept of objective truth in the first place. I suspect it will be easier for ML researchers to fix that problem in their software models than it wou…
Objective truth doesn’t exist. Any system which defines truth can only point to objects within that systems language space.
Re: GPT-4 is not getting worse
#176Earlier quoted context omitted.
I have this too, but on information extraction tasks, if the input document is too long or complex it will skip sections saying something along the lines of (instead of the list) (instead of the details) Very annoying when you want to extract everything and is hard to fix. Maybe they had some examples solved by abbreviation in the fine-tuning set and it damaged the model. It doesn't make sense to train this behaviour…
Using GPT models like that is unreliable anyway. I was talking to someone who was excited that he was able to use ChatGPT to convert a short tabular text listing of about 70 rows to a comma-separated list of the ids on each row, without having to e.g. import it into a spreadsheet or database. I pointed out that this couldn't be relied on, but he was skeptical. So I checked the output he pasted - there were only 69 id…
I had a vim session saved that had a command history with a handful of regex patterns to format copy/pasted bank statement pdfs converted to docx (don’t ask) that would format the data into a CSV. Load the session, paste the ugly data, and cycle through the command history. It was ugly but reliable, and after the initial time sink of writing it once, it became quite efficient and wasn’t made more so (say a VimScript function) because it worked well enough.
Re: GPT-4 is not getting worse
#177Earlier quoted context omitted.
There’s no real alternatives for a product that would need their service to begin with.
That still means it’s a no-go to build a business on such a product, in my book.
If you want something to build a business around, build with an OSS model. Your competitive moat is going to be trash, but that’s going to be true for anyone building an AI startup that’s backed by any LLM technology. It’s a fool’s gold rush right now no matter how you slice it.
Re: GPT-4 is not getting worse
#178Earlier quoted context omitted.
What did it use as sources for that?
The arguments are similar those made during during the height of the Cold War. Just substitute a different country name (or two). This is by no means the first time this situation has occurred.
Re: GPT-4 is not getting worse
#179Earlier quoted context omitted.
That still means it’s a no-go to build a business on such a product, in my book.
I agree 100%. It’s irresponsible and frankly a stupid idea for anyone to bet on building a business that relies on ChatGPTs API (or really any private API in 2023). We’ve seen time and time again (and more and more recently) companies weaponizing API dependence and fees to drive sucker-ons out of business. If you want something to build a business around, build with an OSS model. Your competitive moat is going to be…
Re: GPT-4 is not getting worse
#180Earlier quoted context omitted.
This gave me an idea to add the following to custom instructions: * At the end of all answers, related to programming, provide a list of 4 keywords or topics that represent first principles for the subject so I can research them later.*
How is this working?