Stay Ahead, Stay ONMINE

Training Large Language Models: From TRPO to GRPO

Deepseek has recently made quite a buzz in the AI community, thanks to its impressive performance at relatively low costs. I think this is a perfect opportunity to dive deeper into how Large Language Models (LLMs) are trained. In this article, we will focus on the Reinforcement Learning (RL) side of things: we will cover […]

Deepseek has recently made quite a buzz in the AI community, thanks to its impressive performance at relatively low costs. I think this is a perfect opportunity to dive deeper into how Large Language Models (LLMs) are trained. In this article, we will focus on the Reinforcement Learning (RL) side of things: we will cover TRPO, PPO, and, more recently, GRPO (don’t worry, I will explain all these terms soon!) 

I have aimed to keep this article relatively easy to read and accessible, by minimizing the math, so you won’t need a deep Reinforcement Learning background to follow along. However, I will assume that you have some familiarity with Machine Learning, Deep Learning, and a basic understanding of how LLMs work.

I hope you enjoy the article!

The 3 steps of LLM training

The 3 steps of LLM training [1]

Before diving into RL specifics, let’s briefly recap the three main stages of training a Large Language Model:

  • Pre-training: the model is trained on a massive dataset to predict the next token in a sequence based on preceding tokens.
  • Supervised Fine-Tuning (SFT): the model is then fine-tuned on more targeted data and aligned with specific instructions.
  • Reinforcement Learning (often called RLHF for Reinforcement Learning with Human Feedback): this is the focus of this article. The main goal is to further refine responses’ alignments with human preferences, by allowing the model to learn directly from feedback.

Reinforcement Learning Basics

A robot trying to exit a maze! [2]

Before diving deeper, let’s briefly revisit the core ideas behind Reinforcement Learning.

RL is quite straightforward to understand at a high level: an agent interacts with an environment. The agent resides in a specific state within the environment and can take actions to transition to other states. Each action yields a reward from the environment: this is how the environment provides feedback that guides the agent’s future actions. 

Consider the following example: a robot (the agent) navigates (and tries to exit) a maze (the environment).

  • The state is the current situation of the environment (the robot’s position in the maze).
  • The robot can take different actions: for example, it can move forward, turn left, or turn right.
  • Successfully navigating towards the exit yields a positive reward, while hitting a wall or getting stuck in the maze results in negative rewards.

Easy! Now, let’s now make an analogy to how RL is used in the context of LLMs.

RL in the context of LLMs

Simplified RLHF Process [3]

When used during LLM training, RL is defined by the following components:

  • The LLM itself is the agent
  • Environment: everything external to the LLM, including user prompts, feedback systems, and other contextual information. This is basically the framework the LLM is interacting with during training.
  • Actions: these are responses to a query from the model. More specifically: these are the tokens that the LLM decides to generate in response to a query.
  • State: the current query being answered along with tokens the LLM has generated so far (i.e., the partial responses).
  • Rewards: this is a bit more tricky here: unlike the maze example above, there is usually no binary reward. In the context of LLMs, rewards usually come from a separate reward model, which outputs a score for each (query, response) pair. This model is trained from human-annotated data (hence “RLHF”) where annotators rank different responses. The goal is for higher-quality responses to receive higher rewards.

Note: in some cases, rewards can actually get simpler. For example, in DeepSeekMath, rule-based approaches can be used because math responses tend to be more deterministic (correct or wrong answer)

Policy is the final concept we need for now. In RL terms, a policy is simply the strategy for deciding which action to take. In the case of an LLM, the policy outputs a probability distribution over possible tokens at each step: in short, this is what the model uses to sample the next token to generate. Concretely, the policy is determined by the model’s parameters (weights). During RL training, we adjust these parameters so the LLM becomes more likely to produce “better” tokens— that is, tokens that produce higher reward scores.

We often write the policy as:

where a is the action (a token to generate), s the state (the query and tokens generated so far), and θ (model’s parameters).

This idea of finding the best policy is the whole point of RL! Since we don’t have labeled data (like we do in supervised learning) we use rewards to adjust our policy to take better actions. (In LLM terms: we adjust the parameters of our LLM to generate better tokens.)

TRPO (Trust Region Policy Optimization)

An analogy with supervised learning

Let’s take a quick step back to how supervised learning typically works. you have labeled data and use a loss function (like cross-entropy) to measure how close your model’s predictions are to the true labels.

We can then use algorithms like backpropagation and gradient descent to minimize our loss function and update the weights θ of our model.

Recall that our policy also outputs probabilities! In that sense, it is analogous to the model’s predictions in supervised learning… We are tempted to write something like:

where s is the current state and a is a possible action.

A(s, a) is called the advantage function and measures how good is the chosen action in the current state, compared to a baseline. This is very much like the notion of labels in supervised learning but derived from rewards instead of explicit labeling. To simplify, we can write the advantage as:

In practice, the baseline is calculated using a value function. This is a common term in RL that I will explain later. What you need to know for now is that it measures the expected reward we would receive if we continue following the current policy from the state s.

What is TRPO?

TRPO (Trust Region Policy Optimization) builds on this idea of using the advantage function but adds a critical ingredient for stability: it constrains how far the new policy can deviate from the old policy at each update step (similar to what we do with batch gradient descent for example).

  • It introduces a KL divergence term (see it as a measure of similarity) between the current and the old policy:
  • It also divides the policy by the old policy. This ratio, multiplied by the advantage function, gives us a sense of how beneficial each update is relative to the old policy.

Putting it all together, TRPO tries to maximize a surrogate objective (which involves the advantage and the policy ratio) subject to a KL divergence constraint.

PPO (Proximal Policy Optimization)

While TRPO was a significant advancement, it’s no longer used widely in practice, especially for training LLMs, due to its computationally intensive gradient calculations.

Instead, PPO is now the preferred approach in most LLMs architecture, including ChatGPT, Gemini, and more.

It is actually quite similar to TRPO, but instead of enforcing a hard constraint on the KL divergence, PPO introduces a “clipped surrogate objective” that implicitly restricts policy updates, and greatly simplifies the optimization process.

Here is a breakdown of the PPO objective function we maximize to tweak our model’s parameters.

Image by the Author

GRPO (Group Relative Policy Optimization)

How is the value function usually obtained?

Let’s first talk more about the advantage and the value functions I introduced earlier.

In typical setups (like PPO), a value model is trained alongside the policy. Its goal is to predict the value of each action we take (each token generated by the model), using the rewards we obtain (remember that the value should represent the expected cumulative reward).

Here is how it works in practice. Take the query “What is 2+2?” as an example. Our model outputs “2+2 is 4” and receives a reward of 0.8 for that response. We then go backward and attribute discounted rewards to each prefix:

  • “2+2 is 4” gets a value of 0.8
  • “2+2 is” (1 token backward) gets a value of 0.8γ
  • “2+2” (2 tokens backward) gets a value of 0.8γ²
  • etc.

where γ is the discount factor (0.9 for example). We then use these prefixes and associated values to train the value model.

Important note: the value model and the reward model are two different things. The reward model is trained before the RL process and uses pairs of (query, response) and human ranking. The value model is trained concurrently to the policy, and aims at predicting the future expected reward at each step of the generation process.

What’s new in GRPO

Even if in practice, the reward model is often derived from the policy (training only the “head”), we still end up maintaining many models and handling multiple training procedures (policy, reward, value model). GRPO streamlines this by introducing a more efficient method.

Remember what I said earlier?

In PPO, we decided to use our value function as the baseline. GRPO chooses something else: Here is what GRPO does: concretely, for each query, GRPO generates a group of responses (group of size G) and uses their rewards to calculate each response’s advantage as a z-score:

where rᵢ is the reward of the i-th response and μ and σ are the mean and standard deviation of rewards in that group.

This naturally eliminates the need for a separate value model. This idea makes a lot of sense when you think about it! It aligns with the value function we introduced before and also measures, in a sense, an “expected” reward we can obtain. Also, this new method is well adapted to our problem because LLMs can easily generate multiple non-deterministic outputs by using a low temperature (controls the randomness of tokens generation).

This is the main idea behind GRPO: getting rid of the value model.

Finally, GRPO adds a KL divergence term (to be exact, GRPO uses a simple approximation of the KL divergence to improve the algorithm further) directly into its objective, comparing the current policy to a reference policy (often the post-SFT model).

See the final formulation below:

Image by the Author

And… that’s mostly it for GRPO! I hope this gives you a clear overview of the process: it still relies on the same foundational ideas as TRPO and PPO but introduces additional improvements to make training more efficient, faster, and cheaper — key factors behind DeepSeek’s success.

Conclusion

Reinforcement Learning has become a cornerstone for training today’s Large Language Models, particularly through PPO, and more recently GRPO. Each method rests on the same RL fundamentals — states, actions, rewards, and policies — but adds its own twist to balance stability, efficiency, and human alignment:

TRPO introduced strict policy constraints via KL divergence

PPO eased those constraints with a clipped objective

GRPO took an extra step by removing the value model requirement and using group-based reward normalization. Of course, DeepSeek also benefits from other innovations, like high-quality data and other training strategies, but that is for another time!

I hope this article gave you a clearer picture of how these methods connect and evolve. I believe that Reinforcement Learning will become the main focus in training LLMs to improve their performance, surpassing pre-training and SFT in driving future innovations. 

If you’re interested in diving deeper, feel free to check out the references below or explore my previous posts.

Thanks for reading, and feel free to leave a clap and a comment!


Want to learn more about Transformers or dive into the math behind the Curse of Dimensionality? Check out my previous articles:

Transformers: How Do They Transform Your Data?
Diving into the Transformers architecture and what makes them unbeatable at language taskstowardsdatascience.com

The Math Behind “The Curse of Dimensionality”
Dive into the “Curse of Dimensionality” concept and understand the math behind all the surprising phenomena that arise…towardsdatascience.com



References:

Shape
Shape
Stay Ahead

Explore More Insights

Stay ahead with more perspectives on cutting-edge power, infrastructure, energy,  bitcoin and AI solutions. Explore these articles to uncover strategies and insights shaping the future of industries.

Shape

The US will install these country-specific tariffs Aug. 7

The U.S. plans to lift its pause on country-specific tariffs while implementing a range of new rates for specific trading partners on Aug. 7, per an executive order President Donald Trump signed Thursday.  The order lists rates for over 60 trading partners, ranging from 10% to 41%. The list includes

Read More »

Spotlight report: How AI is reshaping IT

The emergence of AI as the next big game changer has IT leaders rethinking not just how IT is staffed, organized, and funded, but also how the IT team works with the business to capture the value and promise of AI. Learn more in this Spotlight Report from the editors

Read More »

SD-WAN reality check: Why enterprise ‘rip-and-replace’ isn’t happening

However, despite aggressive vendor positioning around complete infrastructure overhauls, ISG’s research shows that overlay approaches are winning. Even the most technologically advanced organizations are taking a more cautious approach to SD-WAN deployments. “Honestly, even the digitally mature enterprises are favoring controlled, phased transitions due to operational complexity, embedded legacy contracts,

Read More »

Oil Drops on Weak U.S. Data

Oil sank as the outlook for the world’s largest economy darkened after a barrage of poor US data and tariff announcements, weighing on the prospects for energy demand growth. West Texas Intermediate crude fell 2.8% to settle near $67 a barrel on Friday, the biggest plunge in a single day since June 24. Prices also came under pressure as investors widely anticipate that OPEC and its allies will decide to add more supplies to the market during an upcoming weekend meeting. US jobs growth cooled sharply over the past three months, while factory activity contracted in July at the fastest clip in nine months, in a sign the economy is shifting into a lower gear amid widespread uncertainty. The swath of bearish data increased investor concerns that the impact of US President Donald Trump’s ever-changing tariff rates — which had so far been muted — has finally begun to weigh on economic growth. The weaker data come as Trump finalized plans for tariffs on several countries, including a higher rate on neighbor Canada, though oil is exempt. “Tariffs are now officially a part of daily life. With the catalyst in the rearview, focus must shift to the fallout,” said Daniel Ghali, a commodity strategist at TD Securities. Oil traders had been forced to the sidelines in recent weeks as numerous wild cards surrounding US trade policy and OPEC+ production confounded supply-and-demand outlooks. The unpredictable environment, which initially caused wild price swings earlier in the year, has dampened risk-on sentiment and sapped volatility from the market. The potential onset of an economic slowdown threatens to coincide with a period for oversupply widely expected for later this year. Second-quarter earnings for oil industry giants blew out expectations, with record oil production blunting the impact of lower crude prices. Exxon Mobil Corp. pumped

Read More »

Xcel Energy ‘prepared to go to trial’ to fight Marshall Fire liability

Dive Brief: Xcel Energy has emerged from court-ordered mediation without a settlement and will go to trial for its role in the 2021 Marshall Fire in Colorado, company executives said during a Thursday earnings call. A 2023 investigation by the Boulder County Sheriff attributed the fire to the merging of two independent ignitions: kindling from an old fire on a property owned by the Twelve Tribes, a religious organization, and sparks from an Xcel Energy power line. President and CEO Bob Frenzel said the company believes it can prove its equipment did not start the fire. The company is already paying claims on another fire, the 2024 Smokehouse Creek Fire in the Texas panhandle, on which it faces an estimated $290 million in liability. Dive Insight: Xcel Energy remains open to settling with the more than 500 parties suing the utility for the Marshall Fire. But any settlement, Frenzel said Thursday, must “start with the idea that our equipment didn’t cause that second” ignition. Hearings are set to begin on Sept. 25 and will likely continue through November now that the July 31 deadline for court-ordered mediation has passed, Frenzel said. When the fire started, he said, the embers on the Twelve Tribes property were fanned by 100 miles per hour winds for over an hour and 20 minutes, allowing it to spread into nearby towns long before the second ignition at Xcel Energy’s power line is alleged to have taken place, he said. “As we step back and think about the trial broadly and the fire broadly, we continue to maintain that our equipment didn’t start the second ignition in the wildfire, and we’re prepared to go to court,” Frenzel said, later adding that “we feel very good about the facts and circumstances of our trial.” Insurance data suggest the

Read More »

PPL Electric ‘advanced-stage’ data center pipeline grows 32%, to 14 GW

Dive Brief: PPL Electric Utilities has advanced-stage agreements to interconnect about 14 GW of data centers in its Pennsylvania service territory, up 32% from three months ago, Vincent Sorgi, president and CEO of PPL Corp., said Thursday during an earnings conference call. Under signed agreements, PPL Electric Utilities’ data center load could grow from 800 MW in 2026 to 14.4 GW in 2034, according to a second-quarter earnings presentation. PPL Electric Utilities has a 60-GW data center interconnection queue, according to Sorgi. PPL’s data center strategy includes an unregulated joint venture with Blackstone Infrastructure to build power plants in Pennsylvania to directly serve data centers. “The joint venture is actively engaged with hyperscalers, landowners, natural gas pipeline companies and turbine manufacturers and has secured multiple land parcels to enable this new generation buildout,” Sorgi said. Dive Insight: However, discussions on potential electricity service agreements aren’t far enough along for the joint venture to commit to buying turbines and it is unclear when it would be able to announce any news, according to Sorgi. “We’ve made no material financial commitments to date as it relates to the joint venture,” he said. PPL intends to make sure that the joint venture’s deals don’t change the company’s credit risk profile, Sorgi said. PPL supports pending legislation in Pennsylvania — H.B. 1272 and S.B. 897 — that would allow regulated utilities like PPL Electric Utilities to build and own generation to address a resource adequacy need, Sorgi said. The bills would also encourage utilities to enter into agreements with independent power producers to help “derisk” their new generation investments, according to Sorgi.  “We are primed to act quickly once this proposed legislation becomes law,” he said. PPL Electric Utilities estimates it will need about 7.5 GW of new generation in the next five to seven

Read More »

Indian Refiner Snaps Up USA Oil

India’s largest oil refiner has snapped up millions of barrels of crude from the US and United Arab Emirates, with the South Asian nation facing mounting pressure from Washington and Europe over its purchases from Russia. State-owned Indian Oil Corp. bought at least 5 million barrels US crude, on top of 2 million barrels of supplies from Abu Dhabi, according to traders who asked not to be identified as they aren’t authorized to speak publicly. The purchases were both large and for relatively immediate delivery by the company’s usual standards. State-owned processors were told to come up with plans for buying non-Russian crude earlier this week.  An Indian Oil spokesman didn’t respond to a request for comment. India’s refiners have been in the spotlight over the past two weeks, after being singled out by the European Union and the US for supporting Moscow during its war in Ukraine by buying Russian oil. US President Donald Trump has repeatedly threatened to impose secondary tariffs on buyers of Russian oil, and in a post earlier this week singled out India for criticism, saying that it would pay an additional economic penalty for its ongoing purchases.  “We are interpreting the increased buying activity from India as a sign of diversification away from Russian supply,” said Livia Gallarati, global crude lead at consultant Energy Aspects. “Physical players are unlikely to gamble on buying Russian barrels, especially at current high prices, even if skepticism remains over whether US President Donald Trump will follow through with these threats.” This week, IOC sought crude supplies in multiple back-to-back purchase tenders, which traders said was unusual for the company and pointed to relatively urgent demand for crude. Earlier in the week, it also purchased 4 million barrels of West African barrels, as well as the UAE’s Murban crude for delivery

Read More »

Reliance to explore offshore India under new agreement

@import url(‘https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap’); a { color: #c19a06; } .ebm-page__main h1, .ebm-page__main h2, .ebm-page__main h3, .ebm-page__main h4, .ebm-page__main h5, .ebm-page__main h6 { font-family: Inter; } body { line-height: 150%; letter-spacing: 0.025em; font-family: Inter; } button, .ebm-button-wrapper { font-family: Inter; } .label-style { text-transform: uppercase; color: var(–color-grey); font-weight: 600; font-size: 0.75rem; } .caption-style { font-size: 0.75rem; opacity: .6; } #onetrust-pc-sdk [id*=btn-handler], #onetrust-pc-sdk [class*=btn-handler] { background-color: #c19a06 !important; border-color: #c19a06 !important; } #onetrust-policy a, #onetrust-pc-sdk a, #ot-pc-content a { color: #c19a06 !important; } #onetrust-consent-sdk #onetrust-pc-sdk .ot-active-menu { border-color: #c19a06 !important; } #onetrust-consent-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler, #onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link { background-color: #c19a06 !important; border-color: #c19a06 !important; } #onetrust-consent-sdk .onetrust-pc-btn-handler { color: #c19a06 !important; border-color: #c19a06 !important; background-color: undefined !important; } Reliance Industries Ltd. entered into a joint operating agreement with Oil and Natural Gas Corp. (ONGC) and BP Exploration (Alpha) Ltd. to explore Block GS-OSHP-2022/2 off the western coast of India in Saurashtra basin. The three firms jointly bid for the block in the 9th bid round of Open Acreage Licensing Policy (OALP) last year. The block spans an area of 5,454 sq km and is classified under Category-II basins. The consortium will explore the block to assess its hydrocarbon potential. ONGC will be operator of the block.

Read More »

Expand says efficiency lets executives trim capex by $100 million

The leaders of Expand Energy Corp., Oklahoma City, have trimmed the 2025 capital spending forecast by $100 million after posting record drilling performance during the second quarter. The company, formed last October via the merger of Chesapeake Energy and Southwestern Energy, is continuing with plans to build about 300 million cu ft equivalent/day (MMcfed) of potential capacity for 2026. Expand produced an average of just over 7.2 bcfed from its operations in the Haynesville basin as well southwest and northeast Appalachia, up from nearly 6.8 bcfed in the first three months of this year. President and chief executive officer Nick Dell’Osso and his team expect third-quarter production to also be around 7.2 bcfed, with Haynesville output growing about 2% and that from Appalachia ticking down. That production will use 11 rigs, down from the 12 executives had planned 3 months ago. Expand teams are expected to turn in line the same number of wells for the year as before—they added 59 to the company’s count during the second quarter, down from 89 in the year’s first quarter—but they’re doing so more efficiently: All three of the company’s regions drilled at least 20% more ft/day in the second quarter than early this year and set records. That rising efficiency is translating into the $100 million capex cut, which includes plans to set up Expand’s growth in 2026. Three months ago, executives expected they’d spend $300 million and end 2025 with 15 rigs to set up an additional 300 MMcfed of production next year. Those figures are now $275 million and 12 rigs—and Dell’Osso said recent gyrations in the price of natural gas won’t lead to major changes. “We’re just not bothered by the volatility that we’re seeing here this summer,” Dell’Osso said. “If you think about where we are in the

Read More »

DOE announces site selection for AI data centers

“The DOE is positioned to lead on advanced AI infrastructure due to its historical mandate and decades of expertise in extreme-scale computing for mission-critical science and national security challenges,” he said. “National labs are central hubs for advancing AI by providing researchers with unparalleled access to exascale supercomputers and a vast, interdisciplinary technical workforce.” “The Department of Energy is actually a very logical choice to lead on advanced AI data centers in my opinion,” said Wyatt Mayham, lead consultant at Northwest AI, which specializes in enterprise AI integration. “They already operate the country’s most powerful supercomputers. Frontier at Oak Ridge and Sierra at Lawrence Livermore are not experimental machines, they are active systems that the DOE built and continues to manage.” These labs have the physical and technical capacity to handle the demands of modern AI. Running large AI data centers takes enormous electrical capacity, sophisticated cooling systems, and the ability to manage high and variable power loads. DOE labs have been handling that kind of infrastructure for decades, says Mayham. “DOE has already built much of the surrounding ecosystem,” he says. “These national labs don’t just house big machines. They also maintain the software, data pipelines, and research partnerships that keep those machines useful. NSF and Commerce play important roles in the innovation system, but they don’t have the hands-on operational footprint the DOE has.” And Tanmay Patange, founder of AI R&D firm Fourslash, says the DOE’s longstanding expertise in high-performance computing and energy infrastructure directly overlap with the demands we have seen from AI development in places. “And the foundation the DOE has built is essentially the precursor to modern AI workloads that often require gigawatts of reliable energy,” he said. “I think it’s a strategic play, and I won’t be surprised to see the DOE pair their

Read More »

Data center survey: AI gains ground but trust concerns persist

Cost issues: 76% Forecasting future data center capacity requirements: 71% Improving energy performance for facilities equipment: 67% Power availability: 63% Supply chain disruptions: 65% A lack of qualified staff: 67% With respect to capacity planning, there’s been a notable increase in the number of operators who describe themselves as “very concerned” about forecasting future data center capacity requirements. Andy Lawrence, Uptime’s executive director of research, said two factors are contributing to this concern: ongoing strong growth for IT demand, and the often-unpredictable demand that AI workloads are creating. “There’s great uncertainty about … what the impact of AI is going to be, where it’s going to be located, how much of the power is going to be required, and even for things like space and cooling, how much of the infrastructure is going to be sucked up to support AI, whether it’s in a colocation, whether it’s in an enterprise or even in a hyperscale facility,” Lawrence said during a webinar sharing the survey results. The survey found that roughly one-third of data center owners and operators currently perform some AI training or inference, with significantly more planning to do so in the future. As the number of AI-based software deployments increases, information about the capabilities and limitations of AI in the workplace is becoming available. The awareness is also revealing AI’s suitability for certain tasks. According to the report, “the data center industry is entering a period of careful adoption, testing, and validation. Data centers are slow and careful in adopting new technologies, and AI will not be an exception.”

Read More »

Micron unveils PCIe Gen6 SSD to power AI data center workloads

Competitive positioning With the launch of the 9650 SSD PCIe Gen 6, Micron competes with Samsung and SK Hynix enterprise SSD offerings, which are the dominant players in the SSD market. In December last year, SK Hynix announced the development of PS1012 U.2 Gen5 PCIe SSD, for massive high-capacity storage for AI data centers.  The PM1743 is Samsung’s PCIe Gen5 offering in the market, with 14,000 MBps sequential read, designed for high-performance enterprise workloads. According to Faruqui, PCIe Gen6 data center SSDs are best suited for AI inference performance enhancement. However, we’re still months away from large-scale adoption as no current CPU platforms are available with PCIe 6.0 support. Only Nvidia’s Blackwell-based GPUs have native PCIe 6.0 x16 support with interoperability tests in progress. He added that PCIe Gen 6 SSDs will see very delayed adoption in the PC segment and imminent 2025 2H adoption in AI, data centers, high-performance computing (HPC), and enterprise storage solutions. Micron has also introduced two additional SSDs alongside the 9650. The 6600 ION SSD delivers 122TB in an E3.S form factor and is targeted at hyperscale and enterprise data centers looking to consolidate server infrastructure and build large AI data lakes. A 245TB variant is on the roadmap. The 7600 PCIe Gen5 SSD, meanwhile, is aimed at mixed workloads that require lower latency.

Read More »

AI Deployments are Reshaping Intra-Data Center Fiber and Communications

Artificial Intelligence is fundamentally changing the way data centers are architected, with a particular focus on the demands placed on internal fiber and communications infrastructure. While much attention is paid to the fiber connections between data centers or to end-users, the real transformation is happening inside the data center itself, where AI workloads are driving unprecedented requirements for bandwidth, low latency, and scalable networking. Network Segmentation and Specialization Inside the modern AI data center, the once-uniform network is giving way to a carefully divided architecture that reflects the growing divergence between conventional cloud services and the voracious needs of AI. Where a single, all-purpose network once sufficed, operators now deploy two distinct fabrics, each engineered for its own unique mission. The front-end network remains the familiar backbone for external user interactions and traditional cloud applications. Here, Ethernet still reigns, with server-to-leaf links running at 25 to 50 gigabits per second and spine connections scaling to 100 Gbps. Traffic is primarily north-south, moving data between users and the servers that power web services, storage, and enterprise applications. This is the network most people still imagine when they think of a data center: robust, versatile, and built for the demands of the internet age. But behind this familiar façade, a new, far more specialized network has emerged, dedicated entirely to the demands of GPU-driven AI workloads. In this backend, the rules are rewritten. Port speeds soar to 400 or even 800 gigabits per second per GPU, and latency is measured in sub-microseconds. The traffic pattern shifts decisively east-west, as servers and GPUs communicate in parallel, exchanging vast datasets at blistering speeds to train and run sophisticated AI models. The design of this network is anything but conventional: fat-tree or hypercube topologies ensure that no single link becomes a bottleneck, allowing thousands of

Read More »

ABB and Applied Digital Build a Template for AI-Ready Data Centers

Toward the Future of AI Factories The ABB–Applied Digital partnership signals a shift in the fundamentals of data center development, where electrification strategy, hyperscale design and readiness, and long-term financial structuring are no longer separate tracks but part of a unified build philosophy. As Applied Digital pushes toward REIT status, the Ellendale campus becomes not just a development milestone but a cornerstone asset: a long-term, revenue-generating, AI-optimized property underpinned by industrial-grade power architecture. The 250 MW CoreWeave lease, with the option to expand to 400 MW, establishes a robust revenue base and validates the site’s design as AI-first, not cloud-retrofitted. At the same time, ABB is positioning itself as a leader in AI data center power architecture, setting a new benchmark for scalable, high-density infrastructure. Its HiPerGuard Medium Voltage UPS, backed by deep global manufacturing and engineering capabilities, reimagines power delivery for the AI era, bypassing the limitations of legacy low-voltage systems. More than a component provider, ABB is now architecting full-stack electrification strategies at the campus level, aiming to make this medium-voltage model the global standard for AI factories. What’s unfolding in North Dakota is a preview of what’s coming elsewhere: AI-ready campuses that marry investment-grade real estate with next-generation power infrastructure, built for a future measured in megawatts per rack, not just racks per row. As AI continues to reshape what data centers are and how they’re built, Ellendale may prove to be one of the key locations where the new standard was set.

Read More »

Amazon’s Project Rainier Sets New Standard for AI Supercomputing at Scale

Supersized Infrastructure for the AI Era As AWS deploys Project Rainier, it is scaling AI compute to unprecedented heights, while also laying down a decisive marker in the escalating arms race for hyperscale dominance. With custom Trainium2 silicon, proprietary interconnects, and vertically integrated data center architecture, Amazon joins a trio of tech giants, alongside Microsoft’s Project Stargate and Google’s TPUv5 clusters, who are rapidly redefining the future of AI infrastructure. But Rainier represents more than just another high-performance cluster. It arrives in a moment where the size, speed, and ambition of AI infrastructure projects have entered uncharted territory. Consider the past several weeks alone: On June 24, AWS detailed Project Rainier, calling it “a massive, one-of-its-kind machine” and noting that “the sheer size of the project is unlike anything AWS has ever attempted.” The New York Times reports that the primary Rainier campus in Indiana could include up to 30 data center buildings. Just two days later, Fermi America unveiled plans for the HyperGrid AI campus in Amarillo, Texas on a sprawling 5,769-acre site with potential for 11 gigawatts of power and 18 million square feet of AI data center capacity. And on July 1, Oracle projected $30 billion in annual revenue from a single OpenAI cloud deal, tied to the Project Stargate campus in Abilene, Texas. As Data Center Frontier founder Rich Miller has observed, the dial on data center development has officially been turned to 11. Once an aspirational concept, the gigawatt-scale campus is now materializing—15 months after Miller forecasted its arrival. “It’s hard to imagine data center projects getting any bigger,” he notes. “But there’s probably someone out there wondering if they can adjust the dial so it goes to 12.” Against this backdrop, Project Rainier represents not just financial investment but architectural intent. Like Microsoft’s Stargate buildout in

Read More »

Microsoft will invest $80B in AI data centers in fiscal 2025

And Microsoft isn’t the only one that is ramping up its investments into AI-enabled data centers. Rival cloud service providers are all investing in either upgrading or opening new data centers to capture a larger chunk of business from developers and users of large language models (LLMs).  In a report published in October 2024, Bloomberg Intelligence estimated that demand for generative AI would push Microsoft, AWS, Google, Oracle, Meta, and Apple would between them devote $200 billion to capex in 2025, up from $110 billion in 2023. Microsoft is one of the biggest spenders, followed closely by Google and AWS, Bloomberg Intelligence said. Its estimate of Microsoft’s capital spending on AI, at $62.4 billion for calendar 2025, is lower than Smith’s claim that the company will invest $80 billion in the fiscal year to June 30, 2025. Both figures, though, are way higher than Microsoft’s 2020 capital expenditure of “just” $17.6 billion. The majority of the increased spending is tied to cloud services and the expansion of AI infrastructure needed to provide compute capacity for OpenAI workloads. Separately, last October Amazon CEO Andy Jassy said his company planned total capex spend of $75 billion in 2024 and even more in 2025, with much of it going to AWS, its cloud computing division.

Read More »

John Deere unveils more autonomous farm machines to address skill labor shortage

Join our daily and weekly newsletters for the latest updates and exclusive content on industry-leading AI coverage. Learn More Self-driving tractors might be the path to self-driving cars. John Deere has revealed a new line of autonomous machines and tech across agriculture, construction and commercial landscaping. The Moline, Illinois-based John Deere has been in business for 187 years, yet it’s been a regular as a non-tech company showing off technology at the big tech trade show in Las Vegas and is back at CES 2025 with more autonomous tractors and other vehicles. This is not something we usually cover, but John Deere has a lot of data that is interesting in the big picture of tech. The message from the company is that there aren’t enough skilled farm laborers to do the work that its customers need. It’s been a challenge for most of the last two decades, said Jahmy Hindman, CTO at John Deere, in a briefing. Much of the tech will come this fall and after that. He noted that the average farmer in the U.S. is over 58 and works 12 to 18 hours a day to grow food for us. And he said the American Farm Bureau Federation estimates there are roughly 2.4 million farm jobs that need to be filled annually; and the agricultural work force continues to shrink. (This is my hint to the anti-immigration crowd). John Deere’s autonomous 9RX Tractor. Farmers can oversee it using an app. While each of these industries experiences their own set of challenges, a commonality across all is skilled labor availability. In construction, about 80% percent of contractors struggle to find skilled labor. And in commercial landscaping, 86% of landscaping business owners can’t find labor to fill open positions, he said. “They have to figure out how to do

Read More »

2025 playbook for enterprise AI success, from agents to evals

Join our daily and weekly newsletters for the latest updates and exclusive content on industry-leading AI coverage. Learn More 2025 is poised to be a pivotal year for enterprise AI. The past year has seen rapid innovation, and this year will see the same. This has made it more critical than ever to revisit your AI strategy to stay competitive and create value for your customers. From scaling AI agents to optimizing costs, here are the five critical areas enterprises should prioritize for their AI strategy this year. 1. Agents: the next generation of automation AI agents are no longer theoretical. In 2025, they’re indispensable tools for enterprises looking to streamline operations and enhance customer interactions. Unlike traditional software, agents powered by large language models (LLMs) can make nuanced decisions, navigate complex multi-step tasks, and integrate seamlessly with tools and APIs. At the start of 2024, agents were not ready for prime time, making frustrating mistakes like hallucinating URLs. They started getting better as frontier large language models themselves improved. “Let me put it this way,” said Sam Witteveen, cofounder of Red Dragon, a company that develops agents for companies, and that recently reviewed the 48 agents it built last year. “Interestingly, the ones that we built at the start of the year, a lot of those worked way better at the end of the year just because the models got better.” Witteveen shared this in the video podcast we filmed to discuss these five big trends in detail. Models are getting better and hallucinating less, and they’re also being trained to do agentic tasks. Another feature that the model providers are researching is a way to use the LLM as a judge, and as models get cheaper (something we’ll cover below), companies can use three or more models to

Read More »

OpenAI’s red teaming innovations define new essentials for security leaders in the AI era

Join our daily and weekly newsletters for the latest updates and exclusive content on industry-leading AI coverage. Learn More OpenAI has taken a more aggressive approach to red teaming than its AI competitors, demonstrating its security teams’ advanced capabilities in two areas: multi-step reinforcement and external red teaming. OpenAI recently released two papers that set a new competitive standard for improving the quality, reliability and safety of AI models in these two techniques and more. The first paper, “OpenAI’s Approach to External Red Teaming for AI Models and Systems,” reports that specialized teams outside the company have proven effective in uncovering vulnerabilities that might otherwise have made it into a released model because in-house testing techniques may have missed them. In the second paper, “Diverse and Effective Red Teaming with Auto-Generated Rewards and Multi-Step Reinforcement Learning,” OpenAI introduces an automated framework that relies on iterative reinforcement learning to generate a broad spectrum of novel, wide-ranging attacks. Going all-in on red teaming pays practical, competitive dividends It’s encouraging to see competitive intensity in red teaming growing among AI companies. When Anthropic released its AI red team guidelines in June of last year, it joined AI providers including Google, Microsoft, Nvidia, OpenAI, and even the U.S.’s National Institute of Standards and Technology (NIST), which all had released red teaming frameworks. Investing heavily in red teaming yields tangible benefits for security leaders in any organization. OpenAI’s paper on external red teaming provides a detailed analysis of how the company strives to create specialized external teams that include cybersecurity and subject matter experts. The goal is to see if knowledgeable external teams can defeat models’ security perimeters and find gaps in their security, biases and controls that prompt-based testing couldn’t find. What makes OpenAI’s recent papers noteworthy is how well they define using human-in-the-middle

Read More »