Week 11 - Data bias and ethics

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/5

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:10 PM on 5/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

6 Terms

1
New cards

What is bias?

Bias is a technical property of models that can often be measured and mitigated.

In ML this refers to systematic errors leading to consistent distortions in the output of an ML model. These biases can lead to unfair or discriminatory outcomes.

2
New cards

What are ethics?

Ethics is about value-driven decision-making, encompassing whether and how ML systems should be used, including (but not limited to) bias considerations.

3
New cards

What are the types of bias in ML?

Sampling bias - sampling in a non-uniform way.

Exlusion bias - exlcuding certain features during data cleaning.

Technical bias - what model, regularisation, hyperparameters, etc. are used impacts model output.

Real-world bias - high-quality data does not exist for all groups and events equally.

Contextual bias - misusing the model by deploying it in a way not intended during training.

4
New cards

How can we sample in an unbiased way?

Random uniform sampling (each data point has an equal chance of being selected).

Stratified sampling (within each group each data point has an equal chance of being selected)

5
New cards

How can we try to prevent bias?

Have an outer feedback loop to ensure the model is compliant with stakeholder ethical concerns.

6
New cards

Why is interpretability important?

In safety-critical domains we need to know why the ML model made the decisions it made. NN is not good for this, Decision trees are more interpretable.