> But now with reasoning systems and verifiers, we can create brand new legitimate data to train on. This can either be done offline where the developer pays to create the data or at inference time where the end user pays! > This is a fascinating shift in economics and suggests there could be a runaway power concentrating moment for AI system developers who have the largest number of paying customers. Those customers…
An analysis of DeepSeek's R1-Zero and R1
61–70 of 280 posts
Re: An analysis of DeepSeek's R1-Zero and R1
#62Earlier quoted context omitted.
every time you respond to an AI model "no, you got that wrong, do it this way" you provide a very valuable piece of data to train on. With reasoning tokens there is just a lot more of that data to train on now
So if I just pay OpenAI $200/mo, and randomly tell the AI, no that's wrong. I can stop the AI takeover?
Re: An analysis of DeepSeek's R1-Zero and R1
#63The claim is that this removes the human bottleneck (aka SFT or supervised fine tuning) on domains with a verifiable reward. Critically, this verifiable reward is extremely hard to pin down in nearly all domains besides mathematics and computer science.
By verifiable do they mean it in the complexity theory P/NP sense of the word?
I would say… it is at least somewhat similar.
A problem in NP might be of the form “For this value of X, does there exist a Y such that q(X,Y)?” for some predicate q and value X, and where when the answer is “yes”, the answer of “yes” can be verified by being given a value Y, and evaluating q(X,Y). (Specifically in the case of 3SAT, X would be a 3CNF formula, Y would be an assignment of values to the variables in the formula, and q(X,Y) would be “the formula X when evaluated with variable assignments Y, results in 'true’.”.)
This is sort of like the task of “Given requirements X that can be checked automatically, produce code Y which satisfies those requirements”, except that in this case the question is specifically asking for Y, not just asking whether such a Y exists, but.. well, often in practice when one wants a solution to a problem in NP, one actually wants the witness, not just whether there exists such a Y, right?
So, I would say there is a substantial similarity, but also a difference.
Re: An analysis of DeepSeek's R1-Zero and R1
#64The claim is that this removes the human bottleneck (aka SFT or supervised fine tuning) on domains with a verifiable reward. Critically, this verifiable reward is extremely hard to pin down in nearly all domains besides mathematics and computer science.
- is such-and-such theorem deep or shallow?
- is this definition/axiom useful? (there's a big difference between doing compass-straightedge proofs vs. wondering about the parallel postulate)
- more generally, discovering theorems is generally not amenable to verifiable rewards, except in domains where simpler deterministic tools exist (in which case LLMs can likely help reduce the amount of brute forcing)
- is this a good mathematical / software model of a given real-world system?
- is the flexibility of dynamic/gradual typing worth the risk of type errors? is static typing more or less confusing for developers?
- what features should be part of a programming language's syntax? should we opt for lean-and-extensible or batteries-included?
- are we prematurely optimizing this function?
- will this program's memory needs play nicely with Rust's memory model? What architectural decisions do we need to make now to avoid headaches 6 months down the line?
Re: An analysis of DeepSeek's R1-Zero and R1
#65Re: An analysis of DeepSeek's R1-Zero and R1
#66Earlier quoted context omitted.
This assumes that you give honest feedback. Efforts to feed deployed AI models various epistemic poisons abound in the wild.
I am not in this space, question: are there "bad actors" that are known to feed AI models with poisonous information?
Re: An analysis of DeepSeek's R1-Zero and R1
#67Earlier quoted context omitted.
with 57 million(!!) tokens
From the article : o3 (low) 75.7% 335K $20 o3 (high) 87.5% 57M $3.4K
Re: An analysis of DeepSeek's R1-Zero and R1
#68Um, what’s that now? Really?
Re: An analysis of DeepSeek's R1-Zero and R1
#69I predict that the future of LLM's when it comes to coding and software creation is in "custom individually tailored apps". Imagine telling an AI agent what app you want, the requirements and all that and it just builds everything needed from backend to frontend, asks for your input on how things should work, clarifying questions etc. It tests the software by compiling and running it reading errors and failed tests a…