Jobs for Humans, 2029-2059

I was honored to particilate in a panel at an event on Adult Education in the Age of Artificial Intelligence that was run by The Great Courses as a fundraiser for the Academy of Hope, an adult public charter school in Washington, D.C.

I spoke first, following a few introductory talks, and was followed by Nicole Smith and Ellen Scully-Russ, and a keynote from Dexter Manley, Super Bowl winner with the Washington Redskins. After a short break, Kavitha Cardoza moderated a very interesting panel discussion. A recording of the talk and rest of the event is supposed to be available to Great Courses Plus subscribers.

I’ve included a fairly complete text from the script I wrote (with some modifications and additional comments).

As a tenured professor at a well-endowed university, I have the good fortune to be about as sheltered as anyone can be from disruptions in employment. But, I do have two young children, so I have a strong personal interest in there being good jobs available for them in this time period.

My four-year old son drew the picture, and I hate to disappoint him that the train driver position he dreams of probably won’t work out, and I don’t think there is anything we can do to save it. But, I do hope there will be something fulfilling for him to do when he grows up.

For the actual talk, I was able to use beautiful images from Getty Images which The Great Courses has a license to (and not allowed to use Create Commons images, since they do not count as non-commercial), so I’ve replaced the images from the talk with CC-licensed images. Unfortunately, I wasn’t able to find a cc image of a match making factory, like the one in this Getty image that I used in the talk. The replacement image is a spinning room from Fall River, MA, 1912.

I want to start by talking about history. Machines taking jobs away from humans is not a new thing - goes back hundreds of years.

The picture shows a match-making factory in the 1870s. No one has a job as this kind of match-maker today – and lots of the jobs the other kind of match-maker have also been taken over by machines.

Another example is automated teller machine. ATMs automated many of the roles previously done by human bank tellers.

ATM Machines didn’t eliminate jobs for bank tellers – actually made more, since they make banking cheaper and more accessible, and meant banks could open more branches which still needed to hire tellers for the more interesting and complicated banking activities.

We’ve seen many transformations like this, and many tasks that could once only be done by humans are now routinely automated. Although past technological advances have caused massive disruption and pain for many individuals, as a species on the whole, these advances have not diminished overall human employment, and there shouldn’t be any doubt that on the whole, technological and scientific program have made all of our lives tremendously better.

Graph based on data from Our World in Data.

One way to measure that progress is what fraction of our workforce is needed to feed us.

As recently as 150 years ago, nearly everyone worked in agriculture, and we still couldn’t produce enough food to feed everyone. Now, only about 1 out of 75 people work in farming, and we are so ridiculously productive in producing food with we can burn about 1/3 of it as fuel.

So, if we were driven as a species to avoid work once our subsistence needs are met, we shouldn’t be working 8 hours or more a day.

If the ordinary wage-earner worked four hours a day, there would be enough for everybody and no unemployment... This idea shocks the well-to-do, because they are convinced that the poor would not know how to use so much leisure.
Bertrand Russell, In Praise of Idleness (1932)
We should be working about 8 minutes a day, and still living better than people did 150 years ago.

Somehow we’ve managed improve productivity by a factor of several hundred, without reducing the demand for human work. All the previous scientific and technological progress that has automated work has just led to finding new productive things for humans to do.

Will Artificial Intelligence Change Everything?

The question for today is if we are reaching the end of that – are the kinds of automation that can be achieved (or soon will be) with artificial intelligence that they won’t just improve productivity by automating some human tasks, but that they will eliminate the opportunity for humans to contribute productively at all.

First, its important to distinguish AI from the traditional automation that has driven productivity gains for the past hundred years.

We’ve only experienced the disruption computing causes over the past half century, but a few people had the vision of what was possible much longer ago.

The first person to see the potential for universal computers, was Gottfried Leibniz back in the 17th century.

The human race will have a new kind of instrument which will increase the power of the mind much more than optical lenses strengthen the eyes and which will be as far superior to microscopes or telescopes as reason is superior to sight.
Gottfried Wilhelm Leibniz (1679)

Leibniz is talking about increasing the power of our minds the way a telescope increases the power of our eyes. This is what traditional computing has done.

More recently, Steve Jobs talked about computers as bicycles for the mind.

We have machines now that can do any computation we understand well enough to describe in simple steps quadrillions of times faster than humans can do it. We can also build computing systems, like the one most of us have in our pockets, that don’t just do one one human understands faster, but that can take the collective efforts of millions of humans over decades to make it possible for us to play “Angry Birds”.

This is an amazing accomplishment for our species, but AI goes beyond it.



All of the previous capabilities can only solve problems humans already understand well enough to solve.

AI allows us to solve problems no humans understand.

I’m going to focus now on Machine Learning, which is just one sub-field of AI, but it’s the one that has the most hype over the past decade, and one that is being rapidly deployed in ways that automate human tasks.

The main distinction between traditional computing and machine learning is that traditional automatons are programmed, while machine learning automatons are trained. Humans set up a training process, but the machine learns how to solve the problem on its own.

I’ll illustrate with a simple example – building a machine to distinguish women and men in pictures.

This is something most humans are quite good at, but if I asked you how you do it, you couldn’t explain it. And, since humans can’t explain how to do it, we don’t know how to write a program to do it, but we can train a model that does it well.

First, we need to collect training images.

Training complex models requires a lot of training data – a few million images. Fortunately, you can find billions of images on the Internet (at least if you don’t care about copyright; for the talk, I was allowed to use these images, but they blurred them out of the recording).

Next, we need to label the images. This is what is called “supervised learning” – we are telling the machine the correct answers, and it is training to find a model that matches those answers.

Labeling 10M images might seem like a lot of work, but you can find low-paid humans to do it.

Now, we’re ready to train a model. But first, we need to decide on a model architecture.

This just means designing a function with lots of unknown parameters that takes all the pixels of an images as its inputs, and outputs a prediction of gender and confidence.

We train the model by starting with random values for all those parameters, testing the labeled images, and updating the weights until we get a model that makes good predictions.

There are some tricks for how to update the weights in the right direction, but if all goes well, we’ll find a model that has high accuracy on our tests before we run out of money.

Then we deploy the model and everything is great...

...except we see results like these.

We have people that look like men, but are identified as women. What they have in common is they are carrying umbrellas.


These examples were provided by Tianlu Wang, and the results showing how ML models learn biases (and a method to mitigate this) are in Men Also Like Shopping: Reducing Gender Bias Amplification using Corpus-level Constraints, Jieyu Zhao, Tianlu Wang, Mark Yatskar, Vicente Ordonez, Kai-Wei Chang. (In Empirical Methods in Natural Language Processing (EMNLP) 2017.)

The umbrella-revealing-gender example is from Balanced Datasets Are Not Enough: Estimating and Mitigating Gender Bias in Deep Image Representations by Tianlu Wang, Jieyu Zhao, Mark Yatskar, Kai-Wei Chang, Vicente Ordonez. (In International Conference on Computer Vision (ICCV), 2019.)

The problem is the learning process is just about learning statistical patterns in data – the model is not developing any real understanding of men and women.

Since most of the people in the labeled data who were holding umbrellas were women, the model learned a strong pattern that if you are holding an umbrella you must be a woman.

Being mis-gendered because of holding an umbrella may not be such a serious problem, but the same kinds of learning methods are used in many more sensitive tasks, like predicting who is a terrorist and who gets a job interview.


Amazon Created a Hiring Tool Using A.I. It Immediately Started Discriminating Against Women. (Slate, Oct 2018)



If you are traveling in Hong Kong, being face-recognized with an umbrella nearby may lead to other problems.

Predicting the Future


The wisest quote I know of about making predictions is from English footballer Paul Gascoigne, who said "I never predict anything, and I never will."

The hard thing about making predictions, is that our brains and the experiences we relate to are linear – we get one year older every year, and can relate to linear change easily.

But, nearly everything we care about is actually changes exponentially.

People tend to talk about exponential change as though it is rare and special, but it is actually the way nearly everything that matters changes.

All it means to be exponential, is that the change is a percentage of the current value, like increasing by 5% a year or doubling every decade.

Here’s what doubling every year looks like for 10 years (compared to the blue line which is adding 100 every year). Looks about the same, until we go out another year...


After 20 years, the linear line is so overwhelmed by the exponential growth, that it is indistinguishable from the flat axis. In another 10 years, the doubling rate has produced another factor of 1000.


Almost everything we care about looks like this – here we see GDP per capita for a handful of countries.

The exponential growth is so powerful, that World War II looks like a little glitch.


We see similar exponential curves for almost anything we look at – here it is books published per person, and crop yield per acre.

Predicting exponential growth is the easiest and safest prediction to make. The only way it goes wrong is if there is some physical limit that stops the growth – Malthus thought we were at the limit of how much an acre of land could produce in 1800 – but you can see from the graph on the right that we weren’t, and this is one of the reasons he got things so wrong.


The main challenge isn’t predicting the exponential growth, it is guess how much more growth is needed for things to work – that is, what are the labels on the vertical axis.


One property of exponential curves, is if you zoom in on any part of them, they look basically the same.


When autonomous vehicles started to work in 2005, if you thought we were on a curve like this and only needed to get about 100x better, you were at risk of making really bad predictions.

If you saw the rate of improvement in autonomous vehicles from 2004 to 2016 and extrapolated continued exponential growth, maybe it wasn’t so unreasonable to predict in 2016 that we would have coast-to-coast full autonomy by 2017.

Of course, now we know it was a lot further off.

Even though its easy to predict exponential change, it is hard to predict looking forward how much more change is needed to get to the point where something actually works well enough to have an impact.


Predicting dropping costs is easier. The red curve is also exponential, but here, it is decreasing by 7% a year instead of increasing.

For example, let’s look at the cost of communicating.

If you wanted to send a message from Washington to California in 1800, you couldn’t even imagine doing it.

By 1803, one person could – Thomas Jefferson envisioned the Lewis and Clark expedition.

It cost $50,000 in 1803 dollars, which is hard to convert, but let’s guess about $100M.

Congressional appropriation methods, however, haven't changed much - the initial request, shown in the letter, was for $2,500.

Let’s zoom in on the next 100 years.

By 1903, we had telephones. If you were really rich and important you could have one in your office.

A 3-minute call from NY to Chicago cost $5.45 in 1903 dollars.

I couldn’t find out if you could call from Washington to California, and adjusting for inflation is tough, but somewhere around a few thousand current dollars seems reasonable.


Why was it so expensive? Here’s the phone operators that were needed to make it happen. (Those jobs don’t exist today either.)

By 2003, we had early smartphones.

Today, no one thinks twice about the cost of sending messages to California.

Sending messages has gotten so ridiculously cheap, spam is profitable and researchers work on ways to artificially make sending messages more expensive.

Jobs of the Future

One way to think about the jobs of the future is to predict when the cost of automating the job will drop below the cost of hiring a human to do it today.

Nearly all individual jobs could be automated today, if you invested enough in a special-purpose solution and in training the machine to do that specific job.

Jobs that Won’t be Replaced by AI

It is hard to predict when particular jobs will be automated out of existence, but it seems eventually most jobs people have today will be.

I think there are three types of jobs that won’t be – the first two will be a bit depressing, but don’t give up hope for a hopeful conclusion until I get to the third one.

1. Jobs that should be done by machines, but are protected by powerful professions.

An example of a profession that is well organized to resist job losses due to technology is medicine. When Johnson & Johnson marketed a machine for performing anesthesia, the American Society of Anesthesiologists objected.

The medical professional organizations are so powerful, that nearly all medical technology is designed and marketed to assist doctors, not replace them.

2. Jobs that could be done by machines, but can be done more cheaply by humans.



Amazon Fulfillment Center, Richmond, VA
(picture by me)

It is well worth taking a tour of an Amazon Fulfillment Center. Other than conveyer belts, scanners, and fork lifts, there are not many many machines operating the warehouse — nearly all the work is done by humans, being told by software what to do.

Its cheaper to get humans to do this work since it is physically complex, varied, and high skill, but the skills required to do it are readily available and not highly valued by the marketplace, so humans with such skills can be hired at low cost and easily replaced when necessary. It'll be a long time before it is cheaper to do these jobs by machine.

3. Jobs that are intrinsically human: it doesn’t matter if machines can do them, we care that they are done by a human.



We don’t watch sports to see the fastest, strongest, most agile objects in the universe - we want to be inspired by the individual achievements of other humans, and the synergy of a team of humans working together.

Unfortunately for me, and most of us in this room (unlike Dexter Manley, pictured, who was our keynote speaker), we don’t have the athletic talents to succeed as professional athletes.

But this intrinsic value in work being done by humans applies to many other endeavors.

Machines can already produce music that musicologists can’t distinguish from humans — but no one wants to listen to it.

We want to listen to music to connect with the humans (or at least animals!) who wrote and performed it, and it matters who they are.


Image Credit: hellotimothytyndale

Burger flippers can be replaced by machines once the costs get low enough, but not high-end chefs — food tastes more savory when we can imagine it being cooked by a perfectionist chef lording over a kitchen.


White House Photo (Public Domain)

Education works best when the teacher is a human who cares about what they are teaching, and best of all when the teacher also cares about the students as people.

Hopeful Conclusion

In the future, we should all have jobs like these!

Everyone should have a job that values their intrinsic humanity, and technology will soon advance to the point where we all can. In many ways (recall the diminishing percentage of our workforce employed in agriculture from earlier) we already have. We just have to face the challenge of restructuring society to make this work.