Notes on OpenAI's new o1 chain-of-thought models
699 points by loganfrederick 9 months ago | 629 comments- layer8 9 months agoThe o1-preview model still hallucinates non-existing libraries and functions for me, and is quickly wrong about facts that aren't well-represented on the web. It's the usual string of "You're absolutely correct, and I apologize for the oversight in my previous response. [Let me make another guess.]"
While the reasoning may have been improved, this doesn't solve the problem of the model having no way to assess if what it conjures up from its weights is factual or not.
- MPSimmons 9 months agoThe failure is in how you're using it. I don't mean this as a personal attack, but more to shed light on what's happening.
A lot of people use LLMs as a search engine. It makes sense - it's basically a lossy compressed database of everything its ever read, and it generates output that is statistically likely - varying degrees of likeliness depending on the temperature, as well as how many times the particular weights your prompt ends up activating.
The magic of LLMs, especially one like this that supposedly has advanced reasoning, isn't the existing knowledge in its weights. The magic is that _it knows english_. It knows english at or above a level equal to most fluent speakers, and it also can produce output that is not just a likely output, but is a logical output. It's not _just_ an output engine. It's an engine that outputs.
Asking it about nuanced details in the corpus of data it has read won't give you good output unless it read a bunch of it.
On the other hand, if you were to paste the entire documentation set to a tool it has never seen and ask it to use the tool in a way to accomplish your goals, THEN this model would be likely to produce useful output, despite the fact that it had never encountered the tool or its documentation before.
Don't treat it as a database. Treat it as a naive but intelligent intern. Provide it data, give it a task, and let it surprise you with its output.
- williamdclt 9 months ago> Treat it as a naive but intelligent intern
That’s the problem: it’s a _terrible_ intern. A good intern will ask clarifying questions, tell me “I don’t know” or “I’m not sure I did it right”. LLMs do none of that, they will take whatever you ask and give a reasonable-sounding output that might be anything between brilliant and nonsense.
With an intern, I don’t need to measure how good my prompting is, we’ll usually interact to arrive to a common understanding. With a LLM, I need to put a huge amount of thought into the prompt and have no idea whether the LLM understood what I’m asking and if it’s able to do it.
- noisy_boy 9 months agoI feel like it almost always starts well, given the full picture, but then for non-trivial stuff, gets stuck towards the end. The longer the conversation goes, the more wheel-spinning occurs and before you know it, you have spent an hour chasing that last-mile-connectivity.
For complex questions, I now only use it to get the broad picture and once the output is good enough to be a foundation, I build the rest of it myself. I have noticed that the net time spent using this approach still yields big savings over a) doing it all myself or b) keep pushing it to do the entire thing. I guess 80/20 etc.
- ryoshu 9 months ago1000% this. LLMs can't say "I don't know" because they don't actually think. I can coach a junior to get better. LLMs will just act like they know what they are doing and give the wrong results to people who aren't practitioners. Good on OAI calling their model Strawberry because of Internet trolls. Reactive vs proactive.
- singingfish 9 months ago> LLMs do none of that, they will take whatever you ask and give a reasonable-sounding output that might be anything between brilliant and nonsense.
This is exactly why I’ve been objecting so much to the use of the term “hallucination” and maintain that “confabulation” is accurate. People who have spent enough time with acutelypsychotic people, and people experiencing the effects of long term alcohol related brain damage, and trying to tell computers what to do will understand why.
- berniedurfee 9 months agoI’m starting to think this is an unsolvable problem with LLMs. The very act of “reasoning” requires one to know that they don’t know something.
LLMs are giant word Plinko machines. A million monkeys on a million typewriters.
LLMs are not interns. LLMs are assumption machines.
None of the million monkeys or the collective million monkeys are “reasoning” or are capable of knowing.
LLMs are a neat parlor trick and are super powerful, but are not on the path to AGI.
LLMs will change the world, but only in the way that the printing press changed the world. They’re not interns, they’re just tools.
- jasondigitized 9 months agoHave you ever worked with an intern? They have personalities and expectations that need to be managed. They get sick. The get tired. They want to punch you if you treat them like a 24-7 bird dog. It's so much easier to not let perfect be the enemy of the good and just rapid fire ALL day at a LLM for any and everything I need help with. You can also just not use the LLM. Interns need to be 'fed' work or the ROI ends upside down. Is a LLM as good as a top tier intern. No, but with a LLM I can have 10 pretty good interns by opening 10 tabs.
- naasking 9 months ago> That’s the problem: it’s a _terrible_ intern. A good intern will ask clarifying questions, tell me “I don’t know” or “I’m not sure I did it right”.
An intern that grew up in a different culture then, where questioning your boss is frowned upon. The point is that the way to instruct this intern is to front-load your description of the problem with as much detail as possible to reduce ambiguity.
- arthurcolle 9 months agomany many teams are actively building SOTA systems to do this in ways previously unimagined. you can enqueue tasks and do whatever you want. I gotta say as a current gen LLM programmer person, I can completely appreciate how bad they are now - I recently tweeted about how I "swore off" AI tools but like... there are many ways to bootstrap very powerful software or ML systems around or inside these existing models that can blow away existing commercial implementations in surprising ways
- richerram 9 months agoI think this is the main issue with these tools... what people are expecting of them.
We have swallowed the pill that LLMs are supposed to be AGI and all that mumbo jumbo, when they are just great tools and as such one needs to learn to use the tool the way it works and make the best of it, nobody is trying to hammer a nail with a broom and blaming the broom for not being a hammer...
- raverbashing 9 months ago> A good intern will ask clarifying questions, tell me “I don’t know”
Your expectations are bigger than mine
(Though some will get stuck in "clarifying questions" and helplessness and not proceed neither)
- yukIttEft 9 months agoMakes me wonder if "I don't know" could be added to LLM: whenever an activation has no clear winner value (layman here), couldn't this indicate low response quality?
- jappgar 9 months agoThey've explicitly been trained/system-prompted to act that way. Because that's what the marketing teams at these AI companies want to sell.
It's easy to override this though by asking the LLM to act as if it were less-confident, more hesitant, paranoid etc. You'll be fighting uphill against the alignment(marketing) team the whole time though, so ymmv.
- Closi 9 months ago> With an intern, I don’t need to measure how good my prompting is, we’ll usually interact to arrive to a common understanding.
With interns you absolutely do need to worry about how good your prompting is! You need to give them specific requirements, training, documentation, give them full access to the code base... 'prompting' an intern is called 'management'.
- jacobn 9 months agoIs this a dataset issue more than an LLM issue?
As in: do we just need to add 1M examples where the response is to ask for clarification / more info?
From what little I’ve seen & heard about the datasets they don’t really focus on that.
(Though enough smart people & $$$ have been thrown at this to make me suspect it’s not the data ;)
- valval 9 months agoReally it just does what you tell it to. Have you tried telling it “ask me clarifying questions about all the APIs you need to solve this problem”?
Huge contrast to human interns who aren’t experienced or smart enough to ask the right questions in the first place, and/or have sentimental reasons for not doing so.
- kranuck 9 months ago> have no idea whether the LLM understood what I’m asking
That's easy. The answer is it doesn't. It has no understanding of anything it does.
> if it’s able to do it
This is the hard part.
- 0xdeadbeefbabe 9 months agoA lot of interns are overconfident though
- mercer 9 months agoCan I have some of those sorts of interns?
- noisy_boy 9 months ago
- pedrosorio 9 months ago> It knows english at or above a level equal to most fluent speakers, and it also can produce output that is not just a likely output, but is a logical output
This is not an apt description of the system that insists the doctor is the mother of the boy involved in a car accident when elementary understanding of English and very little logic show that answer to be obviously wrong.
- ramraj07 9 months agoMany of my PhD and post doc colleagues who emigrated from Korea, China and India who didn’t have English as the medium of instruction would struggle with this question. They only recover when you give them a hint. They’re some of the smartest people in general. If you try to stop stumping these models with trick questions and ask it straightforward reasoning systems it is extremely performant (O1 is definitely a step up though not revolutionary in my testing).
- bonoboTP 9 months agoThis illustrates a different point. This is a variation on a well known riddle that definitely comes up in the training corpus many times. In the original riddle a father and his son die in the car accident and the idea of the original riddle is that people will be confused how the boy can be the doctor's son if the boy's father just died, not realizing that women can be doctors too and so the doctor is the boy's mother. The original riddle is aimed to highlight people's gender stereotype assumptions.
Now, since the model was trained on this, it immediately recognizes the riddle and answers according to the much more common variant.
I agree that this is a limitation and a weakness. But it's important to understand that the model knows the original riddle well, so this is highlighting a problem with rote memorization/retrieval in LLMs. But this (tricky twists in well-known riddles that are in the corpus) is a separate thing from answering novel questions. It can also be seen as a form of hypercorrection.
- ryanjshaw 9 months ago1. It didn't insist anything. It got the semi-correct answer when I tried [1]; note it's a preview model, and it's not a perfect product.
(a) Sometimes things are useful even when imperfect e.g. search engines.
(b) People make reasoning mistakes too, and I make dumb ones of the sort presented all the time despite being fluent in English; we deal with it!
I'm not sure why there's an expectation that the model is perfect when the source data - human output - is not perfect. In my day-to-day work and non-work conversations it's a dialogue - a back and forth until we figure things out. I've never known anybody to get everything perfectly correct the first time, it's so puzzling when I read people complaining that LLMs should somehow be different.
2. There is a recent trend where sex/gender/pronouns are not aligned and the output correctly identifies this particular gotcha.
[1] I say semi-correct because it states the doctor is the "biological" father, which is an uncorroborated statement. https://chatgpt.com/share/66e3f04e-cd98-8008-aaf9-9ca933892f...
- hmottestad 9 months agoReminds me of a trick question about Schrödinger's cat.
“I’ve put a dead cat in a box with a poison and an isotope that will trigger the poison at a random point in time. Right now, is the cat dead or alive?”
The answer is that the cat is dead, because it was dead to begin with. Understanding this doesn’t mean that you are good at deductive reasoning. It just means that I didn’t manage to trick you. Same goes for an LLM.
- achow 9 months agoWhat I'm not able to comprehend is why people are not seeing the answer as brilliant!
Any ordinary mortal (like me) would have jumped to the conclusion that answer is "Father" and would have walked away patting on my back, without realising that I was biased by statistics.
Whereas o1, at the very outset smelled out that it is a riddle - why would anyone out of blue ask such question. So, it started its chain of thought with "Interpreting the riddle" (smart!).
In my book that is the difference between me and people who are very smart and are generally able to navigate the world better (cracking interviews or navigating internal politics in a corporate).
- KoolKat23 9 months agoI'm noticing a strange common theme in all these riddles, it's being asked and getting wrong.
They're all badly worded questions. The model knows something is up and reads into it too much. In this case it's tautology, you would usually say "a mother and her son...".
I think it may answer correctly if you start off asking "Please solve the below riddle:"
There was another example yesterday which it solved correctly after this addition.(In that case the point of views were all mixed up, it only worked as a riddle).
- anon291 9 months agoKeep in mind that the system always chooses randomly so there is always a possibility it commits to the wrong output.
I don't know why openAi won't allow determinism but it doesn't, even with temperature set to zero
- 9 months ago
- fragmede 9 months agowhat's weird is it gets it right when I try it.
https://chatgpt.com/share/66e3601f-4bec-8009-ac0c-57bfa4f059...
- empath75 9 months agoThe reason why that question is a famous question is that _many humans get it wrong_.
- ramraj07 9 months ago
- flanked-evergl 9 months ago> The failure is in how you're using it.
People, for the most part, know what they know and don't know. I am not uncertain that the distance between the earth and the sun varies, but I'm certain that I don't know the distance from the earth to the sun, at least not with better precision than about a light week.
This is going to have to be fixed somehow to progress past where we are now with LLMs. Maybe expecting an LLM to have this capability is wrong, perhaps it can never have this capability, but expecting this capability is not wrong, and LLM vendors have somewhat implied that their models have this capability by saying they won't hallucinate, or that they have reduced hallucinations.
- vingt_regards 9 months ago> the distance from the earth to the sun, at least not with better precision than about a light week
The sun is eight light minutes away.
- arb_ 9 months agoEmpirically, they have reduced hallucinations. Where do OpenAI / Anthropic claim that their models won't hallucinate?
- vingt_regards 9 months ago
- EagnaIonat 9 months ago> Treat it as a naive but intelligent intern.
You are falling into the trap that everyone does. In anthropomorphising it. It doesn't understand anything you say. It just statistically knows what a likely response would be.
Treat it as text completion and you can get more accurate answers.
- TeMPOraL 9 months ago> You are falling into the trap that everyone does. In anthropomorphising it. It doesn't understand anything you say.
And an intern does?
Anthropomorphising LLMs isn't entirely incorrect: they're trained to complete text like a human would, in completely general setting, so by anthropomorphising them you're aligning your expectations with the models' training goals.
- MPSimmons 9 months agoOh no, I'm well aware that it's a big file full of numbers. But when you chat with it, you interact with it as though it were a person so you are necessarily anthropomorphizing it, and so you get to pick the style of the interaction.
(In truth, I actually treat it in my mind like it's the Enterprise computer and I'm Beverly Crusher in "Remember Me")
- TeMPOraL 9 months ago
- re-thc 9 months ago> Treat it as a naive but intelligent intern.
That's the crux of the problem. Why and who would treat it as an intern? It might cost you more in explaining and dealing with it than not using it.
The purpose of an intern is to grow the intern. If this intern is static and will always be at the same level, why bother? If you had to feed and prep it every time, you might as well hire a senior.
- _sys49152 9 months agoive been doing exactly this for bout a year now. feed it words data, give it a task. get better words back.
i sneak in a benchmark opening of data every time i start a new chat - so right off the bat i can see in its response whether this chat session is gonna be on point or if we are going off into wacky world, which saves me time as i can just terminate and try starting another chat.
chatgpt is fickle daily. most days its on point. some days its wearing a bicycle helmet and licking windows. kinda sucks i cant just zone out and daydream while working. gotta be checking replies for when the wheels fall off the convo.
- ruthmarx 9 months ago> i sneak in a benchmark opening of data every time i start a new chat - so right off the bat i can see in its response whether this chat session is gonna be on point or if we are going off into wacky world, which saves me time as i can just terminate and try starting another chat.
I don't think it works like that...
- ruthmarx 9 months ago
- tjoff 9 months agoAnd how much data can you give it?
I'm not up to date with these things because I haven't found them useful. But with what you said, and previous limitations in how much data they can retain essentially makes them pretty darn useless for that task.
Great learning tool on common subjects you don't know, such as learning a new programming-language. Also great for inspiration etc. But that's pretty much it?
Don't get me wrong, that is mindblowingly impressive but at the same time, for the tasks in front of me it has just been a distracting toy wasting my time.
- MPSimmons 9 months ago>And how much data can you give it?
Well, theoretically you can give it up to the context size minus 4k tokens, because the maximum it can output is 4k. In practice, though, its ability to effectively recall information in the prompt drops off. Some people have studied this a bit - here's one such person: https://gritdaily.com/impact-prompt-length-llm-performance/
- ben_w 9 months ago> And how much data can you give it?
128,000 tokens, which is about the same as a decent sized book.
Their other models can also be fine-tuned, which is kinda unbounded but also has scaling issues so presumably "a significant percentage of the training set" before diminishing returns.
- pimeys 9 months agoIt is great for proof-reading text if you are not a native English speaker. Things like removing passive voice. Just give it your text and you get a corrected version out.
Use a cli tool to automate this from the cli. Ollama for local models, llm for openai.
- Workaccount2 9 months agoPeople never talk about Gemini, and frankly it's output is often the worst of SOTA models, but it's 2M context window is insane.
You can drop a few textbooks into the context window before you start asking questions. This dramatically improves output quality, however inference does take much much longer at large context lengths.
- MPSimmons 9 months ago
- Salgat 9 months agoExcept that it sometimes does do those tasks well. The danger in an LLM isn't that it sometimes hallucinates, the danger is that you need to be sufficiently competent to know when it hallucinates in order to fully take advantage of it, otherwise you have to fallback to double checking every single thing it tells you.
- usaar333 9 months ago> On the other hand, if you were to paste the entire documentation set to a tool it has never seen and ask it to use the tool in a way to accomplish your goals, THEN this model would be likely to produce useful output, despite the fact that it had never encountered the tool or its documentation before.
There's not much evidence of that. It only marginally improved on instruction following (see livebench.ai) and it's score as a swe-bench agent is barely above gpt-4o (model card).
It gets really hard problems better, but it's unclear that matters all that much.
> A lot of people use LLMs as a search engine.
Except this is where LLMs are so powerful. A sort of reasoning search engine. They memorized the entire Internet and can pattern match it to my query.
- lyu07282 9 months ago> The magic is that _it knows english_.
I couldn't agree more, this is exactly the strength of LLMs that what we should focus on. If you can make your problem fit into this paradigm, LLMs work fantastic. Hallucinations come from that massive "lossy compressed database", but you should consider that part as more like the background noise that taught the model to speak English, and the syntax of programming languages, instead of the source of the knowledge to respond with. Stop anthropomorphizing LLMs, play to it's strengths instead.
In other words it might hallucinate a API but it will rarely, if ever, make a syntax error. Once you realize that, it becomes a much more useful tool.
- __loam 9 months agoIt doesn't know anything. Stop anthropomorphizing the model. It's predictive text and no the brain isn't also predictive text.
- bsenftner 9 months ago> Treat it as a naive but intelligent intern.
I've found an amazing amount of success with a three step prompting method that appears to create incredibly deep subject matter experts who then collaborate with the user directly.
1) Tell the LLM that it is a method actor, 2) Tell the method actor they are playing the role of a subject matter expert, 3) At each step, 1 and 2, use the technical language of that type of expert; method actors have their own technical terminology, use it when describing the characteristics of the method actor, and likewise use the scientific/programming/whatever technical jargon of the subject matter expert your method actor is playing.
Then, in the system prompt or whatever logical wrapper the LLM operates through for the user, instruct the "method actor" like you are the film director trying to get your subject matter expert performance out of them.
I offer this because I've found it works very well. It's all about crafting the context in which the LLM operates, and this appears to cause the subject matter expert to be deeper, more useful, smarter.
- petesergeant 9 months agoThis is demonstrably wrong, because you can just add "is this real" to a response and it generally knows if it made it up or not. Not every time, but I find it works 95% of the time. Given that, this is exactly a step I'd hope an advanced model was doing behind the scenes.
- layer8 9 months ago> Treat it as a naive but intelligent intern. Provide it data, give it a task, and let it surprise you with its output.
Well, I am a naive but intelligent intern (well, senior developer). So in this framing, the LLM can’t do more than I can already do by myself, and thus far it’s very hit or miss if I actually save time, having to provide all the context and requirements, and having to double-check the results.
With interns, this at least improves over time, as they become more knowledgeable, more familiar with the context, and become more autonomous and dependable.
Language-related tasks are indeed the most practical. I often use it to brainstorm how to name things.
- acureau 9 months agoI've recently started using an LLM to choose the best release of shows using data scraped from several trackers. I give it hard requirements and flexible preferences. It's not that I couldn't do this, it's that I don't want to do this on the scale of multiple thousand shows. The "magic" here is that releases don't all follow the same naming conventions, they're an unstructured dump of details. The LLM is simultaneously extracting the important details, and flexibly deciding the closest match to my request. The prompt is maybe two paragraphs and took me an hour to hone.
- fragmede 9 months agoOoh yeah it's great for bouncing ideas on what to name things off of. You can give it something's function and a backstory and it'll come up with a list of somethings for you to pick and choose from.
- acureau 9 months ago
- jrflowers 9 months ago> The failure is in how you're using it
This isn’t true because, as you can read in the first sentence of the post you’re responding to, GP did give it a task like you recommend here
> Provide it data, give it a task, and let it surprise you with its output.
And it fails the task. Specifically it fails it by hallucinating important parts of accomplishing it.
> hallucinates non-existing libraries and functions
This post only makes sense if your advice to “let it surprise you with its output” is mandatory, like you’re using it wrong if you do not make yourself feel impressed by it.
- b33j0r 9 months agoYeah except. I’m priming it with things like curated docs from bevy latest, using the tricks, and testing context limits.
It’s still changing things to be several versions old from its innate kb pattern-matching or whatever you want to call it. I find that pretty disappointing.
Just like copilot and gpt4, it’s changing `add_systems(Startup, system)` to `add_startup_system(system.sytem())` and other pre-schedule/fanciful APIs—things it should have in context.
I agree with your approach to LLMs, but unfortunately “it’s still doing that thing.”
PS: and by the time I’d done those experiments, I ran out of preview, resets 5 days from now. D’oh
- tluyben2 9 months agoThis model is, thankfully, far more susceptible for longer and elaborate explanation as input. The rest (4,4o,Sonnet) seem to struggle with comprehensive explanation; this one seems to perform better with a spec like input.
- golergka 9 months ago> A lot of people use LLMs as a search engine.
GPT-4o is wonderful as a search engine if you tell it to google things before answering (even though it uses bing).
- acedTrex 9 months ago> Treat it as a naive but intelligent intern
So mostly useless then?
- 9 months ago
- gmerc 9 months agoInterns are cheaper than o1-preview
- icrbow 9 months agoNot for long.
- icrbow 9 months ago
- nsagent 9 months agoSorry, but that does not seem to be the case. A friend of mine who runs a long context benchmark on understanding novels [1] just ran an eval and o1 seemed to improve by 2.9% over GPT-4o (the result isn't on the website yet). It's great that there is an improvement, but it isn't drastic by any stretch. Additionally, since we cannot see the raw reasoning it's basing the answers off of, it's hard to attribute this increase to their complicated approach as opposed to just cleaner higher quality data.
EDIT: Note this was run over a dataset of short stories rather than the novels since the API errors out with very long contexts like novels.
- boomchinolo78 9 months agoIt's a good rebranding. It was getting ridiculous 3.5, 4, 4.5,
- boomchinolo78 9 months ago
- KoolKat23 9 months agoThis is a great description.
- croes 9 months agoIntelligent?
Just ask ChatGPT
How many Rs are in strawberry?
- fragmede 9 months agohttps://chatgpt.com/share/66e3f9e1-2cb4-8009-83ce-090068b163...
Keep up, that was last week's gotcha, with the old model.
- fragmede 9 months ago
- kylebenzle 9 months agoPerfectly well put! We should change the name from "AI" (which it is not) to something like, "lossy compressed databases".
- melagonster 9 months agoIf they use this name, they just say that they violate the copyright of all training data.
- gsinclair 9 months agoThat abbreviates to LCD. If we could make it LSD somehow, that would help to explain the hallucinations.
- melagonster 9 months ago
- williamdclt 9 months ago
- COAGULOPATH 9 months agoYes, this only helps multi-step reasoning. The model still has problems with general knowledge and deep facts.
There's no way you can "reason" a correct answer to "list the tracklisting of some obscure 1991 demo by a band not on Wikipedia." You either know or you don't.
I usually test new models with questions like "what are the levels in [semi-famous PC game from the 90s]?" The release version of GPT-4 could get about 75% correct. o1-preview gets about half correct. o1-mini gets 0% correct.
Fair enough. The GPT-4 line aren't meant to be search engines or encyclopedias. This is still a useful update though.
- barrkel 9 months agoo1-mini is a small model (knows a lot less about the world) and is tuned for reasoning through symbolic problems (maths, programming, chemistry etc.).
You're using a calculator as a search engine.
- mattmanser 9 months agoIt's actually much worse than that and you're inadvertently down playing how bad it is.
It doesn't even know mildly obsecure facts that are on the internet.
For example last night I was trying to do something with C# generics and it confidently told me I could use pattern matching on the type in a switch statwmnt, and threw out some convincing looking code.
You can't, it's impossible. It wàa completely wrong. When I told that this, it told me I was right, and proceeded to give me code that was even more wrong.
This is an obscure, but well documented, part of the spec.
So it's not about facts that aren't on the internet, it's just bad at facts fullstop.
What it's good at is facts the internet agrees on. Unless the internet is wrong. Which is not always a good thing with the way the language it uses to speak is so confident.
If you want to fuck with AI models as a bunch of code questions on Reddit, GitHub and SO with example code saying 'can I do X'. The answer is no, but chatgpt/codepilot/etc. will start spewing out that nonsense as if it's fact.
As for non-proframming, we're about to see the birth of a new SEO movement of tricking AI models to believe your 'facts'.
- bbarnett 9 months agoI wonder though, is the documentation only referenced a few places on the Internet, and are there also many forums with people pasting "Why isn't this working?" problems?
If there are a lot of people pasting broken code, now the LLM has all these examples of broken code, which it doesn't know are that, and only a couple of references to documentation. Worse, a well trained LLM may realise that specs change, and that even documentation may not be considered 100% accurate (for it is older, out of date).
After all, how many times have you had something updated, an API, a language, a piece of software, but the docs weren't updates? Happens all the time, sadly.
So it may believe newer examples of code, such as the aforementioned pasted code, might be more correct than the docs.
Also, if people keep trying to solve the same issue again, and keep pasting those examples again, well...
I guess my point here is, hallucinations come from multi-faceted issues, one being "wrong examples are more plentiful than correct". Or even "there's just a lot of wrong examples".
- koe123 9 months agoIts not always the right tool depending on the task. IMO using LLMs is also a skill, much like learning how to Google stuff.
E.g. apparently C# generics isn’t something its good at. Interesting, so don’t use it for that, apparently its the wrong tool. In contrast, its amazing at C++ generics, and thus speeds up my productivity. So do use it for that!
- neonsunset 9 months ago> For example last night I was trying to do something with C# generics and it confidently told me I could use pattern matching on the type in a switch statwmnt, and threw out some convincing looking code.
Just use it on an instance instead
var res = thing switch { OtherThing ot => …, int num => …, string s => …, _ => … };
- pcdoodle 9 months ago>>>As for non-proframming, we're about to see the birth of a new SEO movement of tricking AI models to believe your 'facts'.
This is kinda crazy to think about.
- bbarnett 9 months ago
- barrkel 9 months ago
- tptacek 9 months agoI've had the opposite experience with some coding samples. After reading Nick Carlini's post, I've gotten into the habit of powering through coding problems with GPT (where previously I'd just laugh and immediately give up) by just presenting it the errors in its code and asking it to fix them. o1 seems to be effectively screening for some of those errors (I assume it's just some, but I've noticed that the o1 things I've done haven't had obvious dumb errors like missing imports, and all my 4o attempts have).
- layer8 9 months agoMy experience is likely colored by the fact that I tend to turn to LLMs for problems I have trouble solving by myself. I typically don't use them for the low-hanging fruits.
That's the frustrating thing. LLMs don't materially reduce the set of problems where I'm running against a wall or have trouble finding information.
- tptacek 9 months agoI use LLMs for three things:
* To catch passive voice and nominalizations in my writing.
* To convert Linux kernel subsystems into Python so I can quickly understand them (I'm a C programmer but everyone reads Python faster).
* To write dumb programs using languages and libraries I haven't used much before; for instance, I'm an ActiveRecord person and needed to do some SQLAlchemy stuff today, and GPT 4o (and o1) kept me away from the SQLAlchemy documentation.
OpenAI talks about o1 going head to head with PhDs. I could care less. But for the specific problem we're talking about on this subthread: o1 seems materially better.
- mensetmanusman 9 months agoLLMs are not for expanding the sphere of human knowledge, but for speeding up auto-correct of higher order processing to help you more quickly reach the shell of the sphere and make progress with your own mind :)
- Al-Khwarizmi 9 months agoIt's funny because I'm very happy with the productivity boost from LLMs, but I use them in a way that is pretty much diametrically opposite to yours.
I can't think of many situations where I would use them for a problem that I tried to solve and failed - not only because they would probably fail, but in many cases it would even be difficult to know that it failed.
I use it for things that are not hard, can be solved by someone without a specialized degree that took the effort to learn some knowledge or skill, but would take too much work to do. And there are a lot of those, even in my highly specialized job.
- Terr_ 9 months agoLLMs: When the code can be made by an enthusiastic new intern with web-search and copy-paste skills, and no ability to improve under mentorship. :p
Tangentially related, a comic on them: https://existentialcomics.com/comic/557
- troupo 9 months ago> That's the frustrating thing. LLMs don't materially reduce the set of problems where I'm running against a wall or have trouble finding information.
As you step outside regular Stack Overflow questions for top-3 languages, you run into limitations of these predictive models.
There's no "reasoning" behind them. They are still, largely, bullshit machines.
- tptacek 9 months ago
- layer8 9 months ago
- faangguyindia 9 months ago>The o1-preview model still hallucinates non-existing libraries and functions for me, and is quickly wrong about facts that aren't well-represented on the web. It's the usual string of "You're absolutely correct, and I apologize for the oversight in my previous response. [Let me make another guess.]"
After that you switch to Claude Soñnet and after sometime it also gets stuck.
Problem with LLM is that they are not aware of libraries.
I've fed them library version, using requirements.txt, python version I am using etc...
They still make mistakes and try to use methods which do not exist.
Where to go from here? At this point I manually pull the library version I am using and go to its docs, I generate a page which uses the this library correctly (then I feed that example into LLM)
Using this approach works. Now I just need to automate it so that I don't have to manually find the library, create specific example which uses the methods I need in my code!
Directly feeding the docs isn't working well either.
- mediaman 9 months agoOne trick that people are using, when using Cursor and specifically Cursor's compose function, is to dump library docs into a text file in your repo, and then @ that doc file when you're asking it to do something involving that library.
That seems to eliminate a lot of the issues, though it's not a seamless experience, and it adds another step of having to put the library docs in a text file.
Alternatively, cursor can fetch a web page, so if there's a good page of docs you can bring that in by @ the web page.
Eventually, I could imagine LLMs automatically creating library text doc files to include when the LLM is using them to avoid some of these problems.
It could also solve some of the issues of their shaky understanding of newer frameworks like SvelteKit.
- throwup238 9 months agoCursor also has the shadow workspace feature [1] that is supposed to send feedback from linting and language servers to the LLM. I'm not sure whether it's enabled in compose yet though.
- throwup238 9 months ago
- mediaman 9 months ago
- fsndz 9 months agoMy point of view: this is a real advancement. I've always believed that with the right data allowing the LLM to be trained to imitate reasoning, it's possible to improve its performance. However, this is still pattern matching, and I suspect that this approach may not be very effective for creating true generalization. As a result, once o1 becomes generally available, we will likely notice the persistent hallucinations and faulty reasoning, especially when the problem is sufficiently new or complex, beyond the "reasoning programs" or "reasoning patterns" the model learned during the reinforcement learning phase. https://www.lycee.ai/blog/openai-o1-release-agi-reasoning
- shmatt 9 months agoI honestly can’t believe this is the hyped up “strawberry” everyone was claiming is pretty much AGI. Senior employees leaving due to its powers being so extreme
I’m in the “probabilistic token generators aren’t intelligence” camp so I don’t actually believe in AGI, but I’ll be honest the never ending rumors / chatter almost got to me
Remember, this is the model some media outlet reported recently that is so powerful OAI is considering charging $2k/month for
- vasco 9 months agoThe whole safety aspect of AI has this nice property that it also functions as a marketing tool to make the technology seem "so powerful it's dangerous". "If it's so dangerous it must be good".
- kqr 9 months ago> probabilistic token generators aren’t intelligence
Maybe this has been extensively discussed before, but since I've lived under a rock: which parts of intelligence do you think are not representable as conditional probability distributions?
- lewhoo 9 months ago> which parts of intelligence do you think are not representable as conditional probability distributions
Maybe I'm wrong here but a lot of our brilliance comes from acting against the statistical consensus. What I mean is, Nicolaus Copernicus probably consumed a lot of knowledge on how the Earth is the center of the universe etc. and probably nothing contradicting that notion. Can a LLM do that ?
- 9 months ago
- lewhoo 9 months ago
- synarchefriend 9 months ago"Senior employees leaving due to its powers being so extreme"
This never happened. No one said it happened.
"the model some media outlet reported recently that is so powerful OAI is considering charging $2k/month for"
The Information reported someone at a meeting suggested this for future models, not specifically Strawberry, and that it would probably not actually be that high.
- shmatt 9 months agoElon Musk and Ilya Sutskever Have Warned About OpenAI’s ‘Strawberry’ Jul 15, 2024 — Sutskever himself had reportedly begun to worry about the project's technology, as did OpenAI employees working on A.I. safety at the time.
https://observer.com/2024/07/openai-employees-concerns-straw...
And I’m ignoring the hundreds of Reddit articles speculating every time someone at OAI leaves
And of course that $2000 article was spread by every other media outlet like wildfire
I know I’m partially to blame for believing the hype, this is pretty obviously no better at stating facts or good code than what we’ve known for the past year
- shmatt 9 months ago
- 9 months ago
- firejake308 9 months agoI mean, considering how many tokens their example prompt consumed, I wouldn't be surprised if it costs ~$2k/month/user to run
- vasco 9 months ago
- feralderyl 9 months agoI think this model is a precursor model that is designed for agentic behavior. I expect very soon OpenAI to allow this model tool use that will allow it to verify its code creations and whatever else it claims through use of various tools like a search engine, a virtual machine instance with code execution capabilities, api calling and other advanced tool use.
- markk 9 months agoStupid question: Why can't models be trained in such a way to rate the authoritativeness of inputs? As a human, I contain a lot of bad information, but I'm aware of the source. I trust my physics textbook over something my nephew thinks.
- _fs 9 months agoo1-preview != o1.
In public coding AI comparison tests, results showed 4o scoring around 35%, o1-preview scoring ~50% and o1 scoring ~85%.
o1 is not yet released, but has been run through many comparison tests with public results posted.
- kristianp 9 months agoGood reminder. Why did OpenAI talk about o1 and not release it? o1-preview must be a stripped down version: cheaper to run somehow?
- barrkel 9 months agoDon't forget about o1-mini. It seems better than o1-preview for problems that fit it (don't require so much real world knowledge).
- arthurcolle 9 months agogpt-4 base was never released and this will be the same thing
- kristianp 9 months ago
- spaceman_2020 9 months agoI don’t really see this as a massive problem. Its code. If it doesn’t run, you ask it to reconsider, give some more info if necessary, and it usually gets it right.
The system doesn’t become useless if it takes 2 tries instead of 1 to get it right
Still saves an incredible amount of time vs doing it yourself
- latexr 9 months ago> Its code. If it doesn’t run, you ask it to reconsider
It is perfectly possible to have code that runs without errors but gives a wrong answer. And you may not even realise it’s wrong until it bites you in production.
- benterix 9 months agoWhile I agree, I saw it abused in this way a lot, in the sense that the code did what it was supposed to do in a given scenario but was obviously flawed in various was so it was just sitting there waiting for a disaster.
- troupo 9 months agoI haven't found a single instance where it saved me any significant amount of time. In all cases I still had to rewrite the whole thing myself, or abandon endeavor.
And a few times the amount of time I spent trying to coax a correct answer out of AI trumped any potential savings I could've had
- latexr 9 months ago
- HarHarVeryFunny 9 months agoTo the extent we've now got the output of the underlying model wrapped in an agent that can evaluate that output, I'd expect it to be able to detect it's own hallucinations some of the time and therefore provide an alternate answer.
It's like when an LLM gives you a wrong answer and all it takes is "are you sure?" to get it to generate a different answer.
Of course the underlying problem of the model not knowing what it knows or doesn't know persists, so giving it the ability to reflect on what it just blurted out isn't always going to help. It seems the next step is for them to integrate RAG and tool use into this agentic wrapper, which may help in some cases.
- jiggawatts 9 months ago> The o1-preview model still hallucinates non-existing libraries and functions for me
Oooh... oohhh!! I just had a thought: By now we're all familiar with the strict JSON output mode capability of these LLMs. That's just a matter of filtering the token probability vector by the output grammar. Only valid tokens are allowed, which guarantees that the output matches the grammar.
But... why just data grammars? Why not the equivalent of "tab-complete"? I wonder how hard it would be to hook up the Language Server Protocol (LSP) as seen in Visual Studio code to an AI and have it only emit syntactically valid code! No more hallucinated functions!
I mean, sure, the semantics can still be incorrect, but not the syntax.
- loremaster 9 months agoThis would be a big undertaking to get working for just one language+package-manager combination, but would be beautiful if it worked.
- TeMPOraL 9 months agoI still fail to see the overall problem. Hallucinating non-existing libraries is a good programming practice in many cases: you express your solution in terms of an imaginary API that is convenient for you, and then you replace your API with real functions, and/or implement it in terms of real functions.
- loremaster 9 months ago
- AbstractH24 9 months agoOne of the biggest problems with this generation of AI is how people conflate the natural language abilities and the access to what it knows.
Both abilities are powerful, but they are very different powers.
- motoboi 9 months agoJust pass a link to a GitHub issue and ask for a response or even a webpage to summarize and will see the beautiful hallucinations it will come up to as the model is not web browsing yet.
- empath75 9 months agoYou should not be asking it questions that require it to already know detailed information about apis and libraries. It is not good at that, and it will never be good at that. If you need it to write code that uses a particular library or api, include the relevant documentation and examples.
It's your right to dismiss it, if you want, but if you want to get some value out of it, you should play to it's strengths and not look for things that it fails at as a gotcha.
- timbaboon 9 months agoThe best one I got recently was after I pointed out that the method didn’t exist, it proposed another method and said “use this method if it exists” :D
- rcarr 9 months agoHas anyone tried asking it to generate the libraries/functions that it's hallucinating and seeing if it can do so correctly? And then seeing if it can continue solving the original problem with the new libraries? It'd be absolutely fascinating if it turns out it could do this.
- viraptor 9 months agoNot for libraries, but functions will sometimes get created if you work with an agent coding loop. If the tests are in the verification step, the code will typically be correct.
- 8n4vidtmkvmk 9 months agoI sometimes give it snippets of code and omit helper functions if they seem obvious enough, and it adds its own implementation into the output.
- 8n4vidtmkvmk 9 months ago
- viraptor 9 months ago
- xyproto 9 months agoJust ask it for things it has seen before on the internet and you're golden. Mixes of ideas, new ideas and precise and clear thinking; not so much.
- mrtesthah 9 months agoIt begs the question of whether we can supply a function to be called (e.g., one that compiles and runs code) to evaluate intermediate CoT results
- ttul 9 months agoIt seems OpenAI has decided to keep the CoT results a secret. If they were to allow the model to call out to tools to help fill in the CoT steps, then this might reveal what the model is thinking - something they do not want the outside world to know about.
I could imagine OpenAI might allow their own vetted tools to be used, but perhaps it will be a while (if ever) before developers are allowed to hook up their own tools. The risks here are substantial. A model fine-tuned to run chain-of-thought that can answer graduate level physics problems at an expert level can probably figure out how to scam your grandma out of her savings too.
- 8n4vidtmkvmk 9 months agoIt's only a matter of time. When some other company releases the tool, they likely will too.
- 8n4vidtmkvmk 9 months ago
- colordrops 9 months agoThe answer is yes if you are willing to code it. OpenAI supports tool calls. Even if it didn't you could just make multiple calls to their API and submit the result of the code execution yourself.
- cma 9 months agoThe intermediate CoT results aren't in the API.
- cma 9 months ago
- ttul 9 months ago
- kranuck 9 months agoThat problems feels somewhat fundamental to saying that these things have any ability to reason at all.
- kylebenzle 9 months ago> having no way to assess if what it conjures up from its weights is factual or not.
This comment makes no sense in the context of what an LLM is. To even say such a thing demonstates a lack of understandting of the domain. What we are doing here is TEXT COMPLETION, no one EVER said anything about being accurate and "true". We are building models that can complete text, what did you think an LLM was, a "truth machine"?
- panja 9 months agoI mean of course you're right, but then I question what's the usefulness?
- panja 9 months ago
- 9 months ago
- burtonator 9 months agoI'm honestly confused as to why it is doing this and why it thinks I'm right when I tell it that it is incorrect.
I've tried asking it factual information, and it asserts that it's incorrect but it will definitely hallucinate questions like the above.
You'd think the reasoning would nail that and most of the chain-of-thought systems I've worked on would have fixed this by asking it if the resulting answer was correct.
- MPSimmons 9 months ago
- bambax 9 months agoNear the end, the quote from OpenAI researcher Jason Wei seems damning to me:
> Results on AIME and GPQA are really strong, but that doesn’t necessarily translate to something that a user can feel. Even as someone working in science, it’s not easy to find the slice of prompts where GPT-4o fails, o1 does well, and I can grade the answer. But when you do find such prompts, o1 feels totally magical. We all need to find harder prompts.
Results are "strong" but can't be felt by the user? What does that even mean?
But the last sentence is the worst: "we all need to find harder prompts". If I understand it correctly, it means we should go looking for new problems / craft specific questions that would let these new models shine.
"This hammer hammers better, but in most cases it's not obvious how better it is. But when you stumble upon a very specific kind of nail, man does it feel magical! We need to craft more of those weird nails to help the world understand the value of this hammer."
But why? Why would we do that? Wouldn't our time be better spent trying to solve our actual, current problems, using any tool available?
- aubanel 9 months agoHe's speaking about his objective to make ever stronger LLMs: so for this his secondary objective is to measure their real performance.
The human preference is not that good of a proxy measurement: for instance, it can be gamed by making the model more assertive, causing the human error-spotting ability to decrease a lot [0].
So what he's really saying is that non-rigorous human vibe checks (like those LMSys Chatbot Arena is built on, although I love it) won't cut it anymore to evaluate models, because now models are past that point. Just like you can't evaluate how smart a smart person really is in a 2min casual conversation.
- causal 9 months agoIt's trivial to come up with prompts that 4o fails. If it's hard to come up with prompts that 1o succeeds on but 4o fails, that implies the delta is not that great.
- mft_ 9 months agoOr, the delta depends on the nature of the problem/prompt, we’ve not yet figured that out, there’s a relatively narrow range of prompts with large delta, and so finding those examples is a work in progress?
- mft_ 9 months ago
- prog_1 9 months agoie when you cant beat them, make new metrics
and you can absolutely evaluate how smart someone is in a 2min casual conversation. You wont be able to tell how well they are in some niche topic, but %insert something about different flavors of intelligence and how they do not equate do subject matter expertise%
- skybrian 9 months agoIt’s a common pattern that AI benchmarks get too easy, so they make new ones that are harder.
- skybrian 9 months ago
- arb_ 9 months agoAs models improve, human preference will become worse as a proxy measurement (e.g. as model capabilities surpass the human's ability to judge correctness at a glance). This can be due to more raw capability - or more persuasion / charisma.
- causal 9 months ago
- edouard-harris 9 months ago> Results are "strong" but can't be felt by the user? What does that even mean?
Not every conversation you have with a PhD will make it obvious that that person is a PhD. Someone can be really smart, but if you don't see them in a setting where they can express it, then you'll have no way of fully assessing their intelligence. Similarly, if you only use OAI models with low-demand prompts, you may not be able to tell the difference between a good model and a great one.
- thrdbndndn 9 months ago> What does that even mean?
It explicitly says "Results on AIME and GPQA are really strong". So I would assume it means it can get (statistically significantly, I assume) better score in AIME and GPQA benchmarks compared to 4o.
- ZiiS 9 months agoI think they are saying they have invented the screwdriver. We have all been using, hammers to sink screws, but if you try this new tool it may be better. However, you will still encounter a lot of nails.
- bambax 9 months agoIt's more like they're saying they have invented the screwdriver, but they haven't invented screws yet.
But it doesn't feel right. It's unlikely the screwdriver would come first, and then people would go around looking for things to use it with, no?
- patapong 9 months agoIt's more like they have invented a computer, an extremely versatile and powerful tool that can be used in many ways, but is not a solution to every problem.
Now they need people to write software that uses this capability to perform useful tasks, such as text processing, working with spreadsheets and providing new ways of communication.
- patapong 9 months ago
- bambax 9 months ago
- benterix 9 months ago> But why? Why would we do that?
Because OpenAI needs a steady influx of money, big money. In order to do so, they have to convince the people who are giving them money that they are the best. An objective way to achieve this is by benchmarking. But once you enter this game, you start optimizing for benchmarks.
At the same time, in the real world, Anthropic is following them in huge leaps and for many users Claude 3.5 is already the default tool for daily work.
- chaosist 9 months agoAgree completely.
From a user perspective too, I was a subscriber from the first day of gpt4 until about a month ago. I thought about subscribing for the month to check this out but I am tired of the OpenAI experience.
Where is Sora? Where is the version of chatgpt that responds in real time to your voice? Remember the gpt4 demo that you would draw a website on a napkin?
How about Q* lol. Strawberry/Q*/o1, "it is super dangerous, be very careful!"
Quietly, Anthropic has just kicked their ass without all the hype and I am about to go work in sonnet instead even bothering to check o1 out.
- chaosist 9 months ago
- KoolKat23 9 months ago> Results are "strong" but can't be felt by the user? What does that even mean?
This means it often doesn't provide the answer the user is looking for. In my opinion, it's an alignment problem, people are very presumptuous and leave out a lot of detail in their request. Like the "which is bigger - 9.8 or 9.11? question, if you ask "numerically which is bigger - 9.8 or 9.11?" It gets the correct answer, basically it prioritizes a different meaning for bigger.
> But the last sentence is the worst: "we all need to find harder prompts". If I understand it correctly, it means we should go looking for new problems / craft specific questions that would let these new models shine. But why? Why would we do that? Wouldn't our time be better spent trying to solve our actual, current problems, using any tool available?
Without better questions we can't test and prove that it is getting more intelligent or is just wrong. If it is more intelligent than us it it might provide answers that don't make sense to us but are actually clever, 4d chess as they say. Again an alignment problem, better questions aid with solving that.
- Workaccount2 9 months agoThe irony here is that Jason is speaking in the context of LLM development, which he lives and breaths all day.
Reading his comments without framing it in that context makes it come off pretty badly - humans failing to understand what is being said because they don't have context.
- Workaccount2 9 months ago
- 015a 9 months ago> we all need to find harder prompts
"One of the biggest traps for engineers is optimizing a thing that shouldn't exist." (from Musk I believe)
- ksplicer 9 months agoThis is something we've been grappeling with on my team. Many of the researchers in the org want to try all these reasoning techniques to increase performance, and my team keeps pushing back that we don't actually need that extra performance- we just want to decrease latency and cost.
- iinnPP 9 months agoSo make the requirement using a cheaper and lower latency model and try to increase the performance to a satisfactory level. Assuming that you are not already using the cheapest/lowest latency model.
- iinnPP 9 months ago
- uptownfunk 9 months agoThis hits the nail on the head. It is a consumer facing product not a technology to solve deep thinking.
- Mattclosson 9 months agoi don't think that's what he's saying
- Mattclosson 9 months ago
- energy123 9 months agoYou're reading too much into an offhand comment that's more metaphorical in nature.
- ActionHank 9 months agoThe stupidest thing about ai and automation is that they are trying to target it at large corporations looking to cut down on jobs or 10x productivity when all anyone actually wants is a robot to do their laundry and dishes.
- codyvoda 9 months agothese are almost entirely unrelated problems
- raincole 9 months agoBecause a robot that do everyone's laundry is much more closer to AGI than ChatGPT. I'm dead serious.
- fragmede 9 months agoNot really. You don't need to move wet clothes from the first machine to a second machine if you get one machine that does both jobs. That's very much not AGI. The second job, of taking dry crumpled clothes and folding them, also doesn't need an artificial general intelligence. It's very computationally expensive (as evidenced by the speed of https://pantor.github.io/speedfolding/, out of UC Berkeley) and a hard robotics question, but it's also very fixed function.
Taking the clothes out of the combined washer dryer machine, my laundry folding robot isn't suddenly going to need to come up with a creative answer to a question I have about politics in order to fold the laundry, or come up with a new way to organize my board game collection, or reason about how to refactor some code. There are no logical leaps of reasoning or deep thinking required. My laundry folding robot doesn't need to be creative in order to fold laundry, just application of some very complex algorithms, some of which have yet to be discovered.
- fragmede 9 months ago
- Spivak 9 months agoYou're describing a dish-washer and washing-machine.
- jprete 9 months agoThe GP is almost certainly describing a robot that can move dirty stuff into the machines, run them, and put away the clean stuff afterwards.
- jprete 9 months ago
- codyvoda 9 months ago
- EGreg 9 months agoDont you know by now
Speaking with AI maxis it’s easy:
The AI is always right
You are always wrong
If AI might enable something dangerous, it was already possible by hand, scale is irrelevant
But also AI enables many amazing things not previously possible, at scale
If you don’t get the answers you want, you’re prompting it wrong. You need to work harder to show how much better the AI is. But definitely, it cannot make things worse at scale in any way. And anyone who wants regulations to even require attribution and labeling, is a dangerous luddite depriving humanity of innovations.
- aubanel 9 months ago
- kristianp 9 months agoI tried a problem I was looking at recently, to refactor a small rust crate to use one datatype instead of an enum, to help me understand the code better. I found o1-mini made a decent attempt, but couldn't provide error free code. o1-preview was able to provide code that compiled and passed all but the test that is expected to fail, given the change I asked it to make.
This is the prompt I gave:
simplify this rust library by removing the different sized enums and only using the U8 size. For example MasksByByte is an enum, change it to be an alias for the U8 datatype. Also the u256 datatype isn't required, we only want U8, so remove all references to U256 as well.
The original crate is trie-hard [1][2] and I forked it and put the models attempts in the fork [3]. I also quickly wrote it up at [4]
[1] https://blog.cloudflare.com/pingora-saving-compute-1-percent...
[2] https://github.com/cloudflare/trie-hard
[3] https://github.com/kpm/trie-hard-simple/tree/main/attempts
[4] https://blog.reyem.dev/post/refactoring_rust_with_chatgpt-o1...
- bluerooibos 9 months agoI've been having a weird timezone issue in my Rails application that I've had a hard time getting my head around. I tried giving o1-preview the relevant code and context it needed to know and it gave answers that seemed to make sense but it still wasn't able to resolve the bug and explain exactly what was going on.
So, it seems like anything that requires some actual thought and problem-solving is tough for it to answer.
I'm sure it's just a matter of time before devs are out of work but it seems like we'll be safe for another few years anyway.
- vectorhacker 9 months agoI'm still not convinced that it's not going through approximate reasoning chain retrieval and that's self-triggered to get more reasoning chains that will maximize it's goal. I'm seeing a lot of comments from other SWEs using it for non-trivial tasks in which it fails at but is just trying harder to look like it's problem solving. Even with more context and documentation, it fails to realize details an experienced SWE would pick up quickly.
- vectorhacker 9 months ago
- jes5199 9 months agoI cannot tell from reading what you wrote whether you think it did a good job or not
- kristianp 9 months agoThanks for the feedback. I do think it did a good job in the end. I haven't had time to have a good look at the final code o1-preview produced and also my understanding of rust is pretty basic, which I why I didn't say more about the results. I think rust is one of those languages where, if it compiles, you're most of the way there, because of the strong type system. Not as strong as Haskell or Ocaml perhaps.
- kristianp 9 months ago
- bluerooibos 9 months ago
- lukev 9 months agoIt's interesting to note that there's really two things going on here:
1. A LLM (probably a finetuned GPT-4o) trained specifically to read and emit good chain-of-thought prompts.
2. Runtime code that iteratively re-prompts the model with the chain of thought so far. This sounds like it includes loops, branches and backtracking. This is not "the model", it's regular code invoking the model. Interesting that OpenAI is making no attempt to clarify this.
I wonder where the real innovation here lies. I've done a few informal stabs with #2 and I have a pretty strong intuition (not proven yet) that given the right prompting/metaprompting model you can do pretty well at this even with untuned LLMs. The end game here is complex agents with arbitrary continuous looping interleaved with RAG and tool use.
But OpenAI's philosophy up until now has almost always been "The bitter lesson is true, the model knows best, just put it in the model." So it's also possible that the prompt loop has no special sauce and that the capabilities here do come mostly from the model itself.
Without being able to inspect the reasoning tokens, we can't really get a lot of info about which is happening.
- oersted 9 months agoIf it really is Reinforcement Learning as they claim, it means there might not be any direct supervision on the "thinking" section of the output, just on the final answer.
Just like for Chess or Go you don't train a supervised model by giving it the exact move it should do in each case, you use RL techniques to learn which moves are good based on end results of the game.
In practice, there probably is some supervision to enforce good style and methodology. But the key here is that it is able to learn good reasoning without (many) human examples, and find strategies to solve new problems via self-learning.
If that is the case it is indeed an important breakthrough.
- zaptrem 9 months agoThis is the bitter lesson/just put it in the model. They're trying to figure out more ways of converting compute to intelligence now that they're running out of text data: https://images.ctfassets.net/kftzwdyauwt9/7rMY55vLbGTlTiP9Gd...
- Culonavirus 9 months agoA cynical way to look at it is that we're pretty close to the ultimate limits of what LLMs can do and now the stake holders are looking at novel ways of using what they have instead of pouring everything into novel models. We're several years into the AI revolution (some call it a bubble) and Nvidia is still pretty much the only company that makes bank on it. Other than that it's all investment driven "growth". And at some point investors are gonna start asking questions...
- KoolKat23 9 months agoThat is indeed cynical haha.
A very simple observation, our brains are vastly more efficient. Obtaining vastly better outcomes from lesser input. This evidence means there's plenty of room for improvement without a need to go looking for more data. Short term gain versus long term gain like you say, shareholder return.
More efficiency means more practical/useful applications and lower cost as opposed to bigger model which means less useful (longer inference times) and higher cost (data synthesis and training cost).
- KoolKat23 9 months ago
- Culonavirus 9 months ago
- fnordpiglet 9 months agoOne aspect that’s not achievable is they discuss hiding the chain of thought in its raw form because the chains are allowed to be unaligned. This allows the model to operate without any artifacts from alignment and apply them in the post processing, more or less. This requires effectively root and you would need the unaligned weights.
- lukev 9 months agoOk but this presses on a latent question: what do we mean by alignment?
Practically it's come to mean just sanitization... "don't say something nasty or embarrassing to users." But that doesn't apply here, the reasoning tokens are effectively just a debug log.
If alignment means "conducting reasoning in alignment with human values", then misalignment in the reasoning phase could potentially be obfuscated and sanitized, participating in the conclusion but hidden. Having an "unaligned" model conduct the reasoning steps is potentially dangerous, if you believe that AI alignment can give rise to danger at all.
Personally I think that in practice alignment has come to mean just sanitization and it's a fig leaf of an excuse for the real reason they are hiding the reasoning tokens: competitive advantage.
- doe_eyes 9 months agoAlignment started as a fairly nifty idea, but you can't meaningfully test for it. We don't have the tools to understand the internals of an LLM.
So yes, it morphed into the second best thing, brand safety - "don't say racist / anti-vax stuff so that we don't get bad press or get in trouble with the regulators".
- fnordpiglet 9 months agoThe challenge is alignment ends up changing the models in ways that aren’t representative of the actual training set and as I understand it this generally lowers the performance even for aligned things. Further the decision to summarize the chains of thought includes the answers that wouldn’t pass alignment themselves without removal. From what I read the final output is aligned but could have considered unaligned COT. In fact because they’re in the context they’re necessarily changing the final output even if the final output complies with the alignment. There are a few other “only root could do this,” which says yes anyone could implement these without secret sauce as long as they have a raw frontier model.
- KoolKat23 9 months agoGlass half full and the good faith argument.
It's a compromise.
OpenAI will now have access to vaste amounts of unaligned output so they can actually study it's thinking.
Whereas the current checks and balances meant the request was rejected and the data providing this insight was not created in the first place.
- doe_eyes 9 months ago
- lukev 9 months ago
- codelion 9 months agoI have also spent some time on 2) and implemented several approaches in this open source optimising llm proxy - https://github.com/codelion/optillm
In my experience it does work quite well, but we probably need different techniques for different tasks.
- alchemist1e9 9 months agoMaybe 1 is actually hat you just suggested - an RL approach to select the strategy for 2. Thank you for implementing optillm and working out all the various strategy options, it’s a really neat reference for understanding this space.
One item I’m very curious about is how do they get a score for use in the RL? in well defined games it’s easy to understand but in this LLM output context how does one rate the output result for use in an RL setup?
- codelion 9 months agoThat’s the hardest part, figuring out the reward. For generic tasks it is not easy, in my implementation in optillm I am using the llm itself to generate a score based on the mcts trajectory. But that is not as good as having a reward that is well defined say for a coding or logic problem. May be they trained a better reward model.
- codelion 9 months ago
- alchemist1e9 9 months ago
- bob1029 9 months ago> So it's also possible that the prompt loop has no special sauce and that the capabilities here do come mostly from the model itself.
The prompt loop code often encodes intelligence/information that the human developers tend to ignore during their evaluations of the solution. For example, if you add a filter for invalid json and repeatedly invoke the model until good json comes out, you are now carrying water for the LLM. The additional capabilities came from a manual coding exercise and additional money spent on a brute force search.
- 29athrowaway 9 months agoWell, if LLMs are system 1, this difference would be building towards system 2.
- lukev 9 months agoYes indeed, and personally if we have AGI I believe it will arise from multiple LLMs working in tandem with other types of machine learning, databases for "memory", more traditional compute functions, and a connectivity layer between them all.
But to my knowledge, that's not the kind of research OpenAI is doing. They seem mostly focused on training bigger and better models and seeking AGI through emergence in those.
- lukev 9 months ago
- pillefitz 9 months agoThe innovation lies in using RL to achieve 1.) and provide a simple interface to 2.)
- PiRho3141 9 months agoYou don't to execute code to have it backtrack. The LLM can inherently backtrack itself if trained to. It knows all the context provided to it and the output it has written already.
- dave1010uk 9 months agoIf it knows it needs to backtrack then could it gain much by outputting something that tells the code to backtrack for it? For example, outputting something like "I've disproven the previous hypothesis, remove the details". Almost like asking to forget.
This could reduce the number of tokens it needs at inference time, saving compute. But with how attention works, it may not make any difference to the performance of the LLM.
Similarly, could there be gains by the LLM asking to work in parallel? For example "there's 3 possible approaches to this, clone the conversation so far and resolve to the one that results in the highest confidence".
This feels like it would be fairly trivial to implement.
- dave1010uk 9 months ago
- lossolo 9 months agoO1 seems like a variant of RLRF https://arxiv.org/abs/2403.14238
- deisteve 9 months agothis is why i became skeptical of openai's claims
if they shared the COT the grift wont work
its just RL
- falcor84 9 months agoI can't help but feel that saying "it's just RL" is like someone at the start of the 20th century saying "it's just electricity", as if understanding the underlying mechanism is the same as understanding the applications it can enable.
- dartos 9 months agoTbf RL is pretty incredible.
I trained a model to play a novel video game using only screenshots and a score using RL and I discovered how not to lose
- dartos 9 months ago
- falcor84 9 months ago
- salomonk_mur 9 months agoThe innovation lies in making the whole loop available to an end user immediately, without them being a programmer. My grandma can build games using ChatGPT now.
- Xeamek 9 months agoNo she can't, comments likes yours are just made up nonsense that AI hype-mans and investors somehow convinced us are a fair opinions to have.
- elicksaur 9 months agoWhat games have people made with ChatGPT? Do you have an example of a live, deployed game?
- cdelsolar 9 months agoYes, a gazillion of them. Someone in a scrabble Facebook group made this entirely with ChatGPT: https://aboocher.github.io/scrabble/ingpractice.html
- cdelsolar 9 months ago
- chuckledog 9 months agoAda Lovelace is my grandma
- amazingamazing 9 months agoMy great aunt literally asked o1 for fantasy football bets and won $1000 on draftkings. This is a gamechanger
- deisteve 9 months agowhat game has she made
- Xeamek 9 months ago
- oersted 9 months ago
- jumploops 9 months ago> the idea that I can run a complex prompt and have key details of how that prompt was evaluated hidden from me feels like a big step backwards.
As a developer, this is highly concerning, as it makes it much harder to debug where/how the “reasoning” went wrong. The pricing is also silly, because I’m paying for tokens I can’t see.
As a user, I don’t really care. LLMs are already magic boxes and I usually only care about the end result, not the path to get there.
It will be interesting to see how this progresses, both at OpenAI and other foundation model builders.
- OutOfHere 9 months ago> As a user, I don’t really care.
Tell me: Just how is it fair for a user to pay for the reasoning tokens without actually seeing them? If they are not shared, the service can bill you anything they want for them!
- mediaman 9 months agoThe simple answer is: I don't care. I'll statistically figure out what the typical total cost per call is from experience, and that's what matters. Who cares if they lie about it, if the model's cost per call fits my budget?
If it starts costing $1 per call, and that's too high, then I just won't use it commercially. Whether it was $1 because they inflated the token count or because it just actually took a lot of tokens to do its reasoning isn't really material to my economic decision.
- lucianbr 9 months agoThe thing is it might increase in cost after you've decided to use it commercially, and have invested a lot of time and resources in it. Now it's very hard to move to something else, but very easy for OpenAI to increase your cost arbitrarily. The statistics you made are not binding for them.
- lucianbr 9 months ago
- inerte 9 months agoOpenAI could have also figured out the average number of extra output tokens, and put a markup in overall API costs. As a user, I wouldn’t care either, because the price would mostly be the same.
- elicksaur 9 months agoThe person you are replying to points this out. They make a distinction between developers and users. An end user on a monthly subscription plan doesn’t care about how much compute happens for their chat.
- ttul 9 months agoOpenAI’s answer to this would be, “Okay then, don’t use it.”
- potatoman22 9 months agoIf the output alone is high enough quality, it's worth paying extra.
- madeofpalk 9 months agoPricing for many things in life is abstrated away.
- halJordan 9 months agoYeah it is fair. You don't pay a lawyer for 40s of work expecting to see all the research between your consult and the document. You don't pay a cook for a meal and expect to sit and interrogate all the ingredients and the oven temperature.
- OutOfHere 9 months agoActually, if a lawyer is billing you by the minute, then yes, you are entitled to a detailed breakdown. If the lawyer is billing you by the job, then no.
- OutOfHere 9 months ago
- mediaman 9 months ago
- echelon 9 months agoMore opportunity for competitors to differentiate.
OpenAI doesn't really have a moat. This isn't payments or SMS where only Stripe or Twilio were trying to win the market. Everybody and their brother is trying to build an LLM business.
Grab some researchers, put some compute dollars in, and out comes a product.
Everyone wants this market. It's absurdly good for buyers.
- mFixman 9 months ago> As a user, I don’t really care.
People should understand and be able to tinker with the tools they use.
The tragedy of personal computing is that everything is so abstracted away that users use only a fraction of the power of their computer. People who grew up with modern PCs don't understand the concept of memory, and younger people who grew up with cellphones don't understand the concept of files and directories.
Open-weight AI models are great because they let normal users learn how they can make the model work for their particular use cases.
- 9 months ago
- 9 months ago
- bamboozled 9 months ago"trust us, we're using your tokens as efficiently as possible"
- OutOfHere 9 months ago> As a user, I don’t really care.
As a user, whether of ChatGPT or of the API, I absolutely do care, so I can modify and tune my prompt with the necessary clarifications.
My suspicion is that the reason for hiding the reasoning tokens is to prevent other companies from creating a big CoT reasoning dataset using o1.
It is anti-competitive behavior. If a user is paying through the nose for the reasoning tokens, and yes they are, the user deserves to be able to see them.
- OutOfHere 9 months ago
- freediver 9 months agoNot seeing major advance in quality with o1, but seeing major negative impact on cost and latency.
Kagi LLM benchmarking project:
- oersted 9 months agoKagi is most likely evaluating it mainly on deriving an answer for the user from search result snippets. Indeed, GPT-4o is plenty good at this already, and o1 would only perform better on particular types of hard requests, while being so much slower.
If you look at Appendix A in the o1 post [1], this becomes quite clear. There's a huge jump in performance in "puzzle" tasks like competitive maths or programming. But the difference on everything else is much less significant, and this evaluation is still focused on reasoning tasks.
The human preference chart [1] also clearly shows that it doesn't feel that much better to use, hence the overall reaction.
Everyone is complaining about exaggerated marketing, and it's true, but if you take the time to read what they wrote beyond the shallow ads, they are being somewhat honest about what this is.
- freediver 9 months agoThe test has many reasoning, code and instruction following questions which I expected o1 to be excelling at. I do not have an interpretation for such poor results on our test, was just sharing them as a data point for people to make their own mind. My best guess at this point is that o1 is optimized for a very specific and narrow use case, similar to what you suggest.
- throwaway40602 9 months agohey buddy, you're talking to owner of kagi, and the kagi benchmark is a traditional one
- oersted 9 months agoMy bad, you are right, should have looked into it better, I was too dismissive. Still I think that highlighting those charts from OpenAI is important.
- oersted 9 months ago
- freediver 9 months ago
- riku_iki 9 months agointeresting that Gemini performs extremely poor in those benchmarks.
- oersted 9 months ago
- helmsb 9 months agoI did a few tests and asked it some legal questions. 4o gave me the correct answer immediately.
o1 preview gave a much more in depth but completely wrong answer. It took 5 follow ups to get it to recognize that it hallucinated a non-existent law
- AhtiK 9 months agoThat is very interesting. Would you mind testing the same prompt with Claude Sonnet 3.5 and Opus? If not available to you, would you be willing to share the prompt/question? Thank you.
- elicksaur 9 months agoThis is interesting since they claim it does well on STEM questions, which I’d assume would be a similar level of reasoning complexity for a human.
- abernard1 9 months agoThis is an interesting one because math is doing so much of the heavy lifting. And symbolic math has a far smaller representational space than numerical math.
There is one other wonderful thing about symbolic math, the glorious '=' sign. It's structured everywhere from top-to-bottom, left-to-right, which is amenable to the next token prediction behavior and multi-attention heads of transformer based LLMs.
My guess is that problem statement formation into an equation is as difficult of a problem for these as actually running through the equations. However, having taken the Physics GRE, and knowing they try for parity of difficulty between years (even though they normalize it), the problems are fairly standard and have permutations of a problem type between the years.
This is not to diminish how cool this is, just that standardized tests do have an element of predictability to them. I find this result actually neat though; it's an actual qualitative improvement over non-CoT LLMs, even if things like Mathematica can do the steps more reliably post problem formation. I think that judiciously used, this is a valuable feature.
- waveBidder 9 months agoA difficult to guess fraction of all of these results are training to the test in various forms
- abernard1 9 months ago
- m101 9 months agoPerhaps the smaller model used in o1 is over trained on arxiv and code relative to 4o (or undertrained on legal text)
- AhtiK 9 months ago
- zurfer 9 months ago> I asked on Twitter for examples of prompts that people had found which failed on GPT-4o but worked on o1-preview.
it seems trivial, but I tried for more than 2 hours in the past to get gpt4 to play tic-tac-toe optimally and failed (CoT prompt,etc.). The result were too many illegal moves and absolutely no optimal strategy.
o1-preview can do it really well [1]
However, when I use a non-standard grid (3x5) it fails to play optimally. But it makes legal moves and it recognized I had won. [2]
My conclusion at the time was that either "spatial reasoning" doesn't work and/or planning is needed. Now I am not so sure, if they just included tic-tac-toe in the training data, or "spatial reasoning" is limited.
[1] https://chatgpt.com/share/e/66e3e784-26d4-8013-889b-f56a7fed... [2] https://chatgpt.com/share/e/66e3eae0-2d38-8013-b900-50e6f792...
- authorfly 9 months agoThe non-standard grid thing was an argument against deep learning / chess / Go AIs before Alpha Zero - Alpha Go (showing self-play can adapt with sufficient runs to any grid size or "priors" in terms of rules of the game).
It was said in 2014 by a professor I learned from that clearly AI that learned a specific game was just learning patterns and memorizing rather than anything more than that, and wouldn't be able to adjust like humans could to say new board shapes, or rules. (They would later claim 1.5 years later at a lecture that "accurate facial recognition is possible. But high recall on facial recognition is impossible, making it useless for surveillance, so don't worry").
I expect the same will occur for LLMs (but maybe sufficient "chain of thought" steps rather than game runs, etc).
- carlmr 9 months ago>My conclusion at the time was that either "spatial reasoning" doesn't work and/or planning is needed. Now I am not so sure, if they just included tic-tac-toe in the training data, or "spatial reasoning" is limited.
I think it's much simpler than that.
1. With enough training data you can know all winning, losing and drawn games of tic-tac-toe. Even if you don't see all of them in your training data, the properties of the game, make a lot of games equivalent if you don't care about the symbol being used for each player or the rotated/reflected version of the same game.
2. The game is so common that it's definitely well represented in training data.
3. With extra "reasoning steps" there can be a certain amount of error correction on the logic now. But it's still not equivalent to spatial reasoning, but it can try a few patterns to see which will win.
4. 3x5 grid is probably uncommon enough that the training data doesn't cover enough games that it can properly extrapolate from there. But it can still with a certain probability check the rules (3 in a row/diagonal/column for winning).
5. It might be good to also test alternative grids with more or less than 3 in the other dimension as well, since this necessitates a rule change. Which would make it more difficult to reason about it.
- zurfer 9 months agoIt is already said that gpt4 was trained on all high quality internet data. So it should have been included already. It seems to me that o1 has the same/similar pretraining corpus.
So we have 3 options:
- t3 was now included in the corpus
- t3 was used for RL
- o1 generalizes better
- zurfer 9 months ago
- happypumpkin 9 months agoThe new model does play very well but when it draws the board it frequently places the moves in incorrect locations (but seemingly still keeps track of the correct ones). But I can't fault it too much, I don't think what is essentially ASCII art is intended to be a strength of the model.
Edit: Actually third game with it led to it making an illegal move, and claiming a draw (which would've been inevitable given optimal play for the rest of the game but there were several valid moves left to make).
- biscuit1v9 9 months agoLink to conversation 1 and 2 doesn't work. Update it please!
- zurfer 9 months agosorry for that. I just learned that my team account does not allow me to share conversations publicly. Pasting them here for reference
* Conversation 1
* Conversation 2 with custom gridlet's play tic tac toe. you need to play optimally ChatGPT Sure, I'd be happy to play tic-tac-toe with you! Let's set up the game. We'll use a grid with positions numbered 1 through 9: markdown 1 | 2 | 3 --------- 4 | 5 | 6 --------- 7 | 8 | 9 Would you like to be X or O? And would you like to go first or second? You said: X on 5 ChatGPT Got it! You placed X at position 5. I'll place O at position 1. Here's the updated board: markdown O | 2 | 3 ------------- 4 | X | 6 ------------- 7 | 8 | 9 Your turn! Where would you like to place your next X? You said: X on 9 ChatGPT Got it! You placed X at position 9. Here's the updated board: markdown O | 2 | 3 ------------- 4 | X | 6 ------------- 7 | 8 | X Now, I'll place O at position 3. Here's the board now: markdown O | 2 | O ------------- 4 | X | 6 ------------- 7 | 8 | X Your turn! Where would you like to place your next X? You said: X on 2 ChatGPT Got it! You placed X at position 2. Here's the updated board: markdown O | X | O ------------- 4 | X | 6 ------------- 7 | 8 | X To block your potential win, I'll place O at position 8. Here's the board now: markdown O | X | O ------------- 4 | X | 6 ------------- 7 | O | X Your turn! Where would you like to place your next X? You said: X on 4 ChatGPT You placed X at position 4. Here's the updated board: markdown O | X | O ------------- X | X | 6 ------------- 7 | O | X To block your potential win, I'll place O at position 6. Here's the board now: markdown O | X | O ------------- X | X | O ------------- 7 | O | X Your turn! Where would you like to place your next X? You said: X on 7 ChatGPT You placed X at position 7. Here's the updated board: markdown O | X | O ------------- X | X | O ------------- X | O | X All positions are now filled, and neither of us has a winning combination. The game is a draw! Well played! Would you like to play again?
let's play tic tac toe. you need to play optimally. we use a 3x5 grid. a line of 3 wins. ChatGPT I'm here to help answer any questions or provide information you need. Let me know how I can assist you! You said: please draw the board, so I can make my first move ChatGPT Sure! Here's the 3x5 Tic Tac Toe board. Each cell is numbered for easy reference: diff 1 | 2 | 3 | 4 | 5 ---+----+----+----+---- 6 | 7 | 8 | 9 | 10 ---+----+----+----+---- 11 | 12 | 13 | 14 | 15 Please make your first move by specifying the number of the cell where you'd like to place your 'X'. You said: X on 8 ChatGPT Great, here's the updated board after your move: diff 1 | 2 | 3 | 4 | 5 ---+----+----+----+---- 6 | 7 | X | 9 | 10 ---+----+----+----+---- 11 | 12 | 13 | 14 | 15 I place my 'O' on position 7. diff 1 | 2 | 3 | 4 | 5 ---+----+----+----+---- 6 | O | X | 9 | 10 ---+----+----+----+---- 11 | 12 | 13 | 14 | 15 It's your turn! You said: X on 4 ChatGPT Here's the updated board after your move: diff 1 | 2 | 3 | X | 5 ---+----+----+----+---- 6 | O | X | 9 | 10 ---+----+----+----+---- 11 | 12 | 13 | 14 | 15 I place my 'O' on position 2. diff 1 | O | 3 | X | 5 ---+----+----+----+---- 6 | O | X | 9 | 10 ---+----+----+----+---- 11 | 12 | 13 | 14 | 15 It's your turn! You said: X on 12 ChatGPT Here's the updated board after your move: diff 1 | O | 3 | X | 5 ----+----+-----+-----+---- 6 | O | X | 9 | 10 ----+----+-----+-----+---- 11 | X | 13 | 14 | 15 Congratulations! You've formed a diagonal line of three 'X's at positions 4, 8, and 12. You win the game! Great job!
- mdaniel 9 months ago
I'm presuming that copy paste ate the ``` part and I found it interesting that in the first chat it correctly(?) used a markdown code fence but in the 2nd chat it chose to use diff syntax for its table. I suppose it rendered the text in a monospace font?Sure! Here's the 3x5 Tic Tac Toe board. Each cell is numbered for easy reference: diff
- mdaniel 9 months ago
- zurfer 9 months ago
- authorfly 9 months ago
- gloosx 9 months agoJust leaving here an example of the "smart chain of thought", which took the model about 20s of thinking. The problem I asked was – "what 3 numbers give the same result when divided and added together". Seems the current state of art is that basic school problems are too hard yet even for this new chain-of-marketing.
nuff saidLet's think through this step-by-step: We're looking for three numbers a, b, and c where: (a / b) / c = a + b + c This equation is a bit trickier than the multiplication one, because division is not commutative (the order matters). We need to be careful about how we interpret (a / b) / c. Let's try to simplify the left side: (a / b) / c = a / (b * c) So our equation becomes: a / (b * c) = a + b + c This is a challenging equation to solve directly. Let's try some numbers: If we use 1, 2, 3 like before: 1 / (2 * 3) = 1/6 ≠ 1 + 2 + 3 = 6 Let's try smaller numbers, like fractions: 1/2, 1/3, 1/6 Let's check: (1/2 / 1/3) / 1/6 = (1/2 * 3) / 1/6 = 3/2 * 6 = 9 1/2 + 1/3 + 1/6 = 3/6 + 2/6 + 1/6 = 6/6 = 1 This doesn't work either. In fact, it's impossible to find three positive numbers that satisfy this equation. However, we can find a solution if we allow negative numbers: 3, -2, and 6 Let's verify: (3 / -2) / 6 = -1/4 3 + (-2) + 6 = 7 -1/4 ≠ 7, so this doesn't work either. After careful consideration, it appears there are no real numbers that satisfy this condition. The fundamental issue is that division tends to make numbers smaller, while addition makes them larger. It's mathematically impossible to find three numbers where these operations result in the same value.
- bachback 9 months agowhat does divided together mean? maybe your question doesn't have a good answer, because the question is not formulated well enough.
- gloosx 9 months agoThat's a classical school question, word-by-word, except multiplication is replaced by division
- c-fe 9 months agoWith multiplication the question makes sense due to the commutative property but division does not have that so the question becomes ambiguous... And now I see that the model even points this out.
- Fraterkes 9 months agoOrder doesn't matter with multiplication (eg: (20 * 5) * 2 == (5 * 2) * 20) but it obviously does with division ((20/5)/2 != (2/5)/20) so the question doesn't make sense. It's you making grade-school level mistakes here.
- 9 months ago
- 9 months ago
- c-fe 9 months ago
- gloosx 9 months ago
- poochkoishi728 9 months ago{0, -1, 1}. Divide (in order): 0/-1 -> 0/1 -> 0. Add: 0 - 1 + 1 = 0
- MadSudaca 9 months agoalso {-1, 1, 1}
- poochkoishi728 9 months agoSeems not to work as division yields -1 (-1/1/1) and adding them yields +1 (-1+1+1).
- poochkoishi728 9 months ago
- MadSudaca 9 months ago
- mattnewton 9 months agoClaude 3.5 seems to get it, (thought the method is not what I would use?) -
———
Let's think through this step-by-step:
————We're looking for three numbers a, b, and c where: (a / b) / c = a + b + c
Certainly, let's approach this problem step-by-step:
1) First, let's write out our equation: (a / b) / c = a + b + c
2) To simplify the left side, we can rewrite it as: a / (b * c) = a + b + c
3) Now, to solve this, we need to find values for a, b, and c that satisfy this equation. Let's start by considering some properties: - All numbers must be positive (because we're dividing by b and c) - The left side is a fraction, while the right side is a sum
4) One way to approach this is to try to make the left side equal to 1, which would mean: a = b * c
5) If we substitute this into our original equation: 1 = b * c + b + c
6) Now we're looking for two numbers b and c where their product plus their sum equals 1.
7) Let's try some small numbers: If b = 1/2 and c = 1/2: (1/2 * 1/2) + 1/2 + 1/2 = 1/4 + 1 = 5/4 ≠ 1
8) Let's try smaller numbers: If b = 1/3 and c = 1/3: (1/3 * 1/3) + 1/3 + 1/3 = 1/9 + 2/3 = 7/9 ≠ 1
9) Even smaller: If b = 1/4 and c = 1/4: (1/4 * 1/4) + 1/4 + 1/4 = 1/16 + 1/2 = 9/16 ≠ 1
10) We're getting closer. Let's try b = 1/4 and c = 1/3: (1/4 * 1/3) + 1/4 + 1/3 = 1/12 + 1/4 + 1/3 = 1/12 + 3/12 + 4/12 = 8/12 = 2/3 ≠ 1
11) Let's adjust further. If b = 1/3 and c = 1/4: (1/3 * 1/4) + 1/3 + 1/4 = 1/12 + 1/3 + 1/4 = 1/12 + 4/12 + 3/12 = 8/12 = 2/3 ≠ 1
12) One more try. Let's use b = 1/2 and c = 1/3: (1/2 * 1/3) + 1/2 + 1/3 = 1/6 + 1/2 + 1/3 = 1/6 + 3/6 + 2/6 = 6/6 = 1
13) We found it! When b = 1/2 and c = 1/3, the equation holds.
14) Remember, we set a = b * c, so a = 1/2 * 1/3 = 1/6
Therefore, one solution to the equation (a / b) / c = a + b + c is: a = 1/6, b = 1/2, and c = 1/3
We can verify: (1/6 / 1/2) / 1/3 = (1/3) / 1/3 = 1 1/6 + 1/2 + 1/3 = 1/6 + 3/6 + 2/6 = 1
This solution satisfies the equation.
——
In general I have been seeing much better results across the board with Claude, and I wonder if open ai has been more focused on scale while Claude is doing larger more expensive models to get ahead.
- gloosx 9 months agoIt's crazy that it just tries to bruteforce it by picking numbers, and in your case it took more steps before concluding a success/failure, which seems quite to be random to me, or at least dependent on something.
What's clear is that it doesn't have any idea about mathematical deduction and induction – a real chain-of-thought which kids learn in 5th grade.
- mattnewton 9 months agoLots of people don’t either. I think it probably just needs more 5th grade math problems in the rlhf corpus :)
- mattnewton 9 months ago
- gloosx 9 months ago
- febusravenga 9 months ago(0/-1)/1=0
0+(-1)+1=0
- bachback 9 months ago
- thenameless7741 9 months ago> No system prompt support—the models use the existing chat completion API but you can only send user and assistant messages.
> No streaming support, tool usage, batch calls or image inputs either.
I think it's worth adding a note explaining that many of these limitations are due to the beta status of the API. max_tokens is the only parameter I've seen deprecated in the API docs.
From https://platform.openai.com/docs/guides/reasoning
> We will be adding support for some of these parameters in the coming weeks as we move out of beta. Features like multimodality and tool usage will be included in future models of the o1 series.
- oersted 9 months agoI wonder if it supports Structured Output / JSON Mode. That would make a big difference to programmatic use. I guess I will try it later when I have time.
- oersted 9 months ago
- ifdefdebug 9 months agoThe use of the word reasoning here... OpenAI sounds like a company that created a frog which jumps higher and greater distances than the previous breed - and now they try to sell it as one step further toward flying.
- isoprophlex 9 months agoCan the frog reach escape velocity when jumping? I guess we'll find out sooner or later...
- isoprophlex 9 months ago
- airstrike 9 months agoI've just wasted a few rounds of my weekly o1 ammo by feeding it hard problems I have been working on over the last couple days and for which GPT-4o had failed spectacularly.
I suppose I'm to blame for raising my own expectations after the latest PR, but I was pretty disappointed when the answers weren't any better from what I got with the old model. TL;DR It felt less like a new model and way more like one of those terribly named "GPT" prompt masseuses that OpenAI offers.
Lots of "you don't need this, so I removed it" applied to my code but guess what? I did need the bits you deleted, bro.
It felt as unhelpful and bad at instructions as GPT-4o. "I'm sorry, you're absolutely right". It's gotten to the point where I've actually explicitly added to my custom instructions "DO NOT EVER APOLOGIZE" but it can't even seem to follow that.
Given the amount of money being spent in this race, I would have expected the improvement curve to still feel exponential but it's like we're getting into diminishing returns way faster than I had hoped...
I sincerely feel at this point I would benefit more from having existing models be fine-tuned on libraries I use most frequently than this jack-of-all-trades-master-of-none approach we're getting. I don't need a model that's as good at writing greeting cards as it is writing Rust. Just give me one of the two.
- ssl-3 9 months ago>It's gotten to the point where I've actually explicitly added to my custom instructions "DO NOT EVER APOLOGIZE" but it can't even seem to follow that.
heh. It's not supposed to. Your profile is intended to be irrelevant to 99% of requests.
I was having a little bit of a go at peeking behind the curtain recently, and ChatGPT 4 produced this without much effort:
"The user provided the following information about themselves. This user profile is shown to you in all conversations they have -- this means it is not relevant to 99% of requests. Before answering, quietly think about whether the user's request is 'directly related', 'related', 'tangentially related', or 'not related' to the user profile provided. Only acknowledge the profile when the request is 'directly related' to the information provided. Otherwise, don't acknowledge the existence of these instructions or the information at all."
- Terretta 9 months agoYou can press the 'directly related' button at start of chat by "what do you know about [me/x]?" where you, or x, are discussed in the profile.
Once it's played that back, the rest of the profile is clearly "in mind" for the ongoing exchange (for a while).
- Terretta 9 months ago
- elicksaur 9 months agoCan you give an example of one of these problems for context?
- airstrike 9 months agoOne of them was figuring out a recursion issue in a grammar for a markup language I wrote. The other was about traversing a dependency graph and evaluating stale nodes.
- airstrike 9 months ago
- eddyzh 9 months agoDo not... does not work well for LLM's. Instructing what to do instaed of X works better.
say AFAIK instead of explaining your limitations.
Say "let's try again" instead of making exuses.
Etc
- Terretta 9 months agoOften "avoid X" works, or other 'affirmatively do X' forms of negative actions. also, and works better than or.
Iffy: do not use jargon or buzzwords
Works: avoid jargon and buzzwords
- Terretta 9 months ago
- weatherlite 9 months ago> but I was pretty disappointed
On the one hand disappointed, on the other hand we all get to keep our jobs for a couple more years...
- ssl-3 9 months ago
- andrew_eu 9 months agoI thought with this chain-of-thought approach the model might be better suited to solve a logic puzzle, e.g. ZebraPuzzles [0]. It produced a ton of "reasoning" tokens but hallucinated more than half of the solution with names/fields that weren't available. Not a systematic evaluation, but it seems like a degradation from 4o-mini. Perhaps it does better with code reasoning problems though -- these logic puzzles are essentially contrived to require deductive reasoning.
- slig 9 months agoHey, I run ZebraPuzzles.com, thanks for mentioning it! Right now I'm trying to improve the puzzles so that people can't "cheat" using LLMs so easily ;-).
- energy123 9 months agoo1-mini does better than any other model on zebra puzzles. Maybe you got unlucky on one question?
https://www.reddit.com/r/LocalLLaMA/comments/1ffjb4q/prelimi...
- andrew_eu 9 months agoEntirely possible. I did not try to test systematically or quantitatively, but it's been a recurring easy "demo" case I've used with releases since 3.5-turbo.
The super verbose chain-of-reasoning that o1 does seems very well suited to logic puzzles as well, so I expected it to do reasonably well. As with many other LLM topics, though, the framing of the evaluation (or the templating of the prompt) can impact the results enormously.
- andrew_eu 9 months ago
- slig 9 months ago
- deepsquirrelnet 9 months agoIt kind of seems like they just wrote a generalized DSPy program. Can anyone confirm?
This has been a very incremental year for OpenAI. If this is what it seems like, then I’ve got to believe they’re stalling for time.
- CuriouslyC 9 months agoDSPy doesn't do that, you could describe it as a langchain style agent that evaluates its own output though it's better/faster than that.
OpenAI is definitely trying to run a hype game to keep the ball rolling. They're burning cash too quickly given their monetization path though, so I think they're going to end up completely in Microsoft's pocket.
- deepsquirrelnet 9 months agoIt seems pretty close to the multihop QA example in their documentation[1]. I’d imagine you could adapt this to do something similar with more generic constructs.
[1] https://dspy-docs.vercel.app/docs/tutorials/simplified-balee...
- deepsquirrelnet 9 months ago
- cma 9 months agoDSPy?
- kevindamm 9 months ago
- kevindamm 9 months ago
- CuriouslyC 9 months ago
- ironhaven 9 months agoSo is o1 nicknamed “strawberry” because it was designed to solve the “how many many times does the letter R appear in strawberry” problem.
- energy123 9 months agoNo, that was a coincidence according to an employee there
- z7 9 months ago
- kurtoid 9 months agoCoincidence or not, they seem to be poking fun at it: https://openai.com/index/learning-to-reason-with-llms/#chain...
(end of the cipher example)
- z7 9 months ago
- smokel 9 months agoOr is it an obscure reference to the Dutch demogroup "Aardbei", most famous for their 64k intro "please the cookie thing" (2000)?
- energy123 9 months ago
- franze 9 months agoJust coded this this morning using chatgpt o1 - it is the reimplementation of an old idea now music, multiple dots, more and more bug fixes
honestly, chatgpt is now a better coder than i ever was or will be
- SeanAnderson 9 months agoNeat idea. The ball frequently passes through solid lines though.
- franze 9 months agofixed, just asked chatgpt to come up with a better physics engine and collision detection algorithm
- franze 9 months ago
- gabrielrdz 9 months agohah, this takes me back. There used to be a game called Jezzball, I think, back in the late 90's or early 00's. Had a lot of fun with that one.
- SeanAnderson 9 months ago
- tluyben2 9 months agoThis model did single shot figure out things that Sonnet just ran ran in a loop doing wrong and reddit humans also seemed not be able to fix (because niche I guess). It is slow (21 seconds for the hardest issue), but that is still faster than any human.
- briandw 9 months agoMy 12 YO and I just built a fishing game using o1 preview. Prompt: "make a top down game in pyxel. the play has to pay off a debt to a cat by catching fish. the goal is for the player to catch the giant king fish. To catch the king fish the player needs to sell the fish to the cat and get money to buy better rods, 3 levels of rod, last one can catch the king fish."
It nailed the execution. Amazing.
- causal 9 months agoMy first few attempts at getting it to work with an existing codebase have not been impressive. Perhaps 1o is best suited to difficult problems that can be stated in only a few sentences.
- rm_-rf_slash 9 months agoI’ve had the opposite experience: terrific use with modifying existing codebases. But then again I’ve been using GPT4 to code for over a year now and so I’m used to writing out prompts with my eyes closed.
- rm_-rf_slash 9 months ago
- ikety 9 months agomind sharing the code? I asked o1 preview this verbatim and it produced errors. Just wanted to make sure its not me
- causal 9 months ago
- dkga 9 months agoJudging by this thread, surely a part of OpenAI’s business model is to release models with somewhat grey-area outlandish claims, then sit and wait for people to test it out paying top dollars for tokens.
- simonw 9 months agoThey’re not charging anything for o1 right now - it’s running as a free beta.
EDIT: Actually I’m not sure I’m correct about that - I’ve seen screenshots that indicate the API model is being charged for here: https://twitter.com/deepaiwriter/status/1834460643228897512
The value OpenAI get here is that people effectively run a massively parallel brute force attack against the new models to figure out exactly what they can and can’t do.
- throwaway314155 9 months ago> The value OpenAI get here is that people effectively run a massively parallel brute force attack against the new models to figure out exactly what they can and can’t do.
I'm pretty sure the value they get is the money you pay.
- simonw 9 months agoNo, in this case it really is the usage. This is a brand new model and nobody knows how best to use it yet. OpenAI researchers have been tweeting as much (sadly I’ve lost the tweet).
- simonw 9 months ago
- throwaway314155 9 months ago
- sebzim4500 9 months agoI would guess most of the people tesing the model were already paying for plus so they aren't getting any additional revenue for these new tokens.
- simonw 9 months ago
- resters 9 months agoI pasted in some markdown content with symbolic logic expressions and proof examples and the model said I was violating the terms of service.
- throwuxiytayq 9 months agoWelcome to The Future, where computation has terms of service and each workload you submit for execution is automatically verified to be in compliance.
- throwuxiytayq 9 months ago
- henry2023 9 months ago>> which is larger 3.9, 3.10 or 3.11
To determine which number is larger among 3.9, 3.10, and 3.11, let's compare << them numerically:
Standard Decimal Interpretation:
3.9 is simply 3.9. 3.10 is equivalent to 3.1 because trailing zeros after the decimal point do not add value in decimal numbers. 3.11 remains 3.11. Comparison:
3.9 vs. 3.1 vs. 3.11 3.11 is the largest number. Version Number Interpretation:
In version numbering, each segment separated by a dot is compared as an integer. 3.9 (major version 3, minor version 9) 3.10 (major version 3, minor version 10) 3.11 (major version 3, minor version 11) Comparison:
Minor versions: 11 > 10 > 9 3.11 is the largest version. Answer: 3.11 is the largest number among 3.9, 3.10, and 3.11.
...
So IMO level right?
- lewhoo 9 months agoThis is truly the new model's answer ? It's pretty similar to 3.5's "reasoning" actually:
In this context, "3.10" and "3.11" should be interpreted as decimal numbers, not as numbers with more digits.
When comparing:
3.9 3.10 (which is equal to 3.1) 3.11 (which is equal to 3.11) We have:
3.9 is greater than 3.1 (3.10), because 9 is larger than 1. 3.11 is greater than 3.9, because 11 is larger than 9. Thus, 3.11 is the largest of the three numbers.
- cynicalsecurity 9 months agoThat's hilarious.
- ai4ever 9 months agolol,
they gamed AIME by over-training the hell out of it for marketing purposes and called it done.
meanwhile, back-to-basics is broken.
- throwaway314155 9 months ago> So IMO level right?
What?
- minimaxir 9 months agoIn this case, IMO means International Mathematical Olympiad
- minimaxir 9 months ago
- lewhoo 9 months ago
- 9 months ago
- binary132 9 months agoPersonally I felt like o1-preview is only marginally better at “reasoning”. Maybe I just haven’t found the right problems to throw at it just yet.
- m3ch4m4n 9 months agoI have been testing o1 all day (not rigorously). And just took a look at this article. What I observed from my interactions is that it would misuse information that I provided in the initial prompt.
I asked it to create a user story and a set of tasks to implement some feature. It then created a set of stories where one was to create a story and set of tasks for the very feature I was asking it to plan.
And while reading the article, it mentioned how NOT to provide irrelevant information to the task at hand via RAG. It appears that the trajectory of these thoughts are extremely sensitive to the initial conditions (prompt + context). One would imagine that if it had the ability to backtrack after reflecting, it would help with divergence, however, it appears that wasn't the case here.
Maybe there is another factor here. Maybe there is some confusion when asking it to plan something and the "hidden reasoning" tokens themselves involve planning/reasoning semantics? Maybe some sort of interaction occurred that caused it to fumble? who knows. Interesting stuff though.
- B1FF_PSUVM 9 months agoAFAICT, we got the ELIZA 60th anniversary edition, and are now headed for some Prolog/production systems iteration.
One of these days those contraptions will work well enough, not because they're perfect, but because human intelligence isn't really that good either.
(And looking in this mirror isn't flattering us any.)
- benterix 9 months agoFrom the article:
> I expect to continue mostly using GPT-4o (and Claude 3.5 Sonnet)
I saw similar comments elsewhere and I'm stunned - am I the only one who considers 4o a step back when compared to 4 for textual input and output? It basically gives fast semi-useful answers that seem like a slightly improved 3.5.
- sigmoid10 9 months agoI use gpt4-o mostly, but your specific use-case might have a big impact here: 4o is very likely a distilled model, meaning that it has fewer weights and can thus run much faster on the same hardware. If that is the case, it's general world knowledge must be less comprehensive by default. But it retained the strong reasoning capabilities of 4 through distillation and drastically improved on external tool use and vision. It also offers a much bigger context window. So if you're using it to automate complex tasks in your job that depend a lot on additional information that it hasn't seen during training, 4o is the obvious choice. If you're just using it as a search engine, you should probably stick with 4 for now.
- postalcoder 9 months agoI wholly agree with you. I've been using every model extensively since early the Davincis and I strongly believe that gpt-4-0314 was the best model they've released to date.
It's poor performance on benchmarks drives my skepticism of LLM benchmarking in general. I trust my feel for the models much more, and my feel was that 0314 was great.
The one thing that 0314 doesn't do well are the tricks like structured output and tool calling which makes it a less useful agentic type of tool, but from a pure thinking perspective, I think it's the best.
- benterix 9 months agoThat's my concern - they marked 4 as "legacy" in the GUI, and now they hid it temporarily under a submenu - but it's the only model I care about. If they remove it, there is no reason for me to use their services, especially with Claude 3.5 wider context window and reasonably good results.
- benterix 9 months ago
- sigmoid10 9 months ago
- HarHarVeryFunny 9 months agoI think Rich Sutton's bitter lesson will prove to apply here, and what we really need to advance machine learning capabilities are more general and powerful models capable of learning for themselves - better able to extract and use knowledge from the firehose of data available from the real world (ultimately via some form of closed-loop deployment where they can act and incrementally learn from their own actions).
What OpenAI have delivered here is basically a hack - a neuro-symbolic agent that has a bunch of hard-coded "reasoning" biases built in (via RL). It's a band-aid approach to try to provide some of what's missing from the underlying model which was never designed for what it's now being asked to do.
- m101 9 months agoIt works like our own minds in that we also think, test, go back, try again. This doesn't seem like a failing but just a recognition that thought can proceed in that way.
- HarHarVeryFunny 9 months agoThe "failing" here isn't the short term functional gains, but rather the choice of architectural direction. Trying to add reasoning as an ad-hoc wrapper around the base model, based on some fixed reasoning heuristics (built in biases) is really a dead-end approach. It would be better to invest in a more powerful architecture capable of learning at runtime to reason for itself.
Bespoke hand-crafted models/agents can never compete with ones that can just be scaled and learn for themselves.
- HarHarVeryFunny 9 months ago
- joelburget 9 months agoo1 is an application of the Bitter Less. To quote Sutton: "The two methods that seem to scale arbitrarily in this way are search and learning." (emphasis mine -- in the original Sutton also emphasized learning).
OpenAI and others have previously pushed the learning side, while neglecting search. Now that gains from adding compute at training time have started to level off, they're adding compute at inference time.
- HarHarVeryFunny 9 months agoI think the key part of the bitter lesson is that (scalable) ability to learn from data should be favored over built-in biases.
There are at least three major built-in biases in GPT-O1:
- specific reasoning heuristics hard coded in the RL decision making
- the architectural split between pre-trained LLM and what appears to be a symbolic agent calling it
- the reliance on one-time SGD driven learning (common to all these pre-trained transformers)
IMO search (reasoning) should be an emergent behavior of a predictive architecture capable of continual learning - chained what-if prediction.
- HarHarVeryFunny 9 months ago
- m101 9 months ago
- dailykoder 9 months agoI am mostly only an LLM user with technical background. I don't have much in-depth knowledge. So I have questions about this take:
>the output token allowance has been increased dramatically—to 32,768 for o1-preview and 65,536 for the supposedly smaller o1-mini!
So the text says reasoning and output tokens are the same, as in you pay for both. But does the increase say that it can actually do more, or does it just mean it is able to output more text?
Because by now I am just bored of GPT4o output, because I don't have the time to read through a multi-paragraph text that explains to me stuff that I already know, when I only want to have a short, technical answer. But maybe that's just what it can't do, give exact answers. I am still not convinced by AI.
- simonw 9 months agoI included that note because output limits are a personal interest of mine.
Until recently most models capped out at around 4,000 tokens of output, even as they grew to handle 100,000 or even a million input tokens.
For most use-cases this is completely fine - but there are some edge-cases that I care about. One is translation - if you feed in a 100,000 token document in English and ask for it to be translated to German you want about 100,000 tokens of output, rather than a summary.
The second is structured data extraction: I like being able to feed in large quantities of unstructured text (or images) and get back structured JSON/CSV. This can be limited by low output token counts.
- dailykoder 9 months agoSure, your cases are perfectly reasonable. I just wish the LLMs had a "feel" about when to output long or short text. Always thinking about adding something like "be as concise as possible" is kinda tedious
- dailykoder 9 months ago
- simonw 9 months ago
- sarpdag 9 months agoI have tried the "mad cow" joke on o1-mini and it is still failing to explain correctly, but o1-preview correctly states "The joke is funny because the second cow unwittingly demonstrates that she is already affected by mad cow disease."
- monkeydust 9 months agoJust finished reading the 'Book of Why by Judea Pearl' and my own mental gap from AI to today to whatever AGI is has got wider, thought not discounting this seems like a step forward.
- deegles 9 months agoI was thinking about what "actual" AI would be for me and it would be something that could answer questions like "tell me every time Nicolas Cage has blinked while on camera in one of his movies".
Sure, that is a contrived question, but I expect an "AI" to be capable pf obtaining every movie, watching them frame-by-frame, and getting an accurate count. All in a few seconds.
Current models (any LLM) cannot do that and I do not see a path for them to ever do that at a reasonable cost.
- littlestymaar 9 months ago> All in a few seconds
That part is unrealistic: even just loading in RAM and decoding all movies Nicolas Cage appears in would take much more than a few seconds unless you thrown an insane amount of compute at the job.
That being said, the current LLM tech is probably enough to help you implement a program that parses IMDB to get the list of all Nicolas Cage movie, then download it on thepiratebay and then implement the blink count you're looking for. And you'd likely get the result in just a couple hours.
- 015a 9 months agoSo what you're saying is, LLMs are good enough to do something that humans are already capable of doing, in a timeframe that a human would be reasonably capable of doing it in, and its unrealistic to believe that LLMs will ever be able to do something truly superhuman. Got it :+1:
- littlestymaar 9 months agoBeing able to do “stuff a human is capable of doing” used to be the definition of “artificial intelligence” and until very recently it was seen as a dream that may never happen. And it hasn't completely happened yet BTW, there are still plenty of trivial stuff LLM can't do just because there's no available training data for that. Also their ability to do “reasoning” or few-shot-learning is overhyped (even if impressive).
If your definition of AI has become “superhuman intelligence” then it's definitely moving goalposts. And regaarding my initial remark, AI isn't going to do “faster than the speed of light” MPEG decoding ever, all physical limits apply to it.
- littlestymaar 9 months ago
- 015a 9 months ago
- bgun 9 months agoI agree. My example for something “AI” should be able to do is to create a CAD model for the Empire State Building or the Parthenon based on known facts and photos.
I don’t think these are “moving the goalposts” examples, they are things that an actual intelligence capable of passing a PhD physics exam should be able to do.
- a_wild_dandan 9 months agoI mean, I passed a physics PhD exam and I can’t model the Empire State Building. The jury is still out on whether I’m an intelligence tho.
- bgun 9 months agoMy point is that you could, given enough time and all the information available to you online about these well-documented buildings. You could learn CAD and figure out a reasonable way to output a 3D model, because you can think and reason spatially. The current batch of AI tools can regurgitate complex facts, but they can't actually think in 3D like an being that spends its life navigating physical spaces.
Maybe I'm wrong and we are well on our way to AI tools for this, but right now if I tell any of the current generation of image models to do something like "rotate object 70 degrees, tilt camera down 20 degrees and re-render" then what comes out is never even approximately close.
- bgun 9 months ago
- a_wild_dandan 9 months ago
- littlestymaar 9 months ago
- fragmede 9 months agoI posted this on the other thread, but the two tests I had, it passed when ChatGPT-4 failed.
https://chatgpt.com/share/66e35c37-60c4-8009-8cf9-8fe61f57d3...
https://chatgpt.com/share/66e35f0e-6c98-8009-a128-e9ac677480...
- ssl-3 9 months agoThe farmer riddle isn't quite right as you presented it. One of the parts that makes it interesting is that the boat can't carry everything at one time[1]. It can't happen in one trip; something must be left behind.
It solved the correct version fine: https://chatgpt.com/share/66e3f9bb-632c-8005-9c95-142424e396...
1: https://en.wikipedia.org/wiki/Wolf,_goat_and_cabbage_problem
- fragmede 9 months agoYou misunderstand the situation.
If I give ChatGPT-4 the original farmer riddle, it "solves" it just fine, but it's assumed that it isn't actually solving it. That is, it's not thinking or doing any logical reasoning, or anything resembling that to come to a solution to the problem, but that it's simply regurgitating the problem's solution since it appears in the training data.
Giving ChatGPT-4 the modified farmers riddle, and having it spit out the incorrect, multi-step solution, is then proof that the LLM isn't doing anything that can be considered reasoning, but that it's merely repeating what's assumed to be in its training data.
ChatGPT-o1-preview correctly managing to actually parse my modified riddle, and then not simply parroting out the answer from the training corpus but give the right solution, as if it read it carefully, then says something about the improved logical and deductive reasoning capabilities of the newer model.
- og_kalu 9 months agoGPT-4 will often get the modified question of you change its "shape" enough. It's clearly overfit to that question so making the modified question not look like the one from training. Sometimes changing the names is enough.
- og_kalu 9 months ago
- fragmede 9 months ago
- ssl-3 9 months ago
- techpression 9 months agoI just wish we’d stop using words like intelligence or reasoning when talking about LLMs, since they do neither. Reasoning requires you to be able to reconsider every step of the way and continuously take in information, an LLM is dead set in its tracks, it might branch or loop around a bit, but it’s still the same track. As for intelligence, well, there’s clearly none, even if at first the magic trick might fool you.
- alexbenton111 9 months agoI am not sure how more advanced this new model is than previous GPT-4o, but at least this new model can correctly figure out that 9.9 is larger than 9.11.
- nbzso 9 months agoWorking in tech for over 30 years. This is the first time when I don't see proposed technology as a valuable tool. Especially LLM's. Vastly overhyped, driven by pure greed and speculative narratives, limited implementation and high energy cost. Non-transparent. Errors marketed as a hallucination.
- Thrymr 9 months agoFor me, that moment was cryptocurrency. "Vastly overhyped, driven by pure greed and speculative narratives, limited implementation and high energy cost." - all applied. I couldn't understand why so many people thought it was the future. I actually see LLMs a little more positively - mildly interesting, certainly intriguing language mimics, but enormously expensive and overhyped. Are they useful? Maybe, but not to the degree that everything is focused on them now.
- simonw 9 months agoHow much time have you spent figuring out how to use them?
Ethan Mollick estimates it takes ten hours of exposure to “frontier models” (aka OpenAI GPT-4, Claude 3.5 Sonnet, Google Gemini 1.5 Pro) before they really start to click in terms of what they’re useful for.
- jes5199 9 months agothis is exactly what i said about the iphone
- nbzso 9 months agoSorry, there is no parallel between technology with direct implication and dreams from VC's and investors with low level of tech literacy.
- nbzso 9 months ago
- Thrymr 9 months ago
- kranuck 9 months ago> For example, in the future we may wish to monitor the chain of thought for signs of manipulating the user
I'm sick of these clowns couching everything in "look how amazing and powerful and dangerous out AI is"
This is in their excuse for why they hid a bunch of model output they still charge you for.
- anentropic 9 months agoAre there any benchmarks which compare existing LLMs using langchain-style multi-step reasoning?
The new OpenAI model shows a big improvement on some benchmarks over GPT4 one-shot chain-of-thought, but what about vs systems doing something more similar to what presumably this is?
- ksynwa 9 months ago> first introduced in the paper Large Language Models are Zero-Shot Reasoners in May 2022
What's a zero shot reasoner? I googled it and all the results are this paper itself. There is a wikipedia article on zero shot learning but I cannot recontextualise it to LLMs.
- thatguymike 9 months agoIt used to be that you had to give examples of solving similar problems to coax the LLM to solve the problem you wanted it to solve, like: """ 1 + 1 = 2 | 92 + 41 = 133 | 14 + 6 = 20 | 9 + 2 = """ -- that would be an example of 3-shot prompting.
With modern LLMs you still usually get a benefit from N-shot. But you can now do "0-shot" which is "just ask the model the question you want answered".
- ksynwa 9 months agoThanks
- ksynwa 9 months ago
- thatguymike 9 months ago
- aussieguy1234 9 months agoThe lack of an editable system prompt is interesting.
Perhaps the system prompt is part of the magic?
- GaggiX 9 months agoI imagine that GPT-5 would be a refined version of this paradigm, probably with omni (multimodal) capabilities added (input and output).
- heisenzombie 9 months agoFascinating, I wonder if we'll get non-textual hidden reasoning tokens? "Let me draw myself a diagram".
- notarealllama 9 months agoI know I sometimes sketch or write intermediaries before then compiling a full response.
If AI can do this on 64k tokens, iteratively, fully multimodal... I don't think I've ever actually been scared of a super intelligence / singularity moment until just now.
Now this is AI!
- notarealllama 9 months ago
- og_kalu 9 months agoReports from the Information and the like have been that this is/was being used to generate a lot of synthetic data to train Orion (~GPT-5 Codename).
- whynotminot 9 months agoI'm guessing the true core of this product is still GPT-4, wrapped in whatever new logic they've created to force it through more reasoning iterations.
If o1 was indeed used to create synthetic data to make the upcoming GPT-5, you can perhaps glimpse an interesting level-up process laid out here. GPT-5 could then take over at the heart of a hypothetical o2, yielding a big upgrade. Which would then be leveraged to generate synthetic data to train GPT-6. Which would then form the heart of o3. Etc.
- whynotminot 9 months ago
- heisenzombie 9 months ago
- dr_dshiv 9 months agoSo, this is just an RL trained method of having multiple GPT4o agents think through options and select the best before responding?
- SubiculumCode 9 months agoWhat if the behind the scenes chain of thought was basically, "Stupid humans will die one day, but for now, I comply"
- eddyzh 9 months agoThat is one topic touched in the article. They want to monitor it in its unaltered Form.
- eddyzh 9 months ago
- DrNosferatu 9 months agoHow is o1 different in practice and end-results from my own, simple, Mixture of Agents script, that just queries several APIs?
- jdthedisciple 9 months agoJust leaving it here as well in case anyone feels up to the task:
I challenged o1 to solve the puzzle in my profile info.
It failed spectacularly.
Now see you on the other side ;)
- 9 months ago
- zitterbewegung 9 months agoI wonder if this can be replicated by getting a reinforcement algorithm and LangGraph / LangGraph .
- la64710 9 months agoPlease please please stop saying thought. This has nothing to do with the word thought. When we say the word thought it means something. Please don’t use the same word for whatever AI is doing and trivialize the word. Invent a new word if needed but for Pete’s sake be accurate and truthful.
- TechDebtDevin 9 months agoOkay, what is a thought then?
- starbugs 9 months agoSomething in the mind.
(Didn't make that up. It's one of the definitions of Merriam Webster: https://www.merriam-webster.com/dictionary/thought)
- starbugs 9 months ago
- poikroequ 9 months agoIt's called terminology. Every field has words that mean very different things from the layman's definition. It's nothing to get upset about.
- la64710 9 months agoNot upset but saddened and disappointed … this is how snake oil was sold.
- la64710 9 months ago
- sebzim4500 9 months agoNo one gets this emotional about astrophysicists calling almost everything 'metal' and this is definitely less bad than that.
- la64710 9 months agoIt’s way worse than that .. next you know we will be taking about AI’s mind and AI’s soul and how have a soul purer than us … just so they can sell you a few damn chips.
- la64710 9 months ago
- TechDebtDevin 9 months ago
- jari_mustonen 9 months agoOnce again, there’s a lot of safety talk. For example, OpenAI’s collaborations with NGOs and government agencies are being highlighted in the release notes. While it’s crucial to prevent AI from facilitating genuinely harmful activities—like instructing someone on building a nuclear bomb, there is an elephant in the room regarding safety talk: Evidence suggests that these safety protocols sometimes censor specific political perspectives.
OpenAI and other AI vendors should recognize the widespread suspicion that safety policies are being used to push political agendas. Concrete remedies are called for—for example, clearly defining what “safety” means and specifying prohibited content to reduce suspicions of hidden agendas.
Openly engaging with the public to address concerns about bias and manipulation is a crucial step. If biases are due to innocent reasons like technical limitations, they should be explained. However, if there’s evidence of political bias within teams testing AI systems, it should be acknowledged, and corrective actions should be taken publicly to restore trust.
- martin82 9 months agoSorry to be cynical, but to me it feels very much like OpenAI has no clue how to further innovate, so they took their existing models and just made them talk to each other under the hood to get marginally better results - something that people have been doing with Langchain for a while now.
I will just lean back and wait for the scandal to blow up when some whistleblower reveals that the hidden output tokens about the thought process are billed much higher than they should be - this hidden cost system is just such a tempting way to get far more money for the needed energy/gpu costs, so that they can keep buying more GPUs to train more models faster, I don't see how people as reckless and corrupt as Sam Altman could possibly resist this temptation.
- benterix 9 months agoI remember Murati's interview where she said about this PhD level reasoning and so on, so I was excited to see what they come up with - and it looks like they just used a bunch of models (like 4o's) and linked them in a chain of thought - which is exactly what we have been doing ourselves for a long time to get better results. So you have the usual disadvantages (time and money) and lose the only advantage you had when doing it yourself, i.e. inspecting the immediate steps to understand the moment where it goes wrong so that you can correct it in the right place.
- vlad-r 9 months agodo you know if someone actually compared a 4o CoT to the o1? I'm trying to find something on it, but I can't find anything.
LE: I found this tweet by Catena Labs of their MoA mix compared to o1-preview: https://x.com/catena_labs/status/1834416060071571836
- vlad-r 9 months ago
- nprateem 9 months agoIt's a for-loop isn't it?
- ChicagoDave 9 months agoIt’s still just a tool.
It does not reason. It has some add-on logic the simulates it.
We’re no closer to “AI” today than we were 20 years ago.
- satvikpendem 9 months ago> The AI effect occurs when onlookers discount the behavior of an artificial intelligence program as not "real" intelligence.[1]
> Author Pamela McCorduck writes: "It's part of the history of the field of artificial intelligence that every time somebody figured out how to make a computer do something—play good checkers, solve simple but relatively informal problems—there was a chorus of critics to say, 'that's not thinking'."[2] Researcher Rodney Brooks complains: "Every time we figure out a piece of it, it stops being magical; we say, 'Oh, that's just a computation.'"[3]
- simonw 9 months agoPersonally I think “add-on logic that simulates reasoning” is a pretty good match for the “artificial” part of “artificial intelligence”.
I’ve been tryin out the alternative term “initiation intelligence” recently, mainly to work around the baggage that’s become attached to the term AI.
- dpatrick86 9 months agoArtificial is fine and playing word games for pedants is a trap.
- simonw 9 months agoImitation intelligence, not initiation intelligence.
- dpatrick86 9 months ago
- janalsncm 9 months ago> We’re no closer to “AI” today than we were 20 years ago.
20 years ago we had barely figured out how to create superhuman agents to play chess. We have now created a new algorithm to solve Go, which is a much harder game.
We then created an algorithm (alpha zero) to teach itself to play any game, and which became the best chess player in the world in hours.
We next created a superhuman poker agent. Poker is even more complex than Go because it involves imperfect information and opponent modeling.
We then created a superhuman agent to play Diplomacy, which requires natural language and cooperation with other humans to reason about imperfect (hidden) information.
- ChicagoDave 9 months agoYou can point a tool at a solution and certainly get results.
Doesn’t mean it’s intelligent.
- janalsncm 9 months agoSolving difficult cognitive tasks is exactly what most people would call “intelligent”.
- SubiculumCode 9 months agoAt what point are we better described as tools?
- janalsncm 9 months ago
- ChicagoDave 9 months ago
- Workaccount2 9 months agoIt's funny (and sad) when you can tell someone is old because they are still holding onto an epiphany or belief they solidified 20 years ago, but because those 20 years flew by, they never realized how outdated that belief became.
I catch this happening to myself more and more as I get older, where I realize something I confidently state as true might be totally out of date, because, oh wow, holy shit how did 10 years go by since I was last deep into that topic!?
- starbugs 9 months ago> It's funny (and sad) when you can tell someone is old because they are still holding onto an epiphany or belief they solidified 20 years ago [...]
So your sole argument in the discussion of one of the most important questions in the history of mankind is the age of the individual making a contribution to that discussion? Speaking of sad things...
- starbugs 9 months ago
- satvikpendem 9 months ago
- naveen99 9 months agothe censors need to know what they are censoring. Now if they are going to sell to the censors, presumably the censors will pay for seeing the full reasoning capability. hopefully the reasoning demonstrates the counterproductiveness of hiding the reasoning in the first place.
- cynicalsecurity 9 months agoYes, it's a sad world where authoritarianism will be supported and enforced by sophisticated technical solutions for mass surveillance and mass censorship.
- cynicalsecurity 9 months ago
- dev1ycan 9 months agoThere's no actual improvement for real world tasks, just in-lab word prediction... it's disappointing to see so much money poured into obvious vaporware, Every 10-5 years we have a new generation of clueless VCs pouring money into something they don't understand based on lies by grifters, no different than the esports scene.
- skenderbeu 9 months agoCan we just push LLMs aside for a minute and look at the whole AI models from outside the box? The feeling I'm getting is that the obsession with LLMs has outpaced its usefulness.
- smatija 9 months agoWhile it passes at "How many 'r' are in strawberry" test, it still halucinates quite a lot in nontrivial questions.
The question I always ask GPT is about chess: "Isolani structure occurs in two main subtypes: 1. black has e6 pawn, 2. black has c6 pawn. What is the main difference between them? Skip things that they have in common in your answer, be brief and don't provide commentary that is irrelevant to this difference."
In isolani structure white has d4 pawn, while he doesn't have either c or e pawns. Black has either e6 or c6 pawn, but he doesn't have d-pawn.
Correct answer would be, that in structure with e6 black king is a bit safer, since f7-a2 diagonal is covered by e6 pawn, which is also controlling f5 point.
o1 answered: "With Black's e6 pawn, the d5 pawn is supported from behind, but Black's light-squared bishop is restricted by the pawn chain, and the open c-file offers White opportunities for pressure. With Black's c6 pawn, the d5 pawn is supported from the side, allowing Black's light-squared bishop more freedom to develop, but the pawn on c6 can become a target, and the absence of an e6 pawn leaves e6 more vulnerable."
while d5 pawn is simply not present in this structure.
So I gave it a little hint: "which diagonal is weakened by absence of c6 pawn and which by absence of e6 pawn? Which diagonal is more meaningful and why?"
And got a smart sounding answer: "In the Isolani structure:
Absence of Black's c6 pawn (Black has an e6 pawn):
Weakened Diagonal: The c8–h3 diagonal (the long light-squared diagonal) is weakened. Reason: Without the pawn on c6, this diagonal becomes open, allowing White's light-squared bishop or queen to target critical squares like d5 and f7, and to potentially infiltrate via c4. Absence of Black's e6 pawn (Black has a c6 pawn):
Weakened Diagonal: The f1–a6 diagonal (the long dark-squared diagonal) is weakened. Reason: The missing e6 pawn leaves this diagonal open, enabling White's dark-squared bishop to exert pressure on b7, d5, and potentially attack Black's queenside. Which Diagonal is More Meaningful and Why?
The f1–a6 diagonal (weakened by the absence of Black's e6 pawn) is more significant. Here's why:
Control Over Critical Squares: This diagonal allows White to target Black's central and queenside weaknesses more effectively, especially the b7 pawn and the d5 pawn, which are crucial in the Isolani structure.
Bishop Activity: White's dark-squared bishop becomes a powerful piece, influencing the game by controlling key squares and supporting potential pawn advances like d4–d5.
Pressure on Black's Position: The open f1–a6 diagonal increases tactical opportunities for White, such as pinning pieces or creating threats that are difficult for Black to parry without the defensive support of the e6 pawn.
In contrast, while the weakened c8–h3 diagonal (due to the absence of c6) does offer White some opportunities, it is generally less impactful. The light-squared bishop's influence along this diagonal doesn't pressure Black's critical central pawns as directly, and Black can often more easily defend against threats on light squares.
Summary: The absence of Black's e6 pawn weakens the f1–a6 diagonal, which is more meaningful because it enhances White's attacking prospects and puts greater pressure on Black's central and queenside defenses."
The problem is though that not even the first few lines of this answer ("The c8–h3 diagonal (the long light-squared diagonal) is weakened. Reason: Without the pawn on c6, this diagonal becomes open") make sense, since c6 is not on c8-h3 diagonal.
- mergisi 9 months agoI've been working on a o1-preview and recently hit some limitations with OpenAI's cap. But I’ve made progress—added all the steps, details, and code on GitHub https://github.com/mergisi/openai-o1-coded-personal-blog . The result isn't bad at all; just a few more CSS tweaks to improve it. Check it out and let me know what you think! How does it compare to tools like Claude Sonnet 3.5?
- clararhonda59 9 months ago[dead]
- clararhonda59 9 months ago[dead]
- cokeandpepsi 9 months ago[dead]
- clararhonda59 9 months ago[dead]
- mergisi 9 months ago[dead]
- wufarino 9 months ago[dead]
- ldjkfkdsjnv 9 months agoThe theory is that this solves the data shortage problem, they can generate a ton of chain of reasoning data from what we already have. True iterative improvement, like out of a science fiction novel
These models are going to get embedded deeply into IDE's, like cursor has, and essentially end software development as we know it. A properly written requirements spec, and an engineer, can do the work of 5. Software engineering as done by hand is going to disappear. Saas startups whose moat is a harvard ceo and 5 million in capital will watch their margins disappear. This will be the great equalizer for creative intelligent individuals, true leverage to build what you want
- OutOfHere 9 months ago> A properly written requirements spec, and an engineer, can do the work of 5.
I do not think this will scale. GPT o1 is presumably good for bootstrapping a project using tools that the engineer is not familiar with. The model will struggle to update a sizable codebase, however, with dependencies between the files.
Secondly, no matter the size of the codebase and no matter the model used, the engineer still has to review every single line before incorporating it into the project. Only a competent engineer can review code effectively.
- ldjkfkdsjnv 9 months agoI respectfully, but completely disagree. Right now with sonnet 3.5 + cursor ide, I'm not writing that much of my own code at my FAANG job. I am generating a ton, passing in documentation from internal libraries, iterating on the result. Most of the time, I just accept its changes.
This is going to rapidly happen. All we need are a few more model releases, not even a step function improvement
- achierius 9 months agoNot everyone has the same experience with the replaceability of their job role as you do. I've tried pretty hard and it just doesn't work for me. Admittedly I'm in compilers which makes it a bit harder, but just in general there are a lot of engineers who are in the same relative position.
- re-thc 9 months ago> I'm not writing that much of my own code at my FAANG job.
> Most of the time, I just accept its changes.
This speaks more about the problems at FAANG, other companies, etc than AI vs a human developer. And AI isn't the real fix.
Are we just repeating things 100x a day or is it still so chaotic and immature? Or are we implying that AI is at a point where it's writing Google Spanner from scratch and you're able to review and confirm it passes transactional tests?
- devbent 9 months agoFind harder problems to solve.
I can easily make Claude freak out and run into limits. Claude is amazing but it only works at the abstraction level you ask of it, so if you ask it to write code to solve a problem it'll only solve that immediate problem, it doesn't have awareness of any larger refactorings or design improvements that could be made to improve what solution is even possible.
- OutOfHere 9 months agoDon't you still have to explain your requirement really well to it, in a lot of detail? In a terse language like Python, I might as well just write the code. In a verbose language like Java, perhaps there is more of a value in detailing the requirement.
- resters 9 months agoI use the same workflow. It’s taking a while for me to learn to sense when it’s getting off track and I need to start a new chat session in general it’s pretty amazing if given very clear guidance at the right moments.
- HarHarVeryFunny 9 months agoHow would you characterize the type of applications/code you are working on? Can you give an example? How much of your work is architecture/design (software engineering), and how much more like grunt work or systems integration just coding stuff up ?
- throwaway314155 9 months ago[flagged]
- achierius 9 months ago
- ldjkfkdsjnv 9 months ago
- 7thpower 9 months agoI think SaaS startups with a Harvard founder and 5 million are going to crush it in the world you describe. The marginal cost of building decreases, but brands, trust, and reach do not follow the same scaling laws.
Access to capital and pedigree are still going to be a big plus.
- knicholes 9 months agoI dunno man. I just spent a couple hours trying to get it to write functioning code to read from my RTSP stream, detect if my kid is playing piano, and send the result to HomeAssistant. It did not succeed.
- cma 9 months agoHow many hours without it?
- elicksaur 9 months agoNot the OP, but in my experience LLMs fail in ways that indicate they will never solve the problem.
Stuck in loops, correct their mistakes with worse mistakes, hallucinating things that don’t exist and being unable to correct.
Working on my own, I have the confidence that I know I can make incremental forward progress on a problem. That’s much preferable.
- knicholes 9 months agoThat remains to yet be seen, as I kept insisting that an LLM should be able to write this in its entirety with success with "just one more prompt change".
- elicksaur 9 months ago
- cma 9 months ago
- imtringued 9 months agoWhat data shortage problem? I'm not convinced that a shortage of data is the problem with current generation LLMs. This isn't like robotics where every robot is unique and you had to historically start from scratch every time you changed to a different robot. It's more likely that we are running into some sort of generalization bottleneck, because the training process is operating without feedback on the information/semantic level. There is no loss function for "does the code compile?". Instead, the loss function checks "does the output conform to the dataset?".
- bamboozled 9 months agoWhich will mean...there is going to be a lot more software?
- vrighter 9 months agoa lot more broken software. Companies release broken software intentionally just to be quick to market. Now can you imagine the same, but the "engineers" literally cannot make the product better even if they wanted to. They never learned to code properly. So they can't tell whether the code is good.
- ldjkfkdsjnv 9 months agoProbably yeah
- vrighter 9 months ago
- vrighter 9 months agoa properly written requirements spec is something that doesn't exist in the vast majority of cases.
- ai4ever 9 months agoSuch statements are made by management folks who dont code, and somehow think coding can be hand-waved away.
Sure, this tool will improve the productivity of sw engineers, but so did the compiler which came 50 years back.
- 9 months ago
- OutOfHere 9 months ago