What is Artificial Intelligence?

Slides:



Advertisements
Similar presentations
Data Mining Classification: Alternative Techniques
Advertisements

An Overview of Machine Learning
Supervised Learning Recap
Multivariate Methods Pattern Recognition and Hypothesis Testing.
Supervised and Unsupervised learning and application to Neuroscience Cours CA6b-4.
x – independent variable (input)
Classification and risk prediction
CES 514 – Data Mining Lecture 8 classification (contd…)
Optimal Adaptation for Statistical Classifiers Xiao Li.
Learning Programs Danielle and Joseph Bennett (and Lorelei) 4 December 2007.
Hazırlayan NEURAL NETWORKS Radial Basis Function Networks II PROF. DR. YUSUF OYSAL.
B.Ramamurthy. Data Analytics (Data Science) EDA Data Intuition/ understand ing Big-data analytics StatsAlgs Discoveries / intelligence Statistical Inference.
Machine Learning CS 165B Spring Course outline Introduction (Ch. 1) Concept learning (Ch. 2) Decision trees (Ch. 3) Ensemble learning Neural Networks.
Artificial Intelligence Lecture No. 28 Dr. Asad Ali Safi ​ Assistant Professor, Department of Computer Science, COMSATS Institute of Information Technology.
Data Mining Joyeeta Dutta-Moscato July 10, Wherever we have large amounts of data, we have the need for building systems capable of learning information.
Anomaly detection with Bayesian networks Website: John Sandiford.
Machine Learning1 Machine Learning: Summary Greg Grudic CSCI-4830.
Chapter 3 Neural Network Xiu-jun GONG (Ph. D) School of Computer Science and Technology, Tianjin University
Bayesian networks Classification, segmentation, time series prediction and more. Website: Twitter:
CPSC 502, Lecture 15Slide 1 Introduction to Artificial Intelligence (AI) Computer Science cpsc502, Lecture 16 Nov, 3, 2011 Slide credit: C. Conati, S.
Introduction to machine learning and data mining 1 iCSC2014, Juan López González, University of Oviedo Introduction to machine learning Juan López González.
1 SUPPORT VECTOR MACHINES İsmail GÜNEŞ. 2 What is SVM? A new generation learning system. A new generation learning system. Based on recent advances in.
CSC321: Neural Networks Lecture 13: Learning without a teacher: Autoencoders and Principal Components Analysis Geoffrey Hinton.
Data Mining Practical Machine Learning Tools and Techniques Chapter 4: Algorithms: The Basic Methods Section 4.6: Linear Models Rodney Nielsen Many of.
Classification Heejune Ahn SeoulTech Last updated May. 03.
MACHINE LEARNING 8. Clustering. Motivation Based on E ALPAYDIN 2004 Introduction to Machine Learning © The MIT Press (V1.1) 2  Classification problem:
Machine Learning Documentation Initiative Workshop on the Modernisation of Statistical Production Topic iii) Innovation in technology and methods driving.
Principal Component Analysis Machine Learning. Last Time Expectation Maximization in Graphical Models – Baum Welch.
Feature (Gene) Selection MethodsSample Classification Methods Gene filtering: Variance (SD/Mean) Principal Component Analysis Regression using variable.
CSC2515: Lecture 7 (post) Independent Components Analysis, and Autoencoders Geoffrey Hinton.
Radial Basis Function ANN, an alternative to back propagation, uses clustering of examples in the training set.
Neural Networks Demystified by Louise Francis Francis Analytics and Actuarial Data Mining, Inc.
Speech Lab, ECE, State University of New York at Binghamton  Classification accuracies of neural network (left) and MXL (right) classifiers with various.
Feature Selection and Extraction Michael J. Watts
WHAT IS DATA MINING?  The process of automatically extracting useful information from large amounts of data.  Uses traditional data analysis techniques.
WHAT IS DATA MINING?  The process of automatically extracting useful information from large amounts of data.  Uses traditional data analysis techniques.
SUPPORT VECTOR MACHINES Presented by: Naman Fatehpuria Sumana Venkatesh.
SUPERVISED AND UNSUPERVISED LEARNING Presentation by Ege Saygıner CENG 784.
General Information Course Id: COSC6342 Machine Learning Time: TU/TH 1-2:30p Instructor: Christoph F. Eick Classroom:AH301
Data Summit 2016 H104: Building Hadoop Applications Abhik Roy Database Technologies - Experian LinkedIn Profile:
CMPS 142/242 Review Section Fall 2011 Adapted from Lecture Slides.
Machine Learning Supervised Learning Classification and Regression K-Nearest Neighbor Classification Fisher’s Criteria & Linear Discriminant Analysis Perceptron:
Machine Learning Supervised Learning Classification and Regression K-Nearest Neighbor Classification Fisher’s Criteria & Linear Discriminant Analysis Perceptron:
A Brief Introduction to Bayesian networks
Data Mining Practical Machine Learning Tools and Techniques
Machine Learning Fisher’s Criteria & Linear Discriminant Analysis
Semi-Supervised Clustering
Deep Feedforward Networks
Machine Learning Clustering: K-means Supervised Learning
Machine Learning & Deep Learning
LECTURE 11: Advanced Discriminant Analysis
Learning Coordination Classifiers
Neural Networks for Machine Learning Lecture 1e Three types of learning Geoffrey Hinton with Nitish Srivastava Kevin Swersky.
Basic machine learning background with Python scikit-learn
Machine Learning Basics
Overview of Supervised Learning
AV Autonomous Vehicles.
Unsupervised Learning and Autoencoders
CAMCOS Report Day December 9th, 2015 San Jose State University
Machine Learning Week 1.
PCA, Clustering and Classification by Agnieszka S. Juncker
Machine Learning 101 Intro to AI, ML, Deep Learning
Artificial Intelligence Lecture No. 28
The Naïve Bayes (NB) Classifier
Somi Jacob and Christian Bach
Multivariate Methods Berlin Chen
Multivariate Methods Berlin Chen, 2005 References:
Machine Learning – a Probabilistic Perspective
Semi-Supervised Learning
FOUNDATIONS OF BUSINESS ANALYTICS Introduction to Machine Learning
Presentation transcript:

What is Artificial Intelligence? 1956

AI Terminology Supervised Learning: Partitioning data based on labels (input/output pairs) Unsupervised Learning: Partitioning data based on data structure (input only) Reinforcement Learning: Supervised or unsupervised data partitioning based on a reward feedback from environment (input and/or output with reward)

AI terminology SUPERVISED Learning Decision Trees: model of decisions and their possible consequences Naïve Bays Classifier: probabilistic classifier with assumptions between features consequences Least Squares Regression: fitting straight line with minimum distance SUPERVISED Learning Logistic Regression: fitting binomial data using logistic distribution Support Vector Machine: linear hyperplane to separate groups Ensemble Method: weighted vote of prediction from set of classifiers

UNSUPERVISED Learning AI terminology (cont.) Clustering Algorithms: grouping similar objects Principal Component Analysis (PCA): orthogonal transformation to convert a set of possibly correlated variables into linear set of uncorrelated variables UNSUPERVISED Learning Examples: Centroid-based algorithms Connectivity-based algorithms Density-based algorithms Probabilistic Dimensionality Reduction Neural networks / Deep Learning Independent Component Analysis: separating multivariate signals into statistically independent/non-Gaussian subcomponents

REINFORCEMENT Learning AI terminology (cont.) SARSA: State, action, reward, state, action. Reward based Markov decision process policy Monte Carlo: learns from episodes of experience/policies Q-learning: finds optimal policy to maximize reward REINFORCEMENT Learning