vemonet 6 hours ago

It's not really available for real use.

I have tried it on "Azure AI foundry" through their serverless API with a paid subscription.

It takes 80s to answer a basic question that was answered in 7s by OpenAI gpt-4o. And there was not that much thought process, it was just super slow to output each token.

I guess this slowness is explained by the pricing, they are still figuring out how to run the inference for this model:

> DeepSeek R1 use is currently priced at $0, and use is subject to rate limits which may change at any time. Pricing may change, and your continued use will be subject to the new price. The model is in preview; a new deployment may be required for continued use.

There is also a hard limitation of 4k tokens as input context (context window on DeepSeek model is 120k tokens), which prevents using it for RAG use-cases:

> Message: Request body too large for deepseek-r1 model. Max size: 4000 tokens.

Also the documentation and python type hints of their inference lib have a lot of straight up errors in it (they are confusing the class attributes `model=` and `model_name=` at many places in the docs, spoiler: the good one to use is `model_name=`, even if the type hints recommend to use `model=`).

I have also tried with more stable models like Mistral Large, but the streaming feeling is really bad, they are sending whole sentences at a time, with multiple seconds of wait between each sentence. Does not feel smooth at all compared to any other provider out there.

Would not recommend Azure AI foundry for production use (or any use to be honest). Does not worth the pain to navigate the documentation. We will be using directly DeepSeek API, or fireworks.ai, or together.ai.

arnado a day ago

I don't understand the hype because I'm out of the loop. Is the only advantage the lower hardware requirements, thus cost? Is there something I'm missing?

  • tmasdev a day ago

    OpenAI o1 and Deepseek r1 have similar performance (o1 is a bit better at reasoning though you can see r1’s though process which you could argue trumps the competition). OpenAI o1 api cost: $60/million output tokens. Deepseek r1 api cost: $2.19/million output tokens.

  • dutchbookmaker 16 hours ago

    It isn't really hype for me.

    For my use, it is better than $20 a month o1 and being able to see the chain of thought is absolutely incredible.

    I have learned as much this week from seeing the chain of thought as I have from what it actually outputs.

  • bl4kers a day ago

    It's also open source

    • vinni2 13 hours ago

      open weights you mean. People confuse open weights with open source.

  • Synaesthesia a day ago

    Yeah it's a lot more efficient, it's also a very advanced model that answers questions in a multi-step way, like OpenAI-O1, it performs extremely well.

erdaniels a day ago

Love that Microsoft is getting behind this actually good model

xnx a day ago

This is bizarre to see the entire AI hype cycle speedrun all over on just DeepSeek.

I'm trying to square the excitement over DeepSeek with its good -but not dominant- performance in evals.

  • zamadatix a day ago

    Previously choosing a top tier AI model tied you to what that provider wanted to do with hosting the model long term and the pricing they wanted to charge for it. Now you can get the same model anywhere with GPU, hosted or not, for minimal cost overhead to what it takes to run the model itself. You're also free to tune, retrain, or otherwise mess with the model as you see fit without needing approval.

    The excitement is probably a bit much but it's not just about the eval results themselves but the baggaged attached with them.

  • samvher a day ago

    For me the excitement is that around the o3 announcement I had a feeling like we were heading to an OpenAI / Sam Altman controlled dystopia. This resets that - you can run the model yourself, you can modify it yourself, it's essentially on par with the best public models, and it gives hope that the smaller players have a fighting chance going forward. They also published their innovations bringing back some of the feeling of open science that used to be in ML research but which mostly went away.

    • xnx a day ago

      Google models are already in the lead in many areas in capability and cost, so I never felt like OpenAI was dominant. OpenAI was first to make a splash, but ChatGPT is in a ~5 way tie in terms of what it can do.

  • maxglute a day ago

    IMO more anti hype for openAI who might be dominant, but are they $3500 per task (O3 high) dominant, or $200 per month dominant.

    • dutchbookmaker 16 hours ago

      This is it.

      I was planning on spending the $200 for a month but had been thinking of prompts to try it out.

      DeepSeek already answered them all for free so I am not just going to light $200 on fire for fun.

    • xnx a day ago

      Right, but Google already had models that were as good at much lower cost.

      • maxglute a day ago

        Which models at what cost? IMO Deepseek websearch potential to challenge Google search moat also makes Google particularly vunerable, because it dramatically evaporates advantages of 100s of billions of hardware. Not to imply Google does not maintain advantages, but it gap just went from insurmountable to many actors can potentially build AI search to rival Google on shoe string budget. Certainly on sovereign budget.

        • xnx 21 hours ago

          Reliably serving planet-scale inference is a whole different ballgame.

          • maxglute 21 hours ago

            It's going to be an increasingly irrelevant game when models make regional scale, i.e. country/sovereign scale inference attainable. Countries that couldn't even role out domestic search pre accessible models that displaces search likely soon can.

            • xnx 19 hours ago

              For 2024-level tech I agree. The future is multimodal and a lot of processing power will be needed for that.

  • TuxSH a day ago

    AFAIK o1 is hidden behind an expensive subscription (iirc $20/mo and still rate-limited), it might as well just not exist for most users (since R1 is free, provided service availability).

    Also R1 (and its distilled models) expose their CoT & web interface has a websearch option too.

    With the 14b distilled models, I found multiple math-related prompts where it gives the right answers almost immediately but then wastes 10 minutes making self-verification mistakes (e.g. "Write Python3 code that computes the modular inverse of a mod 2^32")

CodeCompost 12 hours ago

It can only be deployed in FIRA.

KaoruAoiShiho a day ago

How's the pricing as compared to official API or openrouter providers?

bko a day ago

This is exciting.

Is there a free version of DeepSeek R1 that's completely US based, so we're not sending data to China? I guess you can use this to deploy it, but I'm asking for an application that would be safer to use if you're concerned about Chinese influence.

kam1kazer a day ago

Looks like DeepSeek R1 is a Microsoft shady move against Sam ;]

  • bogdan 16 hours ago

    What is shady about it? Should a company the size of Microsoft stand by instead?

ofou a day ago

competition is beneficial for all of us, this is great

jimpster a day ago

What is the price on Azure?

jimpster a day ago

What is the price?

  • rcarmo 13 hours ago

    Free in preview, at least in my personal subscription (there was a disclaimer saying that it was in preview, no guarantees of response times, etc.)

    (I work at Microsoft but am not on the clock as I write this, and keep my personal projects separate)