AWS
AWS
Harnessing AI and Cloud Computing to Combat Climate Change
Harnessing AI and Cloud Computing to Combat Climate Change
Why this Challenge?

AWS is the world's most comprehensive cloud platform, offering over 200 fully featured services from global data centers. Millions of customers—from fast-growing startups to enterprises and government agencies—trust AWS to reduce costs, increase agility, and accelerate innovation.

The Compute for Climate Fellowship, launched in 2023 by IRCAI (under UNESCO) and AWS, is a global R&D funding program empowering climate tech startups to harness advanced cloud computing and AI in the fight against climate change.

The Startup Challenge
Compute for Climate Fellowship

The Compute for Climate Fellowship is a global R&D funding program that empowers climate tech startups to leverage advanced cloud computing and AI in the fight against climate change.

Context / Need: The Fellowship was founded in 2023 by the International Research Centre on Artificial Intelligence (IRCAI), under the auspices of UNESCO, and Amazon Web Services (AWS). Each Fellow company accepted into the program builds a groundbreaking proof-of-concept (PoC) climate solution that is funded by AWS, with technical and scientific advisors from AWS and IRCAI.
Winners will propose a proof-of-concept solution. They will “think big” and demonstrate innovation, leverage advanced cloud computing.

Expected Solutions: Show potential for significant global impact across at least one of the eight climate solution areas below.

Scope:
Clean Energy
Low-Carbon Transportation
Sustainable Agriculture and Food
Circular Economy / Manufacturing / Industry
Sustainable Buildings
Greenhouse Gas Management
Carbon Removal
Environment (water, pollution, biodiversity) and Climate Risk
Indigenous Solutions to the Climate Crisis

Compute for Climate Fellowship

The Compute for Climate Fellowship is a global R&D funding program that empowers climate tech startups to leverage advanced cloud computing and AI in the fight against climate change.

Context / Need: The Fellowship was founded in 2023 by the International Research Centre on Artificial Intelligence (IRCAI), under the auspices of UNESCO, and Amazon Web Services (AWS). Each Fellow company accepted into the program builds a groundbreaking proof-of-concept (PoC) climate solution that is funded by AWS, with technical and scientific advisors from AWS and IRCAI.
Winners will propose a proof-of-concept solution. They will “think big” and demonstrate innovation, leverage advanced cloud computing.

Expected Solutions: Show potential for significant global impact across at least one of the eight climate solution areas below.

Scope:
Clean Energy
Low-Carbon Transportation
Sustainable Agriculture and Food
Circular Economy / Manufacturing / Industry
Sustainable Buildings
Greenhouse Gas Management
Carbon Removal
Environment (water, pollution, biodiversity) and Climate Risk
Indigenous Solutions to the Climate Crisis

Compute for Climate Fellowship

The Compute for Climate Fellowship is a global R&D funding program that empowers climate tech startups to leverage advanced cloud computing and AI in the fight against climate change.

Context / Need: The Fellowship was founded in 2023 by the International Research Centre on Artificial Intelligence (IRCAI), under the auspices of UNESCO, and Amazon Web Services (AWS). Each Fellow company accepted into the program builds a groundbreaking proof-of-concept (PoC) climate solution that is funded by AWS, with technical and scientific advisors from AWS and IRCAI.
Winners will propose a proof-of-concept solution. They will “think big” and demonstrate innovation, leverage advanced cloud computing.

Expected Solutions: Show potential for significant global impact across at least one of the eight climate solution areas below.

Scope:
Clean Energy
Low-Carbon Transportation
Sustainable Agriculture and Food
Circular Economy / Manufacturing / Industry
Sustainable Buildings
Greenhouse Gas Management
Carbon Removal
Environment (water, pollution, biodiversity) and Climate Risk
Indigenous Solutions to the Climate Crisis

Selection Criteria
Company maturity

Company must be privately held and founded within last 10 years

Team capabilities

Must have technical team capable of building with advanced cloud computing

Advanced computing services

Proposal must incorporate innovative use of advanced computing services
  1. AI/ML and Generative AI
  2. High-Performance Computing
  3. Autonomous Computing
  4. Spatial Computing
  5. Simulation Technologies
  6. Quantum Computing
  7. Time series data analytics

Rewards
Play an active role in our six business sectors

Your solution, product or service demonstrates that you can play an active role in LVMH's ecosystem and deliver on a large scale. Whether it be the creation process, the omnichannel customer journey, or operation and manufacturing, you support the Group's legacy of excellence and innovation in all areas of its 6 business sectors.

  • Fashion & Leather Goods

  • Wines & Spirits

  • Perfumes & Cosmetics

  • Watches & Jewelry

  • Other Activities

  • Selective Retailing

Timeline

00:00:00:00

left to apply

left to apply

Jury

Lisbeth Kaufman

Lisbeth Kaufman

Head of Climate Tech

Head of Climate Tech

AWS

AWS

Davor Orlic

Davor Orlic

Chief Operation Officer

Chief Operation Officer

IRCAI

IRCAI

Fei Chen

Fei Chen

Director of Advanced Computing Solutions

Director of Advanced Computing Solutions

AWS

AWS

Aidan O'Sullivan

Aidan O'Sullivan

Associate Professor in Energy and AI

Associate Professor in Energy and AI

UCL

UCL

FAQ

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

Who can apply?

Can I apply for more than one Startup Challenge/Award?

What is the difference between a Startup Challenge and an Award?

Is applying for an Award or Startup Challenge free?

******* JAVASCRIPT *******/ /** * Allowed parameters for the tracking code */ const allowedParameters: string[] = [ 'ca', 'utm', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', // 'cat', // Blog // 'ag_t', 't', // Warning this parameters is used like tracking for Challenges partners "Agorize", 'wid' // Paramters for revolugo urls ]; /** * Rreturn the object with the allowed parameters * @param ownParams URLSearchParams * @returns Object */ const ownCtmParameters = (ownParams: URLSearchParams) => { let obj = {}; for (const [key, value] of ownParams.entries()) { //console.log("ownCtmParameters key: ", key); if (allowedParameters.includes(key)) { // console.log("PAss key: ", key); obj[key] = value; } else { // console.log("No PAss key: ", key); } } return obj; }; /** * Insert the tracking code in the anchor elements * @returns void */ const insertTrackingCode = () => { // Get tracking parameters from URL search params const searchParams = new URLSearchParams(window.location.search); // Convert search params to object const filteredParams = ownCtmParameters(searchParams); // If no parameters, return early if (Object.keys(filteredParams).length === 0) { return; } const paramsString = new URLSearchParams(filteredParams).toString(); const baseUrl = window.location.origin; // Get all anchor elements from the current document const anchors = document.querySelectorAll('a'); for (const anchor of anchors) { const href = anchor.getAttribute('href'); const target = anchor.getAttribute('target'); if (!href || target === '_blank') { continue; } // Normalize href const normalizedHref = href.startsWith('https') ? href : href.replace(/^\.\//, '/'); try { const url = normalizedHref.startsWith('http') ? new URL(normalizedHref) : new URL(normalizedHref, baseUrl); const baseUrlObj = new URL(baseUrl); const isExternal = url.origin !== baseUrlObj.origin && !normalizedHref.includes('vivatech.com') && !normalizedHref.includes('vivatechnology.com'); if (isExternal) { continue; } // Add tracking parameters const hasExistingParams = url.search.length > 0; if (hasExistingParams) { url.search += '&' + paramsString; } else { url.search = '?' + paramsString; } anchor.setAttribute('href', url.origin + url.pathname + url.search + (url.hash || '')); } catch (e) { // If href is not a valid URL, skip it continue; } } }; /******* END JAVASCRIPT *******/ /******* INTEGRATION *******/ // Or with DOMContentLoaded document.addEventListener('DOMContentLoaded', () => { insertTrackingCode(); }); /******* END INTEGRATION *******/