ADVERTISEMENT

Philippines, developing Asia-Pacific lag in AI readiness—ADB study

Published Apr 10, 2026 06:00 pm  |  Updated Apr 10, 2026 02:27 pm

The Philippines is among developing economies in Asia-Pacific that continue to lag behind advanced regional peers in artificial intelligence (AI) preparedness, limiting near-term gains due to gaps in infrastructure, skills, and innovation capacity, according to the Asian Development Bank (ADB).

In a special topic titled “AI Readiness and Economic Impacts in Asia and the Pacific”, published as part of its Asian Development Outlook (ADO) April 2026 report on Friday, April 10, the Manila-based ADB examined how AI preparedness, infrastructure capacity, and labor market readiness vary widely across economies in the region.

The report, written by Roshen Fernando and Ed Kieran Reyes of the ADB’s economic research and development impact department, highlighted a clear divide between advanced Asia-Pacific (AAP) economies and developing Asia-Pacific (DAP) economies, including the Philippines.

AAP economies—specifically Australia, Hong Kong, Japan, New Zealand, Singapore, and South Korea—cluster near the global frontier in AI readiness. They record an average score of 0.19 in the digital infrastructure component of the AI Preparedness Index (AIPI).

By contrast, many DAP economies—including the Philippines, Cambodia, India, Myanmar, and Papua New Guinea—score below 0.11, indicating significantly weaker digital infrastructure capacity. The report said this gap reflects binding constraints in computing capacity, digital connectivity, and data infrastructure, which create cascading barriers that limit AI diffusion across developing economies.

These constraints, the report added, restrict access to cloud-based services and limit the use of proprietary or local data for training AI models. As a result, firms in developing economies adopt AI more slowly, reducing the scale and speed of productivity gains across their economies.

Also, the report pointed to differences in human capital readiness, which determines whether firms can effectively absorb and apply AI tools. DAP economies average 0.13 on the human capital and labor market policies component of AIPI, compared with 0.17 in AAP economies, underscoring a further gap in workforce preparedness for AI adoption.

The report said these gaps constrain the adoption of AI technologies, limiting productivity gains and slowing economic transformation. As a result, estimated AI-driven productivity gains in DAP range from 0.2 percent to 6.9 percent, below levels seen in AAP.
It added that while AI could lift gross domestic product (GDP) growth across Asia-Pacific, gains in DAP are projected at a more modest 0.2 to 1.8 percentage points (ppts) by 2030, compared with 0.6 to 2.1 ppts in AAP. However, the report noted that DAP economies could benefit more over time through “catch-up” effects, provided investments in infrastructure, education, and institutions are strengthened.
The study also found that the distribution of AI-driven gains will vary by sector. Services are expected to see the largest productivity improvements, while agriculture is likely to benefit the least, with estimated productivity increases ranging from 0.1 percent to 4.5 percent.

Beyond infrastructure and skills readiness, the report also highlighted significant variation in labor market demand for AI-related competencies across the region. It cited job posting data showing that advanced economies like Singapore and South Korea exhibit higher and faster-growing demand for AI-related skills compared with developing economies like India, Malaysia, and the Philippines.

The report said these differences reflect varying levels of firm readiness and complementary organizational capabilities, which influence how quickly AI adoption is translated into productivity improvements across Asia-Pacific economies.

According to the ADB, policy reforms aimed at improving digital infrastructure, strengthening human capital, and enhancing innovation systems will be crucial to maximize AI’s economic potential while mitigating risks such as job displacement.

Related Tags

Asian Development Bank (ADB) artificial intelligence (AI)
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.