MACHINE LEARNING.

Slides:



Advertisements
Similar presentations
Albert Gatt Corpora and Statistical Methods Lecture 13.
Advertisements

Assuming normally distributed data! Naïve Bayes Classifier.
Artificial Intelligence Austin Luczak, Katie Regin, John Trawinski.
CIS 678 Artificial Intelligence problems deduction, reasoning knowledge representation planning learning natural language processing motion and manipulation.
Text Classification: An Implementation Project Prerak Sanghvi Computer Science and Engineering Department State University of New York at Buffalo.
Random Administrivia In CMC 306 on Monday for LISP lab.
Artificial Intelligence
Introduction to machine learning
Statistical Natural Language Processing. What is NLP?  Natural Language Processing (NLP), or Computational Linguistics, is concerned with theoretical.
Artificial Intelligence
CS206Evolutionary Robotics “Cogito ergo sum.”. CS206Evolutionary Robotics “Cogito ergo sum.” “I think, therefore I am.” “Do I exist?” “There is something.
Artificial Intelligence
Introduction to Machine Learning MSE 2400 EaLiCaRA Spring 2015 Dr. Tom Way Based in part on notes from Gavin Brown, University of Manchester.
MACHINE LEARNING 張銘軒 譚恆力 1. OUTLINE OVERVIEW HOW DOSE THE MACHINE “ LEARN ” ? ADVANTAGE OF MACHINE LEARNING ALGORITHM TYPES  SUPERVISED.
Artificial Intelligence & Computers
Bayesian networks Classification, segmentation, time series prediction and more. Website: Twitter:
Data Mining Chapter 1 Introduction -- Basic Data Mining Tasks -- Related Concepts -- Data Mining Techniques.
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.
Data Mining: Classification & Predication Hosam Al-Samarraie, PhD. Centre for Instructional Technology & Multimedia Universiti Sains Malaysia.
1 CSC 8520 Spring Paula Matuszek Kinds of Machine Learning Machine learning techniques can be grouped into several categories, in several ways: –What.
Empirical Research Methods in Computer Science Lecture 7 November 30, 2005 Noah Smith.
1 Generative and Discriminative Models Jie Tang Department of Computer Science & Technology Tsinghua University 2012.
Learning from observations
Chapter 5: Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization DECISION SUPPORT SYSTEMS AND BUSINESS.
Part II: Artificial Intelligence as Representation and Search
Course Instructor: K ashif I hsan 1. Chapter # 1 Kashif Ihsan, Lecturer CS, MIHE2.
Natural intelligence Artificial intelligence (AI) History of AI Characteristics of AI system AI tasks AI roots and applications.
1 The main topics in AI Artificial intelligence can be considered under a number of headings: –Search (includes Game Playing). –Representing Knowledge.
Advanced Analytics on Hadoop Spring 2014 WPI, Mohamed Eltabakh 1.
Artificial Intelligence 8. Supervised and unsupervised learning Japan Advanced Institute of Science and Technology (JAIST) Yoshimasa Tsuruoka.
Machine Learning Extract from various presentations: University of Nebraska, Scott, Freund, Domingo, Hong,
Intelligent Database Systems Lab 國立雲林科技大學 National Yunlin University of Science and Technology Mining Logs Files for Data-Driven System Management Advisor.
ARTIFICIALINTELLIGENCE ARTIFICIAL INTELLIGENCE EXPERT SYSTEMS.
يادگيري ماشين Machine Learning Lecturer: A. Rabiee
Machine Learning in CSC 196K
Introduction to Machine Learning © Roni Rosenfeld,
Reinforcement Learning for Mapping Instructions to Actions S.R.K. Branavan, Harr Chen, Luke S. Zettlemoyer, Regina Barzilay Computer Science and Artificial.
BAYESIAN LEARNING. 2 Bayesian Classifiers Bayesian classifiers are statistical classifiers, and are based on Bayes theorem They can calculate the probability.
Network Management Lecture 13. MACHINE LEARNING TECHNIQUES 2 Dr. Atiq Ahmed Université de Balouchistan.
First Lecture of Machine Learning Hung-yi Lee. Learning to say “yes/no” Binary Classification.
Overview of Artificial Intelligence (1) Artificial intelligence (AI) Computers with the ability to mimic or duplicate the functions of the human brain.
Brief Intro to Machine Learning CS539
Big data classification using neural network
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Machine Learning with Spark MLlib
Introduction to Machine Learning
Machine Learning for Computer Security
Introduction to Classification & Clustering
Information Organization: Overview
Artificial Intelligence, P.II
Artificial Intelligence
Intro to Machine Learning
Data Mining 101 with Scikit-Learn
Machine Learning Ali Ghodsi Department of Statistics
Vincent Granville, Ph.D. Co-Founder, DSC
What is Pattern Recognition?
Machine Learning Week 1.
Basic Intro Tutorial on Machine Learning and Data Mining
Term Definition Examples Data Science Statistics with large data sets
3.1.1 Introduction to Machine Learning
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Somi Jacob and Christian Bach
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Artificial Intelligence
Information Organization: Overview
Automatic Handwriting Generation
Machine Learning overview Chapter 18, 21
Azure Machine Learning
Machine Learning in Business John C. Hull
1 What do you think AI is? AI, difficult to define
Presentation transcript:

MACHINE LEARNING

What is AI ? Artificial Intelligence is the branch of computer science concerned with making computers behave like humans. The term was coined in 1956 by John McCarthy at the Massachusetts Institute of Technology.

Earlier developments in AI Turing’s Test Dartmouth Conference 1956  The event which led to the birth of AI ,Organised by Marvin Minsky, John McCarthy and two senior scientists: Claude Shannon and Nathan Rochester of IBM. “Every aspect of learning or any other feature of intelligence can be so precisely described that a machine can be made to simulate it"

Learning from experience Machine Learning A branch of artificial intelligence , concerned with the construction and study of systems that can learn from data Programs that can automatically improve their performance through experience without explicit programming Focuses on the development of computer programs that can teach themselves to grow and change when exposed to new data. Learning from experience

How it Works?

The Concept of Learning in a MLS Learning = Improving with experience at some task Improve over task T With respect to performance measure P Based on experience E

Machine Learning Techniques Classification : Predict class from observations. Clustering: Group observations into “meaningful” groups. Regression (prediction): Predict value from observations.

Classification Classify a document into a predefined category. Documents can be text, images Popular one is Naïve Bayes Classifier. Steps: Train the program(Building a model) using a training set with a category for e.g. sports, news,.. Classifier will compute probability for each word, the probability that it makes a document belong to each of the considered categories. 2. Test with a test data set against this model.

Clustering Clustering is the task of grouping a set of objects in such a way that the objects in the same group ( called a cluster) are more similar to each other. Objects are not predefined. For e.g. these keywords. “men’s shoe” “women’s shoe” “women’s t-shirt” “men’s t-shirt” Can be clustered into 2 categories “shoe” and “t-shirt” or “men” and “women”

Regression It is a measure of the relation between the mean value of one variable (e.g. output) and corresponding values of other variables(e.g. time and cost) Regression analysis is a statistical process for estimating the relationships among variables. Regression means to predict the output value using training data.

Where it is used?

Spam E-mail detection

Voice-Assistant softwares

AI in Gaming