What are the biggest current impacts of AI?

post by Sam Clarke · 2021-03-07T21:44:10.633Z · LW · GW · No comments

This is a question post.

Contents

  Answers
    3 Gerald Monroe
    2 Ben Cottier
    1 Sam Clarke
None
No comments

I'd like to have a clearer picture of the domains in which AI systems have already been deployed - particularly those in which they are having the largest impacts on the world, and what those impacts are.

Some reasons why this might be useful:

I'm curious for people's thoughts, either for ideas about specific impacts, or for ways I can try to investigate this despite apparent difficulties in finding out how AI systems are actually being used for commercial, political and military applications.


My current best guesses:

Other contenders:

Domains I'm uncertain about (but in which Allan Dafoe suggested [EA · GW] AI systems are increasingly being deployed):

Answers

answer by [deleted] · 2021-03-09T10:02:29.243Z · LW(p) · GW(p)

Here's the most succinct and high information thing I can contribute.


Right now, each of these AI systems you describe, if they are using deep-learning at all, is using a hand-rolled solution.

You may notice that the general problems these AI systems are trying to solve are all in very similar forms to each other.  You have some [measurements] -> [some desired eventual outcome or desired classification].  You then need to subdivide the problem into separate submodules, and in many problems the submodules are going to be the same as everyone else's way to solve the problem.  

For example, you are going to want to classify and segment the images from a video feed into a state space of [identity, locations].  So does everyone else.

Similarly at a broader level, even if some of your algorithms have a different state space, the form of your algorithm is the same as everyone else.

And when you talk about your higher level graph - especially for realtime control - your system architecture is actually going to be identical to everyone else's realtime system.  You have a clock, you have deadlines, you have a directed graph, you have safety requirements.  This code in particular is really expensive and difficult to get right - something you want to share with everyone else.  

So the next major step forward is platforming.  There will be some convergence to a few common platforms (and probably a round of platform wars than ultimately end up with 1-3 winners like every other format and tech war in the past).  The platforms will handle:

a.  Training and development of common components

b.  Payment and cross-licensing agreements

c.  Model selection and design

d.  Compiling models to target-specific bytecode

e.  Systems code for realtime system graphs

f.  RTOS, driver components for realtime systems

g.  (c&d) will have to be shared in common across a variety of neural network compute platforms.  There's about 100 of them now, Google's "TPUs" are one of the earlier ones.  

h.  Probably housekeeping like DRM, updates, etc will end up getting platformed as well.  

All this reuse means that larger and larger parts of AI systems will be shared with every other AI system.  Moreover, common elements - solving the same problem - will automatically get better over time as the shared parts get updated.  This is how you get to a really smart factory robot that doesn't get fooled by a piece of gum someone dropped - because it classifies it to [trash] because it's sharing that part of the system with other robotic systems.  

There is no economic justification to individually make that robot able to ID unexpected pieces of debris, but if it's licensing a set of shared components that have this feature baked in, it will have that as well.

As a side note, this is why talk of a possible coming "AI winter" is bullshit.  We may not reach AI sentience for many more decades, but there is still enormous room for forward progress.

comment by Sam Clarke · 2021-03-30T02:40:38.685Z · LW(p) · GW(p)

Thanks for your reply! This is interesting, though I'm a little confused by some parts of it.

Is the following a good summary of your main point? A main feature of your model of AI development/deployment is that there will be many shared components of AI systems, perhaps owned by 1-3 companies, that get licensed out to people who want to use them. This is because many problems you want to solve with AI systems can be decomposed into the same kinds of subproblems, so you can reuse components that solve those subproblems many times, and there's extra incentive to do this because designing those components is really hard. One implication of this is that progress will be faster than in a world where components are separately designed by different companies, because more training data per component so components will be able to generalise more quickly.

I guess I'm confused whether there is so much overlap in subproblems that this is how things will go.

For example, you are going to want to classify and segment the images from a video feed into a state space of [identity, locations]. So does everyone else.

Hmm, it seems this is a subproblem that only a smallish proportion of companies will want to solve (e.g. companies providing police surveillance software, contact tracing software, etc.) - but really, not that many economically relevant tasks involve facial recognition. But maybe I'm missing something?

Similarly at a broader level, even if some of your algorithms have a different state space, the form of your algorithm is the same as everyone else.

Hmm, just because the abstract form of your algorithm is the same as everyone else's, this doesn't mean you can reuse the same algorithm... In some sense, it's trivial that abstract form of all algorithms is the same: [inputs] -> [outputs]. But this doesn't mean the same algorithm can be reused to solve all the problems.

The fact that companies exist seems like good evidence that economically relevant problems can be decomposed into subproblems that individual agents with human-level intelligence can solve. But I'm pretty uncertain whether economically relevant problems can be decomposed into subproblems that more narrow systems can solve? Maybe there's an argument in your answer that I'm missing?

Replies from: None
comment by [deleted] · 2021-03-30T05:39:12.064Z · LW(p) · GW(p)

Ok, so please note I do work in the field.  This doesn't mean I know everything, and I could be wrong, but I have some knowledge, much of which is under NDA. 

There are many levels of similarity.

From the platform level - the platform is the nn accelerator chips, all the support electronics, the RTOS, the drivers, the interfaces, and a host of other software tools - there is zero difference between AI systems at all.  The platform's role is to take an NN graph, usually defined as a *.onnx file, and to run that graph with deterministic timing, using inputs from many sensors which there have to be device drivers for.

So that's one part of the platforming - everyone deploying any kind of autonomy system will need to purchase platforms to run it on.  (and there will be only a few good enough for real time tasks where safety is a factor)

From the network architecture level, again, there are many similarities.  In addition, networks that solve problems in the same class can often share the same architecture.  For example, 2 networks that just identify images from a dataset can be very similar in architecture even if the datasets have totally different members.  

There are technical reasons why you want to use an existing, 'known to work' architecture, a main one being that novel architectures will take a lot more work to run in real time on your target accelerator platform.  

For different tasks that involve physical manipulations of objects in the real world , I expect there will be many similarities even if robots are doing different tasks.

Just a few : perception networks need to be similar, segmentation networks need to be similar, networks that predict how realworld objects will move, that predict damage, that predict what humans may do, that predict where an optimal path might be found, and so on and so forth.

I expect there will be far more similarities than differences.  

In addition, even when the network weights are totally different, using the same software and network and platform architecture means that you can share code and you merely have to repeat training on a different dataset.  Example: GPT-3 trained on a different language.

 


Hmm, just because the abstract form of your algorithm is the same as everyone else's, this doesn't mean you can reuse the same algorithm... In some sense, it's trivial that abstract form of all algorithms is the same: [inputs] -> [outputs]. But this doesn't mean the same algorithm can be reused to solve all the problems.

 

This is incorrect.  You're also not thinking abstractly enough - you're thinking what we see today, where AI systems are not platformed and are just a mess of python code defining some experimental algorithm.  (eg Open AI's examples).  This isn't production grade or reusable and it has to be or it will not be economical to use.

answer by Ben Cottier · 2021-12-02T03:50:55.632Z · LW(p) · GW(p)

Personal AI assistants seem to have one of the largest impacts (or at least "presence") mainly due to the number of users. The impact per person seems small - making life slightly more convenient and productive, maybe. Not sure if there is actually much impact on productivity. I wonder if there is any research on this. I haven't looked into it at all.

Relatedly, chatbots are certainly used a lot, but I'm uncertain about its current impacts beyond personal entertainment and wellbeing (and uncertain about the direction of the impact on wellbeing).

What 2026 looks like [LW · GW] has a few relevant facts on the current impacts, and interesting speculation about the future impacts of personal assistants and chatbots. E.g. facts:

"in China in 2021 the market for chatbots is $420M/year, and there are 10M active users. This article claims the global market is around $2B/year in 2021 and is projected to grow around 30%/year."

I don't feel surprised by those stats, but I also hadn't really considered how big the market is.

answer by Sam Clarke · 2021-03-30T02:28:38.898Z · LW(p) · GW(p)

The State of AI report is by far the best resource I've come across so far. Reading it led me to significantly update my models about how much ML systems are already being deployed. I was particularly surprised by military applications, e.g.

  • Lockheed have developed a drone that uses ML algorithms to "analyze enemy signals ... and compute effective countermeasures on the fly" for disrupting enemy "communications and radar networks without their realizing they’re being deceived"
  • Heron Systems develop a deep RL agent (called AlphaDogfight) that beat a human pilot 5-0 in a virtual dogfight. US Defense Secretary announced a "real-world competition [between a human pilot and AI] involving full-scale tactical aircraft in 2024" (could just be hype)
  • the US Army Research Lab published a paper exploring how natural language commands could be used to improve performance of RL agents where there are sparse reward functions, using StarCraft II for their experiments
  • (and this is just the R&D that's public...)

Also, AI-based facial recognition is in active use by governments in 50% of the world

No comments

Comments sorted by top scores.