Green AI's Data-Centric Shift: Why the ICT4S Study Matters for Sustainable Machine Learning

GitHub June 2026
⭐ 4
Source: GitHubArchive: June 2026
A new empirical study from the 8th International Conference on ICT for Sustainability (ICT4S) challenges the dominant model-centric narrative of Green AI. By systematically analyzing how data quality, size, and preprocessing affect energy consumption, the research opens a new frontier for making machine learning truly sustainable.

For years, the Green AI movement has fixated on model architecture—shrinking parameters, pruning layers, and designing efficient transformers. The companion repository for the ICT4S 2022 paper, 'Data-Centric Green AI: An Exploratory Empirical Study,' marks a fundamental pivot. The research, hosted on GitHub under the handle 'greenaiproject/ict4s22,' provides a rigorous empirical framework to measure the energy cost of data itself. The core thesis is deceptively simple: the data we feed into models, from its collection and cleaning to its labeling and augmentation, carries a significant and often overlooked carbon footprint. Through controlled experiments on benchmark datasets, the authors demonstrate that data quality—specifically label noise, missing values, and class imbalance—can inflate training energy consumption by up to 40% compared to clean, balanced datasets. The study also reveals that aggressive data augmentation, while beneficial for accuracy, can increase total energy expenditure by 25-60% depending on the technique. This work is not an attack on data augmentation or large datasets; rather, it is a call for a 'data-centric' accounting framework that treats data operations as first-class citizens in any sustainability budget. The significance is profound: as AI models plateau in performance gains from scaling laws, the next frontier of optimization may lie not in the model, but in the data that fuels it. This repository provides the community with reproducible experiments, including scripts for measuring energy consumption using tools like CodeCarbon and Carbontracker, and a methodology that can be applied to any dataset. It is a blueprint for a more honest, granular approach to sustainable AI.

Technical Deep Dive

The 'greenaiproject/ict4s22' repository is not a new model or a flashy demo; it is a methodological toolkit and a set of empirical results. At its core, the study operationalizes the concept of 'data-centric Green AI' by decoupling data-related energy costs from model-training costs. The architecture of the experiment is straightforward but powerful: the authors take a fixed model architecture (a standard ResNet-50 and a BERT-base variant) and systematically perturb the training data while measuring energy consumption using hardware power meters and software libraries like CodeCarbon.

Key Technical Components:

1. Energy Measurement Framework: The study uses a combination of RAPL (Running Average Power Limit) for CPU/DRAM and NVIDIA's nvidia-smi for GPU power draw. This dual approach provides granularity that many studies miss—distinguishing between the energy cost of data loading (I/O bound) and actual computation (compute bound).

2. Data Perturbation Dimensions: The researchers manipulate four key data attributes:
- Label Noise: Randomly flipping a percentage of labels (5%, 10%, 20%).
- Missing Values: Introducing missing features in tabular data (10%, 30%, 50%).
- Class Imbalance: Downsampling minority classes to create ratios of 1:10, 1:50, 1:100.
- Data Augmentation: Applying standard augmentation pipelines (random crop, color jitter, mixup) and measuring their energy overhead.

3. Reproducibility Infrastructure: The repository includes Dockerfiles, Conda environment YAMLs, and shell scripts that automate the entire pipeline. This is critical because energy measurements are notoriously environment-dependent.

Benchmark Results (from the study):

| Data Quality Condition | Energy Increase vs. Clean Baseline | Accuracy Drop (Top-1) | Energy per Epoch (kWh) |
|---|---|---|---|
| Clean (Baseline) | 0% | 76.3% | 0.12 |
| 20% Label Noise | +38% | 68.1% | 0.17 |
| 50% Missing Features | +22% | 71.4% | 0.15 |
| Class Imbalance 1:100 | +41% | 62.8% | 0.17 |
| Heavy Augmentation (Mixup) | +58% | 77.1% | 0.19 |

Data Takeaway: The table reveals a non-linear relationship: a 20% label noise increases energy by 38% while dropping accuracy by over 8 points. This suggests that investing in data cleaning (label verification, deduplication) may yield both accuracy and energy dividends—a rare win-win in ML engineering.

The repository also includes a novel metric: 'Energy per Accuracy Point' (EPA). This normalizes energy consumption by model performance, allowing practitioners to compare the efficiency of different data strategies. For example, heavy augmentation achieves higher accuracy but at a 58% energy premium, resulting in an EPA that is 30% worse than the clean baseline. This metric is the study's most practical contribution—it gives teams a concrete number to optimize against.

Key Players & Case Studies

The study is authored by researchers from the University of Copenhagen and the IT University of Copenhagen, but the real 'players' here are the tools and frameworks that enable this analysis. The repository explicitly integrates with two dominant open-source energy tracking libraries:

- CodeCarbon: A Python package that estimates carbon emissions based on hardware utilization and regional energy mix. It is maintained by a consortium including researchers from Mila (Quebec AI Institute) and Comet.ml. CodeCarbon has over 1,800 GitHub stars and is used by companies like Hugging Face to report training emissions.
- Carbontracker: A simpler, more lightweight alternative developed by researchers at the University of Copenhagen (some of whom are co-authors of this ICT4S paper). It focuses on real-time GPU power monitoring.

Case Study: Hugging Face's 'BLOOM' Training

A notable real-world example that aligns with this study's thesis is the training of the BLOOM model (176B parameters) by BigScience. The consortium published a detailed carbon audit that revealed that data preprocessing—specifically deduplication and tokenization—accounted for nearly 15% of total project emissions. This is precisely the kind of hidden cost that the ICT4S study seeks to surface. The BLOOM team used CodeCarbon and found that their data pipeline consumed approximately 25,000 kWh over three months, equivalent to the annual energy use of two US households.

Comparison of Energy Tracking Tools:

| Tool | Granularity | Hardware Support | GitHub Stars | Key Limitation |
|---|---|---|---|---|
| CodeCarbon | Per-experiment | CPU, GPU, RAM | ~1,800 | Regional grid data may be stale |
| Carbontracker | Per-epoch | GPU only | ~400 | No CPU/RAM tracking |
| Experiment Impact Tracker | Per-operation | CPU, GPU, TPU | ~200 | Requires manual instrumentation |

Data Takeaway: The ecosystem of energy tracking tools is still nascent, with none offering real-time, operation-level granularity. This gap represents both a risk (inaccurate accounting) and an opportunity for startups to build the 'New Relic for AI energy.'

Industry Impact & Market Dynamics

The 'data-centric Green AI' thesis is arriving at a pivotal moment. The global AI market is projected to grow from $136 billion in 2022 to over $1.8 trillion by 2030 (Grand View Research), and data centers already account for 1-2% of global electricity use. As AI workloads proliferate, the data-related energy share will only increase.

Market Implications:

1. Data Labeling Services: Companies like Scale AI, Labelbox, and Appen may face pressure to certify the 'energy efficiency' of their labeling pipelines. A label that requires 10x more human verification (and thus compute for consensus) may become a liability.

2. Data Storage & Retrieval: Cloud providers (AWS, GCP, Azure) could introduce 'green data tiers' that charge a premium for energy-efficient data storage and retrieval. The study shows that inefficient data loading (e.g., reading from cold storage) can add 10-15% to training energy.

3. MLOps Platforms: Tools like Weights & Biases, MLflow, and Neptune.ai are already adding energy tracking features. This study provides a framework for them to extend tracking to the data pipeline, not just the training loop.

Adoption Curve: We predict that within 18 months, at least three major cloud providers will offer 'data carbon scores' for datasets stored in their object storage services. This will be driven by enterprise ESG reporting requirements (e.g., EU Corporate Sustainability Reporting Directive).

Risks, Limitations & Open Questions

While the study is a critical step forward, it has several limitations that must be acknowledged:

1. Limited Model Scope: The experiments only use ResNet-50 and BERT-base. Transformer-based models with attention mechanisms may have different data-energy dynamics. For instance, data quality issues in large language models (LLMs) often manifest as hallucination rather than increased energy, which is harder to measure.

2. Static Data Quality: The study treats data quality as a static attribute. In production, data quality degrades over time (data drift), and the energy cost of detecting and correcting drift is not captured.

3. Hardware Dependence: The energy measurements were conducted on NVIDIA V100 GPUs. Newer architectures like H100 or AMD MI300 have different power profiles and may change the relative cost of data operations.

4. Missing the 'Data Acquisition' Phase: The study focuses on data preprocessing and training, but the most energy-intensive data phase is often acquisition—scraping, sensor data collection, or synthetic data generation. A truly comprehensive framework must include this.

Ethical Concern: There is a risk that 'data-centric Green AI' could be weaponized to justify excluding certain types of data (e.g., diverse, noisy real-world data) in favor of clean, synthetic data. This could exacerbate bias in AI systems if not handled carefully.

AINews Verdict & Predictions

Verdict: The 'greenaiproject/ict4s22' study is not a breakthrough in AI performance, but it is a breakthrough in AI accounting. It provides the first rigorous, reproducible framework for treating data as a first-class citizen in the energy budget of machine learning. This is the kind of infrastructure work that the field desperately needs.

Predictions:

1. By 2027, 'Data Carbon Budgets' will become a standard section in ML research papers, alongside model FLOPs and parameter counts. Conferences like NeurIPS and ICML will adopt guidelines for reporting data-related energy.

2. A startup will emerge that offers 'Data Energy Audits' as a service, using a methodology derived from this study. It will be acquired by a major cloud provider within three years.

3. The biggest impact will be on edge AI and IoT, where energy budgets are extremely tight. Data-centric optimization (e.g., choosing which sensor data to discard) will become more important than model compression.

4. Controversy ahead: Expect pushback from the 'bigger data is better' school of thought. The study's findings will be challenged by those who argue that the marginal accuracy gains from more data outweigh the energy costs. This debate will be healthy and necessary.

What to watch next: The authors have indicated plans to extend the framework to LLMs and to release a 'Data Energy Leaderboard' for common datasets. If executed, this leaderboard could become the de facto standard for sustainable data practices in AI.

More from GitHub

UntitledThe jnsll/datagreenaijupyslides repository is a Jupyter Notebook-based slide deck built around the 'Data-Centric Green AUntitledSimPO (Simple Preference Optimization) is a new alignment method from Princeton NLP that strips away the complexity of tUntitledSuperAgent, hosted at superagent-ai/superagent on GitHub, is an open-source toolkit designed to embed safety directly inOpen source hub3056 indexed articles from GitHub

Archive

June 20262653 published articles

Further Reading

CodeCarbon Exposes AI's Hidden Climate Cost: The Open Source Tool Quantifying Machine Learning EmissionsAs AI models grow exponentially in size and computational demand, their environmental footprint has become an urgent, yeGreen AI's Data-Centric Revolution: Why a Zero-Star Notebook MattersA Jupyter notebook slide deck with zero stars is quietly challenging AI's energy narrative. The jnsll/datagreenaijupysliSimPO: Princeton's Reference-Free RLHF Breakthrough Redefines AI AlignmentPrinceton NLP has unveiled SimPO, a radical simplification of preference optimization that eliminates the reference modeSuperAgent: The Open-Source Shield Your AI Apps Need Against Prompt InjectionSuperAgent, an open-source security layer for AI applications, is gaining traction as a lightweight solution to block pr

常见问题

GitHub 热点“Green AI's Data-Centric Shift: Why the ICT4S Study Matters for Sustainable Machine Learning”主要讲了什么?

For years, the Green AI movement has fixated on model architecture—shrinking parameters, pruning layers, and designing efficient transformers. The companion repository for the ICT4…

这个 GitHub 项目在“How to measure energy consumption of data preprocessing in machine learning”上为什么会引发关注?

The 'greenaiproject/ict4s22' repository is not a new model or a flashy demo; it is a methodological toolkit and a set of empirical results. At its core, the study operationalizes the concept of 'data-centric Green AI' by…

从“Data-centric green AI vs model-centric green AI comparison”看,这个 GitHub 项目的热度表现如何?

当前相关 GitHub 项目总星标约为 4,近一日增长约为 0,这说明它在开源社区具有较强讨论度和扩散能力。