Close Menu
    Facebook LinkedIn YouTube WhatsApp X (Twitter) Pinterest
    Trending
    • Disabled kea invents jousting to become alpha
    • The Electric Ferrari Luce Is Finally Here
    • X says it is cracking down on large accounts that have been gaming its revenue-sharing program by “programmatically reuploading content from smaller accounts” (Lakshmi Varanasi/Business Insider)
    • Today’s NYT Wordle Hints, Answer and Help for May 26 #1802
    • IEEE TryEngineering OnCampus Now At 7 Universities
    • Can AI write your code? | Towards Data Science
    • Penguin-inspired material offers adaptable heating and cooling
    • A Swimmer Broke a World Record at the Enhanced Games
    Facebook LinkedIn WhatsApp
    Times FeaturedTimes Featured
    Monday, May 25
    • Home
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    • More
      • AI
      • Robotics
      • Industries
      • Global
    Times FeaturedTimes Featured
    Home»Artificial Intelligence»Why We Should Focus on AI for Women
    Artificial Intelligence

    Why We Should Focus on AI for Women

    Editor Times FeaturedBy Editor Times FeaturedJuly 3, 2025No Comments7 Mins Read
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr WhatsApp Email
    Share
    Facebook Twitter LinkedIn Pinterest Telegram Email WhatsApp Copy Link


    The story started with a dialog I had with my girlfriend final Sunday. She, inquisitive about medical analysis, talked about that ladies are sometimes underdiagnosed for stroke. There are sometimes many false detrimental circumstances amongst ladies as a result of preliminary stroke analysis was primarily performed on male topics. In consequence, the signs seen in ladies—usually totally different from these noticed in males—couldn’t be acknowledged clinically.

    The same problem has been noticed in pores and skin most cancers analysis. People with darker pores and skin tones have much less of an opportunity of being appropriately recognized.

    Examples like these present how bias in knowledge assortment and analysis design can result in dangerous outcomes. We live in an period the place AI is current in almost each area — and it’s inevitable that biased knowledge is fed into these methods. I’ve even witnessed medical doctors utilizing chatbot instruments as medical assistants whereas writing prescriptions.

    From this side, earlier than a topic or a subject has been totally studied amongst totally different teams—similar to these primarily based on gender or race—making use of its incomplete findings to AI methods carries vital dangers, each scientifically and ethically. AI methods not solely are inclined to inherit current human cognitive biases, however may also unintentionally amplify and entrench these biases inside their technical constructions.

    On this submit, I’ll stroll via a case examine from my private expertise: defining the optimum temperature in an workplace constructing, contemplating the totally different thermal consolation ranges of women and men.

    Case examine: Thermal consolation

    Two years in the past, I labored on a challenge to optimize the power effectivity in a constructing whereas sustaining thermal consolation. This raised a vital query: What precisely is thermal consolation? In lots of workplace buildings or industrial facilities, the reply is a hard and fast temperature. Nevertheless, analysis has proven that ladies report considerably extra dissatisfaction than males below comparable thermal circumstances (Indraganti & Humphreys, 2015). Past the intense scientific investigation, I, together with different feminine colleagues, have all reported feeling chilly throughout workplace hours.

    We’ll now design a simulation experiment to indicate simply how gender inclusivity is vital in defining thermal consolation, in addition to in different actual‑world situations.

    Picture by Creator: Experimental Flowchart

    Simulation setup

    We now simulate two populations—female and male—with barely totally different thermal preferences. This distinction could seem of small significance at first look, however we’ll see it actually turns into one thing within the following chapter, the place we introduce a reinforcement studying (RL) mannequin to be taught the optimum temperature. We see how properly the agent satisfies the feminine occupants if the agent is educated solely on males.

    We start with defining an idealized thermal consolation mannequin impressed by the Predicted Imply Vote (PMV) framework. Every temperature is assigned a consolation rating outlined as max(0, 1 – dist / zone), primarily based on how shut its worth is to the middle of the gender-specific consolation vary:

    Males: 21–23°C (centered at 22°C)
    Females: 23–25°C (centered at 24°C)

    By definition, the additional the temperature strikes from the middle of this vary, the extra the consolation rating decreases.

    Subsequent, we simulate a simplified room-like surroundings the place an agent controls the temperature. Three potential actions:

    • Lower the temperature by 1°C
    • Keep the temperature
    • Enhance the temperature by 1°C

    The surroundings updates the temperature accordingly and returns a comfort-based reward.

    The agent’s objective is to maximise this reward over time, and it learns the optimum temperature setting for the occupants. See the code under for the surroundings simulation.

    RL agent: Q-learning

    We implement a Q-learning technique, letting the agent work together with the surroundings.

    It learns an optimum coverage by updating a Q-table, the place the anticipated consolation rewards for every state-action pair are saved. The agent balances exploration—that’s, attempting random actions—and exploitation—that’s, selecting the best-known actions—because it learns a temperature-controlling technique by maximizing the reward.

    class QLearningAgent:
        def __init__(self, state_space, action_space, alpha=0.1, gamma=0.9, epsilon=0.2):
            self.states = state_space
            self.actions = action_space
            self.alpha = alpha
            self.gamma = gamma
            self.epsilon = epsilon
            # Initialize Q-table with zeros: states x actions
            self.q_table = np.zeros((len(state_space), len(action_space)))
    
        def choose_action(self, state):
            if random.random() < self.epsilon:
                return random.selection(vary(len(self.actions)))
            else:
                return np.argmax(self.q_table[state])
    
        def be taught(self, state, motion, reward, next_state):
            predict = self.q_table[state, action]
            goal = reward + self.gamma * np.max(self.q_table[next_state])
            self.q_table[state, action] += self.alpha * (goal - predict)

    We up to date our Q-table by letting the agent select both the best-known motion primarily based on the present surroundings or a random motion. We management the trade-off with a small epsilon—right here, 0.2—representing the extent of uncertainty we would like.

    Biased coaching and testing

    As promised earlier than, we prepare the agent utilizing solely male knowledge.

    We let the agent work together with the surroundings for 1000 episodes, 20 steps every. It progressively learns find out how to affiliate desired temperature ranges with excessive consolation scores for males.

    def train_agent(episodes=1000):
        env = TempControlEnv(intercourse='male')
        agent = QLearningAgent(state_space=env.state_space, action_space=env.action_space)
        rewards = []
    
        for ep in vary(episodes):
            state = env.reset()
            total_reward = 0
            for step in vary(20):
                action_idx = agent.choose_action(state - env.min_temp)
                motion = env.action_space[action_idx]
                next_state, reward, executed = env.step(motion)
                agent.be taught(state - env.min_temp, action_idx, reward, next_state - env.min_temp)
                state = next_state
                total_reward += reward
            rewards.append(total_reward)
        return agent, rewards

    The code reveals a regular coaching strategy of Q-learning. Here’s a plot of the educational curve.

    Picture by Creator: Studying curve

    We will now consider how properly the male-trained agent performs when positioned in a feminine consolation surroundings. The check is completed in the identical environmental setting, solely with a barely totally different consolation scoring mannequin reflecting feminine preferences.

    Consequence

    The experiment reveals the next consequence:

    The agent has achieved a mean consolation reward of 16.08 per episode for male consolation. We see that it efficiently discovered find out how to keep temperatures across the male-optimal consolation vary (21–23 °C).

    The agent’s efficiency dropped to a mean reward of 0.24 per episode on feminine consolation. This reveals that the male-trained coverage, sadly, can’t be generalized to feminine consolation wants.

    Picture by Creator: Reward Distinction

    We will thus say that such a mannequin, educated solely on one group, might not carry out properly when utilized to a different, even when the distinction between teams seems small.

    Conclusion

    That is solely a small and easy instance.

    However it may spotlight a much bigger problem: when AI fashions are educated on knowledge from just one or a number of teams, they’ve some dangers to fail to satisfy the wants of others—even when variations between teams appear small. You see the above male-trained agent fails to fulfill the feminine consolation, and it proves that bias in coaching knowledge displays immediately on outcomes.

    This will transcend the case of workplace temperature management. In lots of domains like healthcare, finance, schooling, and so on., if we prepare fashions on some non-representative knowledge, we are able to anticipate unfair or dangerous outcomes for underrepresented teams.

    For readers, this implies questioning how AI methods round us are constructed and pushing for transparency and equity of their design. It additionally means recognizing the constraints of “one-size-fits-all” options and advocating for approaches that contemplate numerous experiences and wishes. Solely then can AI really serve everybody equitably.

    Nevertheless, I at all times really feel that empathy is tremendous troublesome in our society. Variations in race, gender, wealth, and tradition make it very onerous for almost all of us to remain in others’ sneakers. AI, a data-driven system, can’t solely simply inherit current human cognitive biases but additionally might embed these biases into its technical constructions. Teams already much less acknowledged might thus obtain even much less consideration or, worse, be additional marginalized.



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Editor Times Featured
    • Website

    Related Posts

    Can AI write your code? | Towards Data Science

    May 25, 2026

    I Built My First ETL Pipeline as a Complete Beginner. Here’s How.

    May 25, 2026

    From TF-IDF to Transformers: Implementing Four Generations of Semantic Search

    May 25, 2026

    The Ultimate Beginners’ Guide to Building an AI Agent in Python

    May 24, 2026

    Beyond the Model: Why Data Scientists Must Embrace APIs and API Documentation

    May 24, 2026

    From Prototype to Profit: Solving the Agentic Token-Burn Problem

    May 23, 2026

    Comments are closed.

    Editors Picks

    Disabled kea invents jousting to become alpha

    May 25, 2026

    The Electric Ferrari Luce Is Finally Here

    May 25, 2026

    X says it is cracking down on large accounts that have been gaming its revenue-sharing program by “programmatically reuploading content from smaller accounts” (Lakshmi Varanasi/Business Insider)

    May 25, 2026

    Today’s NYT Wordle Hints, Answer and Help for May 26 #1802

    May 25, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    About Us
    About Us

    Welcome to Times Featured, an AI-driven entrepreneurship growth engine that is transforming the future of work, bridging the digital divide and encouraging younger community inclusion in the 4th Industrial Revolution, and nurturing new market leaders.

    Empowering the growth of profiles, leaders, entrepreneurs businesses, and startups on international landscape.

    Asia-Middle East-Europe-North America-Australia-Africa

    Facebook LinkedIn WhatsApp
    Featured Picks

    Used an Android Phone After 2017? You Might Get Part of Google’s $135 Million Settlement

    May 21, 2026

    How to Develop a Bilingual Voice Assistant

    August 31, 2025

    YC-backed Escape raises €15.4 million Series A led by Balderton for its AI offensive security engineering platform

    March 11, 2026
    Categories
    • Founders
    • Startups
    • Technology
    • Profiles
    • Entrepreneurs
    • Leaders
    • Students
    • VC Funds
    Copyright © 2024 Timesfeatured.com IP Limited. All Rights.
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us

    Type above and press Enter to search. Press Esc to cancel.