blog
blog copied to clipboard
Public repo for HF blog posts
Congratulations! You've made it this far! Once merged, the article will appear at https://huggingface.co/blog. Official articles require additional reviews. Alternatively, you can write a community article following the process [here](https://huggingface.co/blog-explorers)....
Congratulations! You've made it this far! Once merged, the article will appear at https://huggingface.co/blog. Official articles require additional reviews. Alternatively, you can write a community article following the process [here](https://huggingface.co/blog-explorers)....
Hi Team, Was trying to deploy a multi-lora adapter model with Starcoder2-3B as base. Referring to the below blog: https://huggingface.co/blog/multi-lora-serving Please correct my understanding if I'm am wrong, that the...
How to process the segment tokens and generate segmentation masks? what the output means? 
When I run an demo with SSL, I get a pop up that says "Error reloading app".  I can see a request is made to **http**://mydomain.com/gradio_api/dev/reload that is failing....
I've been studying SmolLM3's dual-mode training approach and have a technical question about the choice of Anchored Preference Optimization (APO) over Group Relative Policy Optimization (GRPO) for handling reasoning capabilities....
@remi-or @ArthurZucker @McPatate thanks for the great content and format! One correction I am not 100% about: - Just below the first figure, it says: "Computing QKT requires O(n²d) operations"....
**Getting Error while generating Image Caption Using Blip2** ``` import requests from PIL import Image url = 'https://media.newyorker.com/cartoons/63dc6847be24a6a76d90eb99/master/w_1160,c_limit/230213_a26611_838.jpg' image = Image.open(requests.get(url, stream = True).raw).convert('RGB') display(image.resize((596, 437))) from transformers import AutoProcessor,...