Why do safety requirements like to discourage use of AI? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:07:38Z http://stackoverflow.com/feeds/question/409252 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai 2 Why do safety requirements like to discourage use of AI? Dmitri Nesteruk 2009-01-03T15:55:57Z 2009-02-01T10:38:07Z <p>Seems that requirements on safety do not seem to like systems that use AI for safety-related requirements (particularly where large potential risks of desctruction/death are involved). Can anyone suggest <strong>why</strong>? I always thought that, provided you program your logic properly, the more intelligence you put in an algorithm, the more likely this algorithm is capable of preventing a dangerous situation. Are things different in practice?</p> http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai/409257#409257 19 Answer by tvanfosson for Why do safety requirements like to discourage use of AI? tvanfosson 2009-01-03T16:00:05Z 2009-01-03T16:00:05Z <p>Most AI algorithms are <em>fuzzy</em> -- typically learning as they go along. For items that are of critical safety importance what you want is deterministic. These algorithms are easier to prove correct, which is essential for many safety critical applications.</p> http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai/409261#409261 3 Answer by casperOne for Why do safety requirements like to discourage use of AI? casperOne 2009-01-03T16:01:31Z 2009-01-03T16:01:31Z <p>I would think that the reason is twofold.</p> <p>First it is possible that the AI will make unpredictable decisions. Granted, they can be beneficial, but when talking about safety-concerns, you can't take risks like that, especially if people's lives are on the line.</p> <p>The second is that the "reasoning" behind the decisions can't always be traced (sometimes there is a random element used for generating results with an AI) and when something goes wrong, not having the ability to determine "why" (in a very precise manner) becomes a liability.</p> <p>In the end, it comes down to accountability and reliability.</p> http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai/409262#409262 1 Answer by Michael Haren for Why do safety requirements like to discourage use of AI? Michael Haren 2009-01-03T16:01:59Z 2009-01-03T16:10:49Z <p>I would guess that AI systems are generally considered more complex. Complexity is usually a bad thing, especially when it relates to "magic" which is how some people perceive AI systems.</p> <p>That's not to say that the alternative is necessarily simpler (or better).</p> <p>When we've done control systems coding, we've had to show trace tables for every single code path, and permutation of inputs. This was required to insure that we didn't put equipment into a dangerous state (for employees or infrastructure), and to "prove" that the programs did what they were supposed to do.</p> <p>That'd be awfully tricky to do if the program were fuzzy and non-deterministic, as @tvanfosson indicated. I think you should accept that answer.</p> http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai/409277#409277 3 Answer by Roy Peled for Why do safety requirements like to discourage use of AI? Roy Peled 2009-01-03T16:10:49Z 2009-01-03T16:10:49Z <p>The more complex a system is, the harder it is to test. And the more crucial a system is, the more important it becomes to have 100% comprehensive tests. </p> <p>Therefore for crucial systems people prefer to have sub-optimal features, that can be tested, and rely on human interaction for complex decision making.</p> http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai/409283#409283 1 Answer by Michael Borgwardt for Why do safety requirements like to discourage use of AI? Michael Borgwardt 2009-01-03T16:13:21Z 2009-01-03T16:13:21Z <p>The key statement is "provided you program your logic properly". Well, <strong>how</strong> do you "provide" that? Experience shows that most programs are chock full of bugs. </p> <p>The only way to guarantee that there are no bugs would be formal verification, but that is practically infeasible for all but the most primitively simple systems, and (worse) is usually done on specifications rather than code, so you still don't know of the code correctly implements your spec after you've proven the spec to be flawless.</p> http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai/409314#409314 3 Answer by joel.neely for Why do safety requirements like to discourage use of AI? joel.neely 2009-01-03T16:31:12Z 2009-01-03T16:31:12Z <p>From a safety standpoint, one often is concerned with guaranteed predictability/determinism of behavior and rapid response time. While it's possible to do either or both with AI-style programming techniques, as a system's control logic becomes more complex it's harder to provide convincing arguments about how the system will behave (convincing enough to satisfy an auditor).</p> http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai/409332#409332 2 Answer by Dan Dyer for Why do safety requirements like to discourage use of AI? Dan Dyer 2009-01-03T16:39:58Z 2009-01-03T16:39:58Z <p>Haven't you seen any of the Terminator or Matrix films? We can't trust the machines.</p> http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai/409427#409427 1 Answer by DFectuoso for Why do safety requirements like to discourage use of AI? DFectuoso 2009-01-03T17:30:59Z 2009-01-03T17:30:59Z <p>I think that is because AI is very hard to understand and that becomes impossible to maintain.</p> <p>Even if a AI program is considered fuzzy, or that it "learns" by the moment it is released, it is very well tested to all know cases(and it already learned from it) before its even finished. Most of the cases this "learning" will change some "thresholds" or weights in the program and after that, it is very hard to really understand and maintain that code, even for the creators. </p> <p>This have been changing in the last 30 years by creating languages easier to understand for mathematicians, making it easier for them to test, and deliver new pseudo-code around the problem(like mat lab AI toolbox)</p> http://stackoverflow.com/questions/409252/why-do-safety-requirements-like-to-discourage-use-of-ai/500567#500567 0 Answer by dwf for Why do safety requirements like to discourage use of AI? dwf 2009-02-01T10:38:07Z 2009-02-01T10:38:07Z <p>There are enough ways that ordinary algorithms, when shoddily designed and tested, can wind up killing people. If you haven't read about it, you should look up the case of <a href="http://courses.cs.vt.edu/~cs3604/lib/Therac_25/Therac_1.html" rel="nofollow">Therac 25</a>. This was a system where the behaviour was supposed to be completely deterministic, and things still went horribly, horribly wrong. Imagine if it were trying to reason "intelligently", too.</p>