When we think of concerns in Artificial intelligence, two main obvious connections are job loss and lethal autonomous weapons. While killer robots might be an actual threat in the future, the consequence of automation is a complicated phenomenon that experts are still actively analyzing. Very likely, as for any major Industrial revolution, the market will gradually stabilize. Advances in technology will create new types of jobs, inconceivable at the moment, which will be later disrupted by a new major technology takeover. We have seen this multiple times in modern history and we are probably going to see this again.
A third major field of concern is the ethical impact of AI. Here the question falls: is Artificial Intelligence racist?
Well, in short.. there is no short answer.
What about a long answer? Tales of Google, Seals, and Gorillas
In order to answer this question, we first need to define what Racism is.
Racism: The belief that all members of each race possess characteristics, abilities, or qualities specific to that race, especially so as to distinguish it as inferior or superior to another race or races. ~ Oxford Dictionaries
Racism is related to the generalization of specific characteristics to all the members of a race. Generalization is a key concept in Machine learning and this is especially true in classification algorithms. Inductive learning is related to derive general concepts from specific examples. The majority of techniques in supervised learning try to approximate functions to predict the categories of input values with the highest possible accuracy.
A function that fits our training set too closely generates overfitting. In practice, it is not able to derive a proper general function given different inputs. On the other hand, a function that doesn’t fit the dataset accurately leads to underfitting. Hence, the model generated is too simple to produce significant and reliable results.
- Clone the repo
- Get into the directory
- Create an env
- On Windows:
python -m venv agent_env agent_env\Scripts\activate - On macOS/Linux:
python3 -m venv agent_env source agent_env/bin/activate
- On Windows:
- Run in terminal:
pip install -r requirements.txt
