Comment by segmondy

Comment by segmondy 5 days ago

47 replies

This is not even remotely close and very silly. A ChainOfThought in a loop.

TreeOfThoughts is a more sophisticated method, see - https://arxiv.org/pdf/2305.10601

The clue we all had with OpenAI for a long time that this was a search through a tree, they hired Noam Brown, and his past work all hinted towards that. Q, is obviously a search on a tree like A. So take something like CoT, build out a tree, search for the best solution across it. The search is the "system-2 reasoning"

COAGULOPATH 4 days ago

Came here hoping to find this.

You will not unlock "o1-like" reasoning by making a model think step by step. This is an old trick that people were using on GPT3 in 2020. If it were that simple, it wouldn't have taken OpenAI so long to release it.

Additionally, some of the prompt seems counterproductive:

>Be aware of your limitations as an llm and what you can and cannot do.

The LLM doesn't have a good idea of its limitations (any more than humans do). I expect this will create false refusals, as the model becomes overcautious.

  • anshumankmr 4 days ago

    >The LLM doesn't have a good idea of its limitations (any more than humans do). I expect this will create false refusals, as the model becomes overcautious.

    Can it not be trained to do so? From my anecdotal observations, the knowledge cutoff is one thing that LLMs are really well trained to know about. Those are limitations that LLMs are currently well trained to handle. Why can it not be trained to know that it is quite frequently bad at math, it may produce sometimes inaccurate code etc.

    For humans also, some people know some things are just not their cup of tea. Sure there are times people may have half baked knowledge about things but one can tell if they are good at XYZ things, and not so much at other things.

    • fudged71 4 days ago

      It's a chicken and egg situation. You don't know a model's capabilities until it is trained. When you then change the training with that learning, it will have modified capabilities.

    • regularfry 4 days ago

      Apart from anything else there will be a lot of text about the nature of LLMs and their inherent limitations in its training set. It might only need to be made salient the fact that it is one in order to produce the required effect.

  • whimsicalism 4 days ago

    you’re wrong and stating things confidently without the evidence to back it up.

    alignment is a tough problem and aligning long reasoning sequences to correct answer is also a tough problem. collecting high quality CoT from experts is another tough problem. they started this project in october, more than plausible it could take this time

  • Meganet 4 days ago

    You actually don't know that.

    A LLM has a huge amount of data ingested. It can create character profiles, audience, personas etc.

    Why wouldn't it have potentially even learned to 'understand' what 'being aware of your limitations' means?

    Right now for me 'change of reasoning' feels a little bit of quering the existing meta space through the reasoning process to adjust weights. Basically priming the model.

    I would also not just call it a 'trick'. This looks simple, weird or whatnot but i do believe that this is part of AI thinking process research.

    Its a good question though what did they train? New Architecture? More parameters? Is this training a mix of experiments they did? Some auto optimization mechanism?

    • Hugsun 4 days ago

      It might understand the concept of it having limitations, but it can't AFAIK reliably recognize when it does or doesn't know something, or has encountered a limitation.

      • Meganet 4 days ago

        Its the same thing as with humans, thats right. It doesn't do Logical reasoning but even the best humans stop at some level.

        But if you read all the knowledge of humans, were does your reasoning start? Probably at a very high level of it.

        If you look at human brains, we conduct experiments right? As a software developer, we write tests. ChatGPT can already run python code and it can write unit tests.

        We do not use proofs when we develop. An AI could actually doing this. But at the end its more of a question who does it better, faster and cheaper eh?

        • Hugsun 6 hours ago

          There is an important difference between humans and LLMs in this context.

          Humans do in most cases have some knowledge about why they know the things they know. They can recall the topics they learned at school, and can deduce that they probably heard a given story from a friend who likes to discuss similar topics, etc.

          LLMs have no access to the information they were trained on. They could know that everything they know was learned during the training, but they have no way of determining what they learned about and what they didn't.

      • stevenhuang 4 days ago

        If you think about it, those criticisms extend to human thinking too. We aren't infallible in all situations either.

        It's only when we can interact with the environment to test our hypothesis that we then refine what we know and update our priors appropriately.

        If we let LLMs do that as well, by allowing it to run code and interact with documentation/the internet and double-check things its not sure of, it's not out of the question LLMs won't eventually be able to more reliably understand its limitations.

        • Hugsun 6 hours ago

          As they are currently constructed, I would say that it is out of the question.

          Humans usually know (at least roughly) the source of anything they know, as there will be a memory or a known event associated with that knowledge.

          LLMs have no analogous way to determine the source of their knowledge. They might know that all their knowledge comes from their training, but it has no way of knowing what was included in the training and what wasn't.

          This could maybe be achieved with some more fancy RAG systems, or online training abilities. I think an essential piece is the ability to know the source of information. When LLMs reliably do, and apply that knowledge, they'll be much more useful. Hopefully somebody can achieve this.

cubefox 4 days ago

It's interesting that DeepMind still publishes this stuff. OpenAI doesn't publish anything of that sort anymore. DeepMind is more research/publication focused, but this is a disadvantage in a competitive landscape where OpenAI and Anthropic can just apply the results of your paper without giving anything back to the research community.

  • marricks 4 days ago

    > but this is a disadvantage in a competitive landscape

    Or it's a unique advantage because this stuff doesn't happen without good researches who may want:

    1) Their name in scientific papers

    2) They might actually care about the openess of AI

    • cubefox 4 days ago

      So far it seems to be a disadvantage as DeepMind has fallen behind OpenAI, despite their size, and to some extent even behind Anthropic.

      • marricks 4 days ago

        They feel behind because they didn't have the smart guy with a new idea a few years back, and HE decided to work at a place which started as open.

        Playing catch up and trying to attract talent from the hot-new-thing OpenAI requires incentives beyond lots of money. I contend actually being open helps.

        I'm sure that's one reason Facebook has an open source model, scientists can care about ethics and could be attracted to openness.

  • cabidaher 4 days ago

    Anthropic publishes quite a lot too though.

    • cubefox 4 days ago

      On safety, but no longer on capabilities.

zaptrem 4 days ago

Where in their blog post (which seemingly had complete examples of the model’s chain of thought) did they suggest they were using search or tree of thoughts?

  • Joeri 4 days ago

    Just a guess:

    The chain of thought would be the final path through the tree. Interactively showing the thought tokens would give the game away, which is why they don’t show that.

  • blackbear_ 4 days ago

    They mention reinforcement learning, so I guess they used some sort of Monte Carlo tree search (the same algorithm used for AlphaGo).

    In this case, the model would explore several chain of thoughts during training, but only output a single chain during inference (as the sibling comment suggests).

    • whimsicalism 4 days ago

      as someone who works in this field, this comment is obviously uninformed even about old public research trends

      • ricardobeat 4 days ago

        Care to elaborate? Your comment would be a lot more useful if it included a little why. Otherwise it’s just teasing readers and at the same time smearing the author without anything to back it up.

dinobones 4 days ago

OAI revealed on Twitter that there is no "system" at inference time, this is just a model.

Did they maybe expand to a tree during training to learn more robust reasoning? Maybe. But it still comes down to a regular transformer model at inference time.

  • ValentinA23 4 days ago

    Quiet-STaR: Language Models Can Teach Themselves to Think Before Speaking

    https://arxiv.org/pdf/2403.09629

    > In the Self-Taught Reasoner (STaR, Zelikman et al. 2022), useful thinking is learned by inferring rationales from few-shot examples in question-answering and learning from those that lead to a correct answer. This is a highly constrained setting – ideally, a language model could instead learn to infer unstated rationales in arbitrary text. We present Quiet-STaR, a generalization of STaR in which LMs learn to generate rationales at each token to explain future text, improving their predictions.

    >[...]

    >We generate thoughts, in parallel, following all tokens in the text (think). The model produces a mixture of its next-token predictions with and without a thought (talk). We apply REINFORCE, as in STaR, to increase the likelihood of thoughts that help the model predict future text while discarding thoughts that make the future text less likely (learn).

  • quantadev 4 days ago

    I don't think you can claim you know what's happening internally when OpenAI processes a request. They are a competitive company and will lie for competitive reasons. Most people think Q-Star is doing multiple inferences to accomplish a single task, and that's what all the evidence suggests. Whatever Sam Altman says means absolutely nothing, but I don't think he's claimed they use only a single inference either.

    • whimsicalism 4 days ago

      what is “all the evidence”? please share

      • quantadev 4 days ago

        I recommend getting on Twitter to follow closely the leading individuals in the field of AI, and also watch the leading Youtube channels dedicated to AI research.

  • pizza 4 days ago

    Source?

    • nell 4 days ago

      > I wouldn't call o1 a "system". It's a model, but unlike previous models, it's trained to generate a very long chain of thought before returning a final answer

      https://x.com/polynoamial/status/1834641202215297487

      • astrange 4 days ago

        That answer seems to conflict with "in the future we'd like to give users more control over the thinking time".

        I've gotten mini to think harder by asking it to, but it didn't make a better answer. Though now I've run out of usage limits for both of them so can't try any more…

boulos 5 days ago

Reminder: you need to escape the * otherwise you end up with emphasis (italics here).