← All sources
FOLLOWING / huggingface.co

Hugging Face

Models, inference, training, open-source ML tooling

3 articles in your libraryVisit blog ↗
01
Hugging FaceUNREAD

Rebuilding AUTOMATIC1111 with Gradio Workflow

This article walks through Workflow1111, a rebuild of AUTOMATIC1111's stable-diffusion-webui as a 73-node Gradio Workflow canvas, arguing that node graphs can mix local Python functions with remote model calls. It shows that every output node becomes a REST endpoint and MCP tool, and that visitors can run pipelines under their own quota. Tradeoffs are acknowledged: there is no loop operator, and roughly two-thirds of nodes run in-process without a network call.

02
Hugging FaceUNREAD

Async GRPO with LoRA across HF Jobs: a bucket, a proxy, and no NCCL

A rank-1 LoRA adapter is only a few MB, so async GRPO can span separate HF Jobs: trainer and vLLM replicas swap adapters via a mounted Storage Bucket instead of NCCL, with a proxy adding auth, broadcasting adapter loads, and routing rollouts by KV prefix. Five instrumented runs chase the bottleneck between training and generation; packing, dropping gradient checkpointing, and raising in-flight caps cut 500 steps from 3h27m to 53min at equal reward. Tradeoffs: FUSE sync lag, retry logic, concurrency caps.

03
Hugging FaceUNREAD

Your Agent Aced the Task. Will It Do It Again?

The article argues that average benchmark accuracy hides agent unreliability: a ReAct agent on GPT-4.1 scored 77.4% Mean@5 on AppWorld but only 53.0% Pass^5 (succeeding on every run). Their Consistency Analyzer resamples decision points from a single recorded trajectory to find flip-prone steps, and the resulting injected guidelines halved the gap (24.4pp to 12.0pp) without costing average accuracy. Tradeoffs: diagnosis needs one extra LLM call per decision step, and consistency is orthogonal to capability, so a bigger model won't fix it.