Leaders Insights
Leaders Insights

Rester au meilleur niveau, un peu chaque jour.

DomainesMarketingDataFinanceIA
RessourcesApprendreTestOutilsBlogGlossaire
© 2026 Leaders Insights — Tous droits réservés.
Formations/AI in real estate/Governance, risks and checks/Fair housing and discrimination risk in algorithmic decisions
3/4+150 XP

Governance, risks and checks

10The regulatory landscape reshaping AI in real estate+15011Where AI models fail in property decisions+15012Fair housing and discrimination risk in algorithmic decisions+15013Building a pre-deployment checklist for property AI+150

Fair housing and discrimination risk in algorithmic decisions

# Fair housing and discrimination risk in algorithmic decisions

In 2019, a tenant screening company called SafeRent Solutions generated a score for a Massachusetts woman applying to rent an apartment with a housing voucher. Her score was low. She was denied. She had no eviction record and a strong voucher-backed payment history covering her rent. The algorithm did not know her race. It did not need to. A 2024 settlement in *Louis v. SafeRent Solutions* alleged the scoring model relied on factors, including credit history and non-relevant transaction data, that produced disproportionately lower scores for Black and Hispanic applicants and voucher holders as a group, even though the protected characteristics themselves were never inputs. That is disparate impact, and it is the central compliance trap in real estate AI.

This lesson unpacks how it happens, which laws apply, and what checks a real estate organization must run before letting a model touch a leasing, underwriting, or pricing decision.

The legal frame: Fair Housing Act basics

The Fair Housing Act (FHA), enacted in 1968 and enforced by the U.S. Department of Housing and Urban Development (HUD) and the Department of Justice (DOJ), prohibits discrimination in housing on the basis of race, color, national origin, religion, sex, familial status, and disability.

Two liability theories matter for AI:

  • Disparate treatment: intentional discrimination. Rare in modern AI cases because no one codes "reject this race."
  • Disparate impact: a facially neutral policy or model that produces a statistically significant adverse effect on a protected class, even without intent. This is where algorithms live. The Supreme Court affirmed disparate impact liability under the FHA in *Texas Department of Housing v. Inclusive Communities Project* (2015).

State and local overlays add complexity: California, New York, and Colorado all have their own fair housing and AI-specific disclosure statutes, and some cities (Colorado state law effective 2026, for instance) require impact assessments before deploying "high-risk" automated decision systems in housing.

How proxies smuggle in protected class effects

A proxy variable is a neutral-looking input that correlates strongly with a protected class. Real estate models are full of them:

  • Zip code: correlates with race and national origin due to historical redlining patterns (the government-backed practice of denying mortgages in minority neighborhoods, formally ended in 1968 but with lasting residential segregation effects).
  • Eviction history: correlates with sex and race. Studies, including Princeton's Eviction Lab, show eviction filings disproportionately affect Black women renters, independent of actual payment risk.
  • Criminal background screens: HUD's 2016 guidance explicitly flagged blanket criminal history bans as likely disparate impact because incarceration rates differ sharply by race.
  • Credit score thresholds: correlate with race due to broader wealth gaps, not with rental payment reliability specifically.
  • Housing voucher status (Section 8): not always a federally protected class itself, but many states and cities added "source of income" protections, and voucher status often proxies for race and family structure.

None of these variables mention race. All of them can reconstruct race statistically. A model trained to minimize default risk will happily pick up zip code or eviction flags because they are predictive, without any awareness that they are also discriminatory proxies.

Why this is a governance problem, not just a technical one

Model risk here is not "the model is inaccurate." The model can be highly accurate at predicting late payment and still be illegal, if its accuracy is achieved by leaning on variables that track protected class membership more than they track actual tenant risk. Accuracy and fairness are separate axes. A governance program that only checks predictive performance (AUC, precision, recall) will miss this entirely.

The main AI risks in tenant screening and underwriting models

1. Training data bias: historical acceptance/rejection data already embeds past discriminatory decisions (human or algorithmic). Training on it reproduces the bias.

2. Proxy leakage: as above, neutral features carry protected class signal.

3. Vendor opacity: most landlords do not build screening models in-house. They buy from vendors (SafeRent, RealPage, CoreLogic, TransUnion SmartMove are commonly used names in this space). If the vendor will not disclose model logic or validation data, the landlord still bears legal liability as the entity making the housing decision.

4. Score-threshold rigidity: automated cutoffs ("score below 500, auto-reject") remove human discretion that might otherwise catch an unfair edge case, and they scale a single flawed rule across thousands of applicants at once.

5. Feedback loops: a model that suppresses applications from certain zip codes reduces future data from those areas, reinforcing its own blind spots over time.

Guardrails: what to run before deployment

A pre-deployment fair housing check for any tenant-facing or pricing-facing AI system should include:

1. Disparate impact testing. Run the model's outcomes against applicant demographic data (collected separately, never as a model input) using the "four-fifths rule": if the selection rate for a protected group is less than 80% of the rate for the highest-scoring group, that is a common (though not conclusive) regulatory red flag used by the EEOC and referenced in HUD guidance.

Simple worked example:

  • Approval rate for white applicants: 70%
  • Approval rate for Black applicants: 50%
  • Ratio: 50/70 = 0.71, or 71%
  • 71% < 80% threshold → flag for disparate impact review

2. Proxy correlation audits. Statistically test each input feature against protected class membership (using indirect data such as Bayesian surname/geography imputation, a common technique regulators themselves use, called BISG, Bayesian Improved Surname Geocoding). High correlation does not automatically mean removal, but it triggers a business-necessity review.

python
# Simplified proxy correlation check
import pandas as pd

# df has model_score, zip_code, and a separately-held 
# race_proxy column (never fed into the model)
corr = df.groupby('zip_code')['race_proxy_pct_minority'].mean().corr(
    df.groupby('zip_code')['model_score'].mean()
)
print(f"Zip-code to score correlation: {corr:.2f}")
# A strong correlation (e.g., > 0.5) warrants a business-necessity 
# justification and a less discriminatory alternative test

3. Less discriminatory alternative (LDA) testing. Fair lending regulators (and by extension, fair housing practice) expect firms to test whether a model with similar accuracy but lower disparate impact exists. If your data science team can build an alternative with a smaller 80% rule gap and comparable predictive power, deploying the more discriminatory version is a legal exposure, even if the first model is technically "better."

4. Vendor due diligence. Before signing with any screening or pricing vendor, request: their most recent disparate impact test results, the feature list, and whether they will indemnify you. HUD and the Consumer Financial Protection Bureau (CFPB) have both signaled that landlords cannot outsource liability by pointing at the vendor.

5. Human review and appeal path. No fully automated denial without a human-reviewable override. This is best practice and, in some states, becoming a legal requirement for "high-risk" automated decisions.

Vérification des acquis

1. In the SafeRent tenant screening case, the scoring model never used race as an input, yet the outcome allegedly harmed Black and Hispanic applicants disproportionately. Which liability theory does this illustrate?

2. Why is disparate treatment liability rare in modern AI-driven housing cases, while disparate impact is the primary compliance risk?

3. A real estate company is deciding whether to deploy a new applicant scoring model. Based on the *Inclusive Communities* precedent, what should this most directly prompt the company to do?

CHOIX MULTIPLES

4. Select ALL correct answers about how proxy variables can create disparate impact risk in tenant screening algorithms.

Sélectionnez toutes les réponses correctes.

CHOIX MULTIPLES

5. Select ALL correct answers about the legal landscape governing AI-driven housing decisions.

Sélectionnez toutes les réponses correctes.

Pricing algorithms: a parallel risk

Tenant screening is not the only exposure. Algorithmic rent-setting tools (RealPage's YieldStar is the most litigated example, subject of a DOJ antitrust suit filed in 2024 alleging coordinated pricing among landlords) raise a related but distinct issue: antitrust risk from shared pricing data, plus a fair housing angle if the pricing model's inputs correlate with tenant demographics in ways that produce disparate cost burdens. Governance teams should treat pricing and screening as two separate model risk categories, each needing its own testing protocol.

How Algorithms Can Discriminate (and What to Do About It)

Watch on YouTube

For a deeper primer on disparate impact methodology, HUD's own 2013 discriminatory effects rule is the primary source document: HUD Discriminatory Effects Standard.

Key Takeaways

  • Disparate impact liability under the Fair Housing Act does not require intent or protected class data in the model. Neutral proxies like zip code, eviction history, and credit score can trigger violations if outcomes are statistically skewed.
  • Run the four-fifths rule test on real outcome data before and after deployment, not just once at launch. Approval or scoring gaps below 80% between groups are a standard regulatory red flag.
  • Test for less discriminatory alternatives. Regulators expect firms to show they did not deploy the most discriminatory option among comparably accurate models.
  • Vendor contracts do not transfer legal liability. Landlords and operators remain responsible for fair housing outcomes even when using a third-party screening or pricing tool.
  • Build in mandatory human review for automated denials. Full automation without an appeal path is both a legal and reputational risk as state-level AI disclosure laws expand through 2026.

Précédent

Where AI models fail in property decisions

Suivant

Building a pre-deployment checklist for property AI