DeepScaleR: Surpassing O1-Preview with a 1.5B Model by Scaling RL
51–60 of 137 posts
Re: DeepScaleR: Surpassing O1-Preview with a 1.5B Model by Scaling RL
#52This is finetuned to the benchmarks and nowhere close to O1-Preview in any other tasks. Not worth looking into unless you specifically want to solve these problems - however, still impressive.
We beat O1-preview and even many other 7B models over many math benchmarks, which was TEST set (not in training set at all). If you want to make the model fully generalist, feel free to train it over coding datasets (such as RL with passing unit tests as reward).
Side question, since it sounds like you were involved: how big is the impact on benchmarks of taking this 1.5B model down from fp32 to fp8 or similar? The focus on parameters alone sometimes feels like comparing house sizes by their lengths alone. And, if you were indeed involved, thanks for making all of this open and available!
Re: DeepScaleR: Surpassing O1-Preview with a 1.5B Model by Scaling RL
#53It gave it a good go 2min on a m2 vs phi4 which was instant.
Re: DeepScaleR: Surpassing O1-Preview with a 1.5B Model by Scaling RL
#54Can CoT models also call external functions? What if they had access to a calculator?
Re: DeepScaleR: Surpassing O1-Preview with a 1.5B Model by Scaling RL
#55Earlier quoted context omitted.
this model is specifically trained for solving math problems, so ask it some math questions?
I'm lazy. Do you know of any good test math questions for a model of this size?
Knowing that 1^3 + 2^3 + 3^3 + 4^3 + ... + 11^3 + 12^3 = 6084, what is the value of 2^3 + 4^3 + 6^3 + ... + 22^3 + 24^3?
DeepSeek R1 (1.58-bit GGUF, running locally) has no trouble with that one.Re: DeepScaleR: Surpassing O1-Preview with a 1.5B Model by Scaling RL
#56Does anyone have any good simple prompts for testing new "reasoning" models like this one? "Count the letter Rs in the word strawberry" is a bit dull! I'm trying this one locally using Ollama and the smallest quantized GGUF version (769MB) I could find - https://huggingface.co/bartowski/agentica-org_DeepScaleR-1.5... - I ran it like this: ollama run hf.co/bartowski/agentica-org_DeepScaleR-1.5B-Preview-GGUF:IQ3_XXS He…
I have two. One is a simple one that only deepseek R1 has passed (in my opinion): I have a 12 liter jug and a 6 liter jug. How do I get exactly 6 liters of water? Answer (Deepseek): Fill the 6-liter jug completely to obtain exactly 6 liters of water. Every other LLM I've tried include o3-mini-high: Fill the 12-liter jug completely. Pour it into the 6 liter jug. Although o3 did get it right in the reasoning: It seems…
Re: DeepScaleR: Surpassing O1-Preview with a 1.5B Model by Scaling RL
#57Does anyone have any good simple prompts for testing new "reasoning" models like this one? "Count the letter Rs in the word strawberry" is a bit dull! I'm trying this one locally using Ollama and the smallest quantized GGUF version (769MB) I could find - https://huggingface.co/bartowski/agentica-org_DeepScaleR-1.5... - I ran it like this: ollama run hf.co/bartowski/agentica-org_DeepScaleR-1.5B-Preview-GGUF:IQ3_XXS He…
'Count the letter Rs in the word strawberry' is probably in all training sets by now.
Re: DeepScaleR: Surpassing O1-Preview with a 1.5B Model by Scaling RL
#58Does anyone have any good simple prompts for testing new "reasoning" models like this one? "Count the letter Rs in the word strawberry" is a bit dull! I'm trying this one locally using Ollama and the smallest quantized GGUF version (769MB) I could find - https://huggingface.co/bartowski/agentica-org_DeepScaleR-1.5... - I ran it like this: ollama run hf.co/bartowski/agentica-org_DeepScaleR-1.5B-Preview-GGUF:IQ3_XXS He…
'Count the letter Rs in the word strawberry' is probably in all training sets by now.
Re: DeepScaleR: Surpassing O1-Preview with a 1.5B Model by Scaling RL
#59Earlier quoted context omitted.
Having replicated it at F32 I now suspect tokenization.
Try bfloat16! We have a bug where the model was saved as fp32.
ollama run hf.co/bartowski/agentica-org_DeepScaleR-1.5B-Preview-GGUF:F16
And this time it didn't get confused with the tokenization of strawberry! https://gist.github.com/simonw/9e79f96d69f10bc7ba540c87ea0e8...