task

CREATE-article# #

[previously]

  1. [2016-12-13][00:00] NEW task IN ?
    1. x] # 6649 - CREATE-article# =5465 (this) 
  2. [00:00] NEW article IN 
    1. x] # 5465 - artificial intelligence(AI)
  3. ?[2016-12-13]? NEW task IN 
    1. ] # # - CREATE-list# # - applications artificial intelligence(AI)
  4. [2017-01-10] UPDATE task 
    1. ] # # - CREATE-list# # - applications artificial intelligence(AI) - add more applcations, classify
  5. [2017-01-11][18:30] NEW task IN 
    1. ] # 6649 - CREATE-article# 5465 ai primer IN tds/research/index 
    2. ] # 5465 - article ai primer - ] ADD reference to LIST-major-tech-innovations-of-21st-century
    3. ] s.S - name/title='ai' returns 120, including # 2381 why 
    4. ] s.E - name='ai'  
    5. ] s.S - name ='artificial'
    6. x] s.E - name ='artificial', FOUND = # 6649 

[currently]

  1. [] NEW task IN 
    1. ] # # - 

[next]

  1. [00:00] NEW task 
    1. ] due to the AI effect, many AI applications are not perceived as AI. "A lot of cutting edge AI has filtered into general applications, often without being called AI because once something becomes useful enough and common enough it's not labeled AI anymore,
  2. [2017-01-11][00:00] NEW task IN articles / reference
    1. ] # # - #2381 - why-watson-and-siri-are-not-real-AI, s.S?name='ai' 
    2. ] # # - hawkings, musk, 
    3. ] # # - kurzwell
    4. ] # # - google tensorflow, deepmind, robotics
    5. ] # # - carnegie mellon (pittsburgh, PA)
  3. [2016-12-14] NEW task
    1. ] g? = 'ELI5 artificial intelligence' 
    2. ] r# 1 - (2015) https://www.reddit.com/r/explainlikeimfive/comments/32f3yy/eli5_how_does_aiartificial_intelligence_work/ ( 2 comments)
    3. ] r# 2 - https://www.reddit.com/r/explainlikeimfive/comments/54kdba/eli5_how_does_artificial_intelligence_work/ 
    4. ] r# # - https://www.reddit.com/r/explainlikeimfive/comments/4yc3xu/eli5_what_is_the_difference_between_ai_and/ (machine learning ) 
  4. [00:00] NEW task
    1. ] g?='artificial intelligence primer' - 
    2. ] r# # - https://danielmiessler.com/study/artificial-intelligence/#gs.dRpZkIw - short article explainer, machine learning, deep learning, ...
  5. [00:00] NEW task 
    1. ] hn.algolia?=artificial intelligence 
    2. ] r# # - ai lectures at mit
    3. ] r# # - https://medium.com/snips-ai/the-road-to-artificial-intelligence-b2993424272f#.pz6yoze6z 
  6. [00:00] NEW task 
    1. ] g:define = the theory and development of computer systems able to perform tasks that normally require human intelligence, such as visual perception, speech recognition, decision-making, and translation between languages.
    2. ] MIT prof = 
  7. [00:00] NEW task IN add-reference
    1. ] https://www.journals.elsevier.com/artificial-intelligence/
    2. ] # 6785 - CREATE-article# 5524 - ai is the future and canada can seize it  -
  8. [00:00] NEW reference
    1. ] https://snips.ai/content/intro-to-ai/#machine-learning 
    2. ] CREATE-article# # - SUMMARY - 
    3. ] DEFINE: Intelligent behavior in an autonomous agent — THIS is AI. It’s describing the brain, not the body, of intelligent machines (AI ≠ robots). The AI of today can do specific tasks (driving a car, booking meetings, picking your next Netflix binge). AI research is leading toward something more advanced: artificial general intelligence, or AGI. This AI — when a machine can do things in a way that is indistinguishable from human behavior — is what we’re all waiting for.
  9. [00:00] NEW task IN 
    1. +] REF - mooc week-2, 
    2. +] what did we learn in week-2 to update our understanding of AI 
  10. [00:00] NEW person IN tech-dev-sw
    1. ] # # - ai curator, 
  11. [00:00] NEW article
    1. ] ai is future, canada can seize it, globe & mail
    2. ] T-K-W - tech corridor, 

 


# 3 ELI5 artificial intelligence

***  mreddingFormer game developer here, (47 pts top answer)

AI is a broad category, and has even broader application. All the different types of AI can be used in video game, though they rarely all are. The most common AI in video games, just to get this out of the way and answer your question about thinking machines, uses what is called a decision tree. A decision tree is a graph of questions with canned responses. These trees can be quite elaborate, so you can have quite a convincing AI in video games. The benefit for games is they are fast and explicit in their behavior - because developers want to deliver a consistent, well defined experience.

Lots of AI are mere algorithms to make things look like there's some intelligence where there really isn't. Flocking algorithms, for example, are useful for swarms, where members of the swarm all follow a leader, which is driven by any sort of AI you want. Another algorithm is A* (A-Star) and the like. These are algorithms for traversing graphs, as in mathematics, and we use them in games for units to "path", or get from A to B across a map. A* is interesting because the terrain and environment can give weighted values, making some paths more desirable than others. Walking over lava, for example, may be "more expensive" than walking over grass...

A bit more sophisticated, and closer to your answer are genetic algorithms. Some people debate whether this is true AI or yet another mere algorithm, I lean toward the former. A "genetic sequence" of bytes are tied to outputs. The sequence can be started however you like, often randomized. The sequence drives the output, and the success is measured by a fitness function. The most successful sequences are mixed, and then mutated (changed, grown, shrunk) to make the next generation. The next generation is run against it's parents to see if progress is made, otherwise the parents breed again. Just like evolution, this AI is blind. These algorithms are great for generationally approaching a solution. It may not be the perfect solution, but it will be close. These have been use in Real-Time Strategy games, to designing jet engines, to working towards a cure for Alzheimer's.

But to finally get at what you want: neural nets. I've written these in college and they're surprisingly simple. You're simulating a neuron. Each has an input, some number between 0 and 1. The neuron itself is a weight, between 0 and 1, and a number of outputs. The neurons are connected, outputs to inputs; at the head, something that translates raw data into an input value; at the tail, the output value is translated into some behavior. Input could be a pixel color, output could be left for 0, right for 1, and everything in between. The math is easy, the sum of inputs times the weight, effectively. By using a bit more complicated math, the weight can change relative to the value of the input. This is the learning process.

And it takes surprisingly few neurons to simulate rather complicated behavior. The more you use, the finer and more nuanced the output can be - akin to a kind of resolution.

 


g?= 'categorize article titles'

- r# # belgium ?ai based ? - AUTOMATIC CATEGORIZATION OF MAGAZINE ARTICLES - http://wwwis.win.tue.nl/infwet99/proceedings/moens.html

- r# # excel - 

- r# # - https://www.r-bloggers.com/text-mining-in-r-automatic-categorization-of-wikipedia-articles/

g? = 'ai to categorize sentences'

- r# wit.ai (facebook company) input:text, return:structured data(json)  VeryCool demo, - voice control a house, lights on/off, tv on/off, ...

Details Photos Edit more

Details

ID: 6649

NAME: CREATE-article

DESCRIPTION: ] # # - CREATE-article# # - ai - a PRIMER on artificial intelligence, deep learning, machine learning, neural networks, the singularity (Art# 3036)

START DATE TIME: 2016-12-13 13:24:05

EST DURATION: 01:00:00

END DATE TIME: 2016-12-13 14:24:05

STATUS:

PRIORITY: -5

OWNER ID: 1

Content Photos Edit more

photos

photos for this task

actions

Agenda Email task SMS task Priorities