Gradient’s cover photo
Gradient

Gradient

Artificial Intelligence

AI research lab. Building Open Infrastructure for Open Intelligence. Lattica · Parallax · Echo

About us

Gradient is an AI research lab building open infrastructure for the future of AI. We believe the most important AI capabilities should not be locked inside a handful of data centers. Our work focuses on making reinforcement learning, model serving, and distributed compute accessible at scale. Our Open Intelligence Stack: Parallax is a distributed inference engine that turns heterogeneous devices into a unified AI cluster. It handles automatic model sharding, dynamic device management, and intelligent request routing across mixed hardware, from NVIDIA GPUs to Apple Silicon. Parallax powers local, offline AI deployment without performance compromise. Echo is our distributed reinforcement learning framework. Echo-2 decouples rollouts from training, enabling asynchronous RL across heterogeneous GPU pools. In benchmarks, it reduced post-training costs for a 30B parameter model from approximately $4,490 to $425, a 90%+ reduction. Logits, our RL-as-a-Service platform built on Echo-2, is in development. Lattica is our peer-to-peer data communication protocol. It provides the networking layer that connects distributed nodes across the Gradient architecture, enabling real-time coordination at global scale. Lattica already runs across millions of peers worldwide. Gradient is backed by a $10M seed round by Pantera Capital, Multicoin Capital, and HSG (prev. Sequoia China). We are hiring across research and engineering. See open roles at careers.gradient.network

Website
https://gradient.network/
Industry
Artificial Intelligence
Company size
11-50 employees
Headquarters
Singapore
Type
Privately Held
Founded
2024

Locations

Employees at Gradient

Updates

  • Scaling asynchronous RLHF is a classic "choose your poison" dilemma: synchronous is too slow, but asynchronous often leads to instability. Our own researcher Tianyu Shi, recently dove into why this happens, identifying "staleness" as the culprit behind the sudden, catastrophic collapses often seen in asynchronous GRPO training. In his latest article, Tianyu moves beyond the "noise" explanation to show that staleness actually introduces a systematic, bias-driven drift. He introduces a "Two-Constraint Stability Rule" that provides actionable guidance for balancing throughput with training stability.

    Just published a technical report on one of the most overlooked pain points in scaling RLHF: staleness. When you decouple rollout generation from policy optimization for throughput, your training becomes off-policy — and stale rollouts introduce a systematic bias that scales with S × η (staleness × learning rate). We derive a Two-Constraint Stability Rule that explains why training can suddenly collapse , and how to configure your async RLHF system to stay in the stable regime. Key takeaways: → Stale rollouts are not just noisy — they introduce a directional bias → Two training regimes: diffusive (stable) vs. ballistic (collapse) → Scaling law: η << min{ R_batch/(S·G), R_crit/(T·G) } Full technical report: https://lnkd.in/gfeDxuAi

  • RL post-training shouldn't be locked behind hyperscaler budgets. That's the gap RL Commons is stepping into, and we're glad to see it launch. Free managed infrastructure, a cohort of peers, full ownership of your work. If you're a research team sitting on an experiment you can't run, Project Aster is worth a look. It's also the kind of mission Logits grew out of. https://lnkd.in/gf32w_dA

    View profile for Tianyu Shi

    Something we've been working on is now public. We're launching RL Commons — an open research initiative for the reinforcement learning era. The RL research community is facing real problems right now. Compute access. Most labs can't run the experiments they want to. R1-style post-training is out of reach for most university teams — not because the ideas aren't there, but because the resources aren't. Environments and benchmarks. RL progress depends on shared evaluation ground. Today, too much of that work gets rebuilt privately in every lab, and the best contributions don't travel. Visibility. Strong research gets done, then gets buried. There's no good connective tissue for the community to find, amplify, and build on each other's work. RL Commons is our attempt to address these together. Three things we're building: → A research platform connecting researchers with GPU providers, so teams can actually run the experiments they've been putting off. → An open library of RL environments, benchmarks, and rubrics — where contributors get credit, visibility, and a real audience for their work. → A connective effort for RL research — helping good work get seen, shared, and built upon across the community. Our first program is Project Aster — a 9-week founding cohort starting in late spring 2026. 5 to 10 selected teams. Free managed RL infrastructure. You focus on the research. We handle the rest. What each side gets: Researchers — free compute, a cohort of peers, full ownership of your work, and active promotion of your research across our channels. Compute partners — direct access to the researchers shaping the next five years of RL, founding-partner visibility across every program output, and the opportunity to support open science at a formative moment for the field. Contributors — credit, audience, and durable attribution for every environment, benchmark, and tool you share. We're early. The work only matters if the community builds it with us. If this resonates — apply, partner, or just follow along. rlcommons.org · @RLCommons (https://rlcommons.org/) on X

  • Our cofounder Eric Yang sat down with Yacine Mahdid 👺 for a deep dive on Echo-2, our distributed reinforcement learning framework. The tutorial covers how we split infra between rollout workers and a centralized learner, how async RL works in practice, and the design decisions behind the system. If you’re working on or thinking about distributed RL, this is a good hour to spend.

    for those interested in distributed reinforcement learning I just published a ~1h tutorial on the echo2 framework by Gradient which is pushing hard on this direction. distributed RL is a very interesting research problem because it can create two very valuable economic benefits: - improvement for doing RL finetuning (i.e. cost less to fine tune) - allowing for participation in model training from consumers (i.e. access to more compute). both payoff having the opportunity of reinforcing themselves. however, it is one difficult problem to tackle since you pretty much have to have experts in compute infrastructure as part of the research team to tackle the very practical engineering considerations. this is why seeing the result the team at gradient managed to pull out is so satisfying (congrats folks! 👏 ). In this tutorial I've dived into: - how echo1 and echo2 implement distributed RL. - the infra split between rollout workers and centralized learner. - the different part of the stack they built and where they fit (parallax / P2P communication system between worker) - the role of off-policy RL finetuning in such an infrastructure. + we even did an interview with gradient cofounder eric yang himself! enjoy! 🌹

    • No alternative text description for this image
  • When you scale parallel agents, prompt updates degrade fast. The more trajectories you process concurrently, the more generic your learned prompts become. Our researchers worked with @lihanc02 and team on Combee to rethink how aggregation works at scale. Results held up across GEPA and ACE even past 80 concurrent agents. Read more on this research👇

    𝗣𝗿𝗼𝗺𝗽𝘁 𝗟𝗲𝗮𝗿𝗻𝗶𝗻𝗴 (ex. GEPA, ACE) improves accuracy by learning from experiences but it 𝗱𝗼𝗲𝘀 𝗻𝗼𝘁 𝘀𝗰𝗮𝗹𝗲 for 𝗽𝗮𝗿𝗮𝗹𝗹𝗲𝗹 𝗮𝗴𝗲𝗻𝘁𝘀. More parallel agents 🤖 = worse prompts 😭 Why? Processing too many trajectories concurrently damages the prompt update process 🐝 We fix this with 𝗖𝗼𝗺𝗯𝗲𝗲 : → preserves high-value signals → scales to more than 80 concurrent agents  → up to 17× speedup without quality drop The key idea is simple: - Separate the aggregation task into subgroups and process the rich information in two levels - Duplicate reflections to give each trajectory multiple chances of being considered We find that improved aggregation is the key for scaling prompt learning and it could be generalizable across popular prompt learning methods including GEPA and ACE. This prevents the "𝘤𝘰𝘯𝘵𝘦𝘹𝘵 𝘰𝘷𝘦𝘳𝘭𝘰𝘢𝘥" problem that we observed when naive scaling up the parallelism in previous methods, where context updates degrades from task-specific strategies to generic reminders. As usage accelerates for agents like Cursor, Claude Code from Anthropic, Codex from OpenAI, we believe prompt learning is entering a new era of scale.  Combee is a first step toward making that possible by optimizing for the aggregation of parallel agents. Paper: https://lnkd.in/gx4KTYxR Code (as PRs): https://lnkd.in/gA2QB-a6 + https://lnkd.in/gYw-wkPK   #LLM #Agent #ContextEngineering #AI #GenAI #ParallelAgents

    • No alternative text description for this image
  • Great to see multi-agent systems getting serious engineering attention. One thing we think about a lot: as agents get more capable, the orchestration layer matters just as much as the models themselves. Our work on Symphony explores what happens when you remove the central controller entirely and let agents coordinate across consumer hardware through decentralized task allocation and weighted voting. We've achieved up to 41.6% accuracy gains over centralized frameworks, running on commodity GPUs with <5% orchestration overhead. Find out more in our Symphony paper: http:// arxiv.org/abs/2508.20019

  • Our NVIDIA GTC takeaway is clear: NVIDIA is betting hard on open. - NemoClaw turns OpenClaw into enterprise infrastructure. - Nemotron 4 will be open-sourced. - Nemotron Coalition puts eight labs on a shared open frontier model. This is what we've been building toward. Open infrastructure for open intelligence is the direction the biggest AI companies are taking.

    • No alternative text description for this image
  • Messari published a full research report on Echo-2 and Gradient's Open Intelligence Stack. The report covers how Echo-2's dual-swarm architecture decouples rollouts from training, enabling distributed reinforcement learning across heterogeneous hardware. Key findings from their independent analysis: 10.6x reduction in post-training costs ($4,490 to $425 for the same 30B model job). 13x faster training completion. Model quality maintained across five math reasoning benchmarks, slightly outperforming centralized baselines. The three-plane architecture (Learning, Data, Rollout) allows consumer GPUs to contribute real compute to production RL workloads while datacenter clusters handle policy optimization. We're now building Logits, our RL-as-a-Service platform on top of Echo-2, to make this accessible to researchers and teams running cost-prohibitive training. Waitlist is open. Full report linked below.

    AI companies rely on reinforcement learning (RL) to embed reasoning capabilities in their models. However, it's expensive, slow, and largely gatekept by labs with access to massive GPU clusters. Gradient is taking a different approach with Echo-2, a distributed RL framework built on top of their Open Intelligence Stack, a network that puts idle hardware to work across a global mesh of heterogeneous machines. Instead of forcing the same GPUs to juggle generation and model updates (and sit idle in between), Echo-2 splits the workload so consumer GPUs generate outputs in parallel while a centralized cluster handles learning. Both jobs run simultaneously. The efficiency gains are striking: -$425 vs. $4,490 for the same Qwen3-30B training run (a 90.5% cost reduction) -9.5 hours vs. 124 hours (92.3% faster) -Average model performance that exceeds ByteDance's verl across math reasoning benchmarks Gradient is productizing this through Logits, an RL-as-a-Service platform. The waitlist is now open to university students and researchers. For more information, read the full report (link in comments below).

    • No alternative text description for this image
    • No alternative text description for this image
  • Our co-founder Eric Yang sat down with Supercycle Pod to talk through Gradient's distributed AI stack, why AI should be a public good, and what it actually takes to build open intelligence infrastructure. Topics covered: - Parallax for distributed model serving - Echo for reinforcement learning at scale - Why economics of centralized AI don't hold up long term. https://lnkd.in/gypfUUbG

  • Thanks for the thorough breakdown by Private Opinion. The team spent a lot of time on the distributed scheduling architecture behind Parallax, and it's good to see the two-phase design getting attention. On the RL side, we're actively onboarding researchers and teams to Logits -- RL-as-a-Service built on Echo-2, designed to make post-training accessible to groups that couldn't afford it before. If anyone reading this is running cost-prohibitive training workloads, the waitlist is open at logits.dev. Appreciate the honest framing on what's proven and what's still ahead. Lots of work to do!

    View organization page for Private Opinion

    38 followers

    We just published a new profile on Gradient, the AI lab building tools for sovereign intelligence. They're open-sourcing the infrastructure to run models anywhere. Our latest operator profile covers: - Parallax: Distributed inference across heterogeneous hardware (3-5x faster than alternatives) - CommonStack: API routing with up to 25% cost savings and built-in fault tolerance - Echo-2: Reinforcement learning framework cutting training costs from $4,490 to $425 Backed by Pantera, Multicoin, and HSG. Early commercial traction. RL-as-a-service launching later this year. Full breakdown on what they've built, why it matters, and what's still unproven. Read the full report: https://lnkd.in/eJPTuD8u

  • Post-training is becoming the most consequential step in AI development, and it's also the most expensive. Echo-2 changes the economics. By decoupling rollouts from training and distributing work across heterogeneous GPUs, we've cut post-training costs for a 30B model from ~$4,490 to $425. That's a 90%+ reduction. The architecture has three independent planes (learning, rollout, data) that scale without the bottlenecks of synchronous RL. And we tested it on real consumer hardware via Parallax: training Qwen3-8B on distributed RTX 5090s came in 36% cheaper than centralized alternatives. We're now building Logits, our RL-as-a-Service platform on top of Echo-2. Waitlist is open for researchers and teams running cost-prohibitive training. Links in comments.

    • No alternative text description for this image
    • No alternative text description for this image
    • No alternative text description for this image
    • No alternative text description for this image

Similar pages