Implicit bias

An implict bias (or implicit stereotype) refers to the stereotypes that people unconsciously have towards people of different groups, even though they may oppose these prejudices.[1][2][3] People who have this bias may be completely unaware that they have it.[4][5]

This page contains too many unsourced statements and needs to be improved.

Implicit bias could use some help. Please research the article's assertions. Whatever is credible should be sourced, and what is not should be removed.

Cogito ergo sum
Logic and rhetoric
Key articles
General logic
Bad logic
v - t - e

Testing

There are numerous programs that are designed with the attempt to test (or even remove) implicit bias, such as the test by Project Implicit at Harvard University.[6] These tests try to determine your subconscious biases about people from different religious, racial, and ethnic backgrounds.[7] There is no scientific consensus that these tests are meaningful.[8] For example, skeptic Michael Shermer, who writes:[9]

First, unconscious states of mind are notoriously difficult to discern and require subtle experimental protocols to elicit. Second, associations between words and categories may simply be measuring familiar cultural or linguistic affiliations — associating "blue" and "sky" faster than "blue" and "doughnuts" does not mean I unconsciously harbor a pastry prejudice. Third, negative words have more emotional salience than positive words, so the IAT may be tapping into the negativity bias instead of prejudice. Fourth, IAT researchers have been unable to produce any interventions that can reduce the alleged prejudicial associations.

Although Shermer also says:

For centuries the arc of the moral universe has been bending toward justice as a result of changing people’s explicit behaviors and beliefs, not on ferreting out implicit prejudicial witches through the spectral evidence of unconscious associations. Although bias and prejudice still exist, they are not remotely as bad as a mere half a century ago, much less half a millennium ago. We ought to acknowledge such progress and put our energies into figuring out what we have been doing right and do more of it.
gollark: In parallel!
gollark: It enumerates and executes all possible strings.
gollark: ```pythonimport itertoolsimport multiprocessing as mchars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sif __name__ == "__main__": def start(func): proc = m.Process(target=func) proc.start() io_queue = m.Queue(maxsize=128) def printer(): while True: print(io_queue.get()) code_queue = m.Queue(maxsize=128) def generator(): for x in generate(): code_queue.put(x) def executor(): while True: code = code_queue.get() result = None try: result = repr(exec(code)) except Exception as e: result = repr(e) if result != "None": io_queue.put(code + ": " + result) start(generator) for _ in range(4): start(executor) printer()```Expanded version.
gollark: But the exec is *important*.
gollark: What?

References

This logic-related article is a stub.
You can help RationalWiki by expanding it.
This article is issued from Rationalwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.