# Bias, IP, and reputational risks in AI
In 2019, an AI-powered virtual try-on tool went viral for all the wrong reasons: it rendered darker skin tones inaccurately and defaulted to slim, tall body shapes, effectively erasing most of the brand's actual customers. The screenshots spread faster than any campaign. The lesson stuck: an AI model that "works" in the demo can quietly insult half your market in production.
This lesson shows you how to spot bias, intellectual property (IP), and reputational landmines in fashion AI before they detonate.
Fashion AI touches the most sensitive things a person has: their body, their identity, their taste. Three AI use cases dominate the risk mapmapUsing software to automate repetitive marketing tasks and campaigns, enabling personalisation at scale across channels like email, web, and social.View full definition →.
Each carries a different failure mode. Let's take them one at a time.
Bias here means the model performs worse for some groups than others, usually because the training data underrepresented them.
Fit and body-rendering models learn from photo datasets. If those datasets skew toward straight-size (roughly US 0 to 12), light-skinned, able-bodied models, the AI inherits that skew. Result:
Do not judge accuracy on one blended number. Break it down by subgroup. A simple check for a fit model:
# Fit recommendation accuracy by body-size bucket
import pandas as pd
df = pd.read_csv("fit_predictions.csv") # cols: size_bucket, predicted, actual
df["correct"] = df["predicted"] == df["actual"]
report = df.groupby("size_bucket")["correct"].agg(["mean", "count"])
print(report)
# Flag any bucket >5 percentage points below the top bucket
top = report["mean"].max()
print(report[report["mean"] < top - 0.05])If your straight-size accuracy is 88 percent and your plus-size accuracy is 71 percent, that 17-point gap is your reputational risk quantified. (Illustrative numbers, not a benchmark.)
The concept is called fairness across subgroups. For a plain-language primer, see Google's People + AI Guidebook on fairness, free and non-technical.
Generative tools are trained on billions of images, many of them copyrighted. That creates two distinct legal exposures.
Prompt a model with "floral print in the style of [living designer]" and you may get output that closely echoes a protected pattern. Prints and surface designs are protectable as copyright (the artwork) and sometimes as registered designs (the EU) or design patents (the US). Producing garments from an infringing print is your liability, not the AI vendor's.
Real context: the ongoing US case *Andersen v. Stability AI* and Getty Images' suits (in the US and UK) against Stability AI are testing whether training on copyrighted images, and generating look-alikes, infringes. As of early 2026 these are unsettled. Do not assume "the AI made it" is a defense.
In the US, the Copyright Office has repeatedly held that works generated purely by AI, with no meaningful human authorship, cannot be registered for copyright. So a print your team generated with a single prompt may not be yours to defend against a copycat. Human editing, arrangement, and creative direction strengthen your claim.
🎬 [VIDEO: "Who Owns AI-Generated Art?" - youtube.com - a clear breakdown of copyright status for AI images in the US and EU]
Even legal AI can be a brand disaster. Three flashpoints:
Synthetic models replacing real people. When Levi's announced in 2023 it would test AI-generated models to "increase diversity," the backlash argued it was diversity theater: representation without hiring actual diverse models. The reputational cost outran the cost saving.
Undisclosed AI imagery. Passing off an AI-generated "person" as a real model, or an AI try-on as a real photo, risks misleading consumers.
Deepfake and likeness misuse. Generating a model that resembles a real person without consent can violate right of publicity laws (strong in US states like California and New York).
Knowledge check
1. Why is 'disparate performance testing' recommended over judging a fit model on a single blended accuracy number?
2. A generative tool consistently produces mostly Eurocentric faces when prompted with 'fashion model.' What is the most likely root cause?
3. Why does the lesson argue that fashion is 'uniquely exposed' to AI reputational risk compared to many other sectors?
4. Select ALL correct answers. Which of the following are symptoms that a sizing or body-rendering model has inherited bias from skewed training data?
Select all the correct answers.
5. Select ALL correct answers. Which AI use cases does the lesson identify as dominating the fashion risk map?
Select all the correct answers.
Governance is not a memo. It is a gate the model must pass before launch. Here is a concrete, fashion-ready checklist you can adopt.
A useful principle: the model does not launch until a named human owns each row above. Diffused responsibility is how the 2019 try-on disaster happened; nobody owned fairness testing.
Say you generate 500 marketing images with a text-to-image tool for an EU campaign.
The math almost always favors the guardrail.
1. Test performance by subgroup, not in aggregate. A high overall accuracy can hide that your AI fails plus-size or darker-skinned customers. Set a maximum allowed gap before launch.
2. AI does not shield you from copyright liability, and pure AI output may not be protectable. Use indemnified tools, log human authorship, and run similarity checks.
3. Name the real rules: EU AI Act (label AI images), GDPR (consent for body/photo data), FTC (deceptive AI). There is no single US federal AI law as of 2026.
4. Reputational risk is a screenshot away. Synthetic models and undisclosed AI imagery can cost more in trust than they save in production.
5. Governance is a gate with named owners, not a document. If no human owns fairness or IP sign-off, no one caught the problem.