“What Happens When Data Centers Come to Town”

Loading
loading...

“What Happens When Data Centers Come to Town”

July 28, 2026
mike@standardsmichigan.com

No Comments

What Happens When Data Centers Come to Town

Terry Nguyen | BA Public Policy

Ben Green |Assistant Professor, School of Information and Gerald R. Ford School of Public Policy

Partner | Michigan Environmental Justice Coalition

Introduction. [Abstract].  The rapid growth of data centers, with their enormous energy and water demands, necessitates targeted policy interventions to mitigate environmental impacts and protect local communities. To address these issues, states with existing data center tax breaks should adopt sustainable growth policies for data centers, mandating energy audits, strict performance standards, and renewable energy integration, while also requiring transparency in energy usage reporting. “Renewable energy additionality” clauses should ensure data centers contribute to new renewable capacity rather than relying on existing resources.  If these measures prove insufficient, states should consider repealing tax breaks to slow unsustainable data center growth. States without tax breaks should avoid such incentives altogether while simultaneously implementing mandatory reporting requirements to hold data centers accountable for their environmental impact. Broader measures should include protecting local tax revenues for schools, regulating utility rate hikes to prevent cost-shifting to consumers, and aligning data center energy demands with state climate goals to avoid prolonging reliance on fossil fuels.

Related:

Sharan Kalwani (Chair, Southeast Michigan Section IEEE): AI and Data Center Demand

Gallery: Other Ways of Knowing Climate Change

 

Application of Big Data in Power System Reform

July 28, 2026
mike@standardsmichigan.com
No Comments

 

Application of Big Data in Power System Reform

Abstract:  Power grid operation and maintenance decision-making reform is an important part of power system reform. With the construction of massive historical quasi real-time data management platform, the reform of power system is also advancing. However, in the face of massive data explosion, the business level and business logic become disorganized and redundant. Based on the actual situation of Shenzhen Power Supply Bureau, the sg-erp data center is composed of structured data center, massive data center, unstructured data center and power grid GIS data center. With the unprecedented growth of business application data, the data center can improve business logic and promote power system reform. The experimental results show that big data technology has a broad application prospect in the reform of power industry.

CLICK HERE for complete paper

Smart Grid Blockchains

Power Management For Data Centers Challenges And Opportunities

Language 600

July 27, 2026
mike@standardsmichigan.com
No Comments

Starting from the canonicals of any standard suitable for optimizing innovation (and incorporation by reference into public law) — Title, Scope, Purpose and Definitions — we will turn our attention to the Call for Public Comment by NIST which is open until July 28th.

Innovation and Competitiveness in Artificial Intelligence

Artificial intelligence is built upon language, but the meaning of “standard language” becomes complicated when machines learn from billions of human expressions. Unlike electrical, building or safety standards, language standards are rarely governed by a single authority. Dictionaries, style manuals, universities, publishers, governments and professional societies establish conventions, while ordinary speakers continuously modify them. AI systems operate in the middle of this tension between prescription and usage.

Training data. Large language models learn statistical patterns from books, websites, journalism, academic literature, software and other sources. The composition of that material influences what the model recognizes as normal, authoritative or acceptable language. Decisions about inclusion, exclusion and weighting can therefore function as de facto standards, even when no formal standards organization is involved.

 Grammar and intelligibility. AI can reinforce conventional spelling, syntax and technical terminology, making communication across institutions and borders easier. This is particularly valuable in engineering, medicine, law and education, where small differences in terminology can have substantial consequences. Yet excessive normalization may flatten dialect, regional vocabulary and inherited forms of expression.

Meaning. Words change over time and contested words often carry political, cultural or institutional assumptions. When an AI system chooses one definition over another, it may unintentionally appear to settle a dispute that society itself has not settled. Transparency about ambiguity is therefore an important characteristic of trustworthy AI.

Tchnical standardization. AI increasingly depends upon formal vocabularies, ontologies, metadata, machine-readable definitions and interoperability protocols. Standards organizations such as International Organization for Standardization, IEEE and National Institute of Standards and Technology have roles in developing frameworks through which AI systems can be evaluated and governed.

Above all we still face the question: Who gets to set the language standard? Should AI reflect contemporary majority usage, established literary traditions, professional terminology, institutional style or the language of particular communities? Probably some combination is unavoidable.

For Standards Michigan, the deeper question may be this: AI does not merely follow language standards; through widespread daily use, it may increasingly help create them. If millions of students, teachers, engineers and institutions rely upon AI to write and interpret language, the model’s linguistic choices can become conventions themselves. Understanding how those choices are made may therefore become as important as understanding the standards written by traditional standards-setting bodies.

 

Tokens

July 27, 2026
mike@standardsmichigan.com
No Comments

Standards Michigan: Language*

American English is effectively the de facto reference language for most modern LLM tokenization.   During today’s session we explore the at-present advantage Americans have in the development of artificial applications — whether it should always be that way or not.  Tokenization isn’t language-neutral — it’s heavily skewed toward English due to data realities. This is one of the core reasons why “English-first” prompting often works best in today’s LLMs.

We will use the document linked below to begin the exploration:

NIST AI Consortium

Use the login credentials at the upper right of our home page


The Quick Brown Fox – Tokenization Example

Original English Sentence:

The quick brown fox jumps over the lazy dog.

1. Tokenization

Tokens: ["The", " quick", " brown", " fox", " jumps", " over", " the", " lazy", " dog", "."]

2. Token IDs (Numbers fed to the AI model)

Token Token ID
The 464
quick 2068
brown 7583
fox 1776
jumps 18045
over 625
the 262
lazy 16925
dog 3290
. 13

Final Input to the AI Model:

[464, 2068, 7583, 1776, 18045, 625, 262, 16925, 3290, 13]


Background:

The model only sees this list of numbers. It has no direct understanding of English words anymore — it learned patterns from billions of examples during training using these number sequences.This numerical input then goes through embeddings (turning numbers into vectors), attention layers, etc., to generate a response.  Most widely used tokenizers (e.g., OpenAI’s tiktoken, Llama’s, etc.) are trained primarily on English-heavy datasets (often 60–90%+ English in pre-training corpora).

Outcome:

    • Better compression for English — Common English words and patterns become single tokens or short subwords.
    • Worse efficiency for other languages — Non-English text often gets fragmented into more tokens (sometimes 2–5× more for the same semantic content).

Impact:

    • Higher token counts = higher API costs and shorter effective context windows for non-English users.
    • Poorer downstream performance on non-English tasks.
    • English becomes the “cheapest” and often “best-performing” language for prompting and reasoning.

Studies consistently show this “tokenization tax” or “language premium”: English typically has the lowest token-per-character or token-per-meaning ratio in major models.

Bias:

    • Multilingual models still underperform on low-resource languages.
    • It reinforces English as the default language for AI development.
    • It affects fairness, accessibility, and global adoption.

Efforts to fix this include dedicated multilingual tokenizers, language-specific fine-tuning, and more balanced approaches. However, because English dominates training data and benchmarks, it remains the practical standard that everything else is measured against.

Tokenization isn’t language-neutral — it’s heavily skewed toward English due to data realities. This is one of the core reasons why “English-first” prompting often works best in today’s LLMs.

 

* StandardsMichigan.COM normally deals with Language issues every Monday at least once per month.

How Your LLM Costs 5X More If You Don’t Speak English

Same content, 65% more expensive in Chinese! Cross-model tokenization comparison: Claude users pay the highest ‘Chinese tax’

print(“Python”)

July 27, 2026
mike@standardsmichigan.com
, , , ,
No Comments

Active Python Releases

 

“Python is the programming equivalent

of a Swiss Army Knife.”

— Some guy

 

The Python Standard Library

Open source standards development is characterized by very open exchange, collaborative participation, rapid prototyping, transparency and meritocracy.   The Python programming language is a high-level, interpreted language that is widely used for general-purpose programming. Python is known for its readability, simplicity, and ease of use, making it a popular choice for beginners and experienced developers alike.  Python has a large and active community of developers, which has led to the creation of a vast ecosystem of libraries, frameworks, and tools that can be used for a wide range of applications. These include web development, scientific computing, data analysis, machine learning, and more.

Another important aspect of Python is its versatility. It can be used on a wide range of platforms, including Windows, macOS, Linux, and even mobile devices. Python is also compatible with many other programming languages and can be integrated with other tools and technologies, making it a powerful tool for software development.  Overall, the simplicity, readability, versatility, and large community support of Python make it a valuable programming language to learn for anyone interested in software development including building automation.

As open source software, anyone may suggest an improvement to Python(3.X) starting at the link below:

Python Enhancement Program

Python Download for Windows

Python can be used to control building automation systems. Building automation systems are typically used to control various systems within a building, such as heating, ventilation, air conditioning, lighting, security, and more. Python can be used to control these systems by interacting with the control systems through the building’s network or other interfaces.

There are several Python libraries available that can be used for building automation, including PyVISA, which is used to communicate with instrumentation and control systems, and PyModbus, which is used to communicate with Modbus devices commonly used in building automation systems. Python can also be used to develop custom applications and scripts to automate building systems, such as scheduling temperature setpoints, turning on and off lights, and adjusting ventilation systems based on occupancy or other variables. Overall, Python’s flexibility and versatility make it well-suited for use in building automation systems.

Subversion®

Building Automation & Control Networks

Innovation and Competitiveness in Artificial Intelligence

July 27, 2026
mike@standardsmichigan.com

No Comments

NIST Expands AI Consortium’s Scope, Calls for New Members

 


The International Trade Administration (ITA) of the U.S. Department of Commerce (DOC) is requesting public comments to gain insights on the current global artificial intelligence (AI) market. Responses will provide clarity about stakeholder concerns regarding international AI policies, regulations, and other measures which may impact U.S. exports of AI technologies. Additionally, the request for information (RFI) includes inquiries related to AI standards development. ANSI encourages relevant stakeholders to respond by ITA’s deadline of October 17, 2022.

Fueling U.S. Innovation and Competitiveness in AI: Respond to International Trade Administration’s Request for Information

Commerce Department Launches the National Artificial Intelligence Advisory Committee

 

Image

Morgan Wallen

July 27, 2026
mike@standardsmichigan.com

No Comments

Crowd Safety | Outdoor Event Electrotechnologies









County Fair

July 26, 2026
mike@standardsmichigan.com
, ,
No Comments

Standards Arizona | Other Agricultural Extension Offices

Chandler High School

4-H is a U.S.-based network of youth organizations whose mission is “engaging youth to reach their fullest potential while advancing the field of youth development”. Its name is a reference to the occurrence of the initial letter H four times in the organization’s original motto head, heart, hands, and health, which was later incorporated into the fuller pledge officially adopted in 1927.  In the United States, the organization is administered by the National Institute of Food and Agriculture of the United States Department of Agriculture.

Maricopa County Cooperative Extension

Farm Electrical Power

Agriculture

Before the Harvest

Layout mode
Predefined Skins
Custom Colors
Choose your skin color
Patterns Background
Images Background
Standards Michigan
error: Content is protected !!
Skip to content