M. Sc. (Artificial Intelligence and Machine Learning)

Similar documents
M. Sc. (Artificial Intelligence and Machine Learning)

IMAGE ANALYSIS, CLASSIFICATION, and CHANGE DETECTION in REMOTE SENSING

Introduction to optimization methods and line search

Image Analysis, Classification and Change Detection in Remote Sensing

A Brief Look at Optimization

CLASSIFICATION AND CHANGE DETECTION

Feature Extraction and Image Processing, 2 nd Edition. Contents. Preface

APPLIED OPTIMIZATION WITH MATLAB PROGRAMMING

CHAPTER 1 Introduction 1. CHAPTER 2 Images, Sampling and Frequency Domain Processing 37

Lecture 20: Neural Networks for NLP. Zubin Pahuja

Deep Learning. Visualizing and Understanding Convolutional Networks. Christopher Funk. Pennsylvania State University.

Introduction to Optimization Problems and Methods

Image Processing, Analysis and Machine Vision

Contents. I Basics 1. Copyright by SIAM. Unauthorized reproduction of this article is prohibited.

Natural Language Processing CS 6320 Lecture 6 Neural Language Models. Instructor: Sanda Harabagiu

Improving the way neural networks learn Srikumar Ramalingam School of Computing University of Utah

5 Machine Learning Abstractions and Numerical Optimization

Fundamentals of Digital Image Processing

ImageNet Classification with Deep Convolutional Neural Networks

INTRODUCTION TO LINEAR AND NONLINEAR PROGRAMMING

Index. Umberto Michelucci 2018 U. Michelucci, Applied Deep Learning,

Code Mania Artificial Intelligence: a. Module - 1: Introduction to Artificial intelligence and Python:

Optimization. Industrial AI Lab.

CS 179 Lecture 16. Logistic Regression & Parallel SGD

Deep Learning and Its Applications

Introduction to Optimization

Classifying Depositional Environments in Satellite Images

Data Mining: Concepts and Techniques. Chapter 9 Classification: Support Vector Machines. Support Vector Machines (SVMs)

Keras: Handwritten Digit Recognition using MNIST Dataset

Introduction to Data Science. Introduction to Data Science with Python. Python Basics: Basic Syntax, Data Structures. Python Concepts (Core)

COMP 551 Applied Machine Learning Lecture 16: Deep Learning

What is machine learning?

David G. Luenberger Yinyu Ye. Linear and Nonlinear. Programming. Fourth Edition. ö Springer

Deep Learning with Tensorflow AlexNet

Digital Image Processing

Neural Networks. CE-725: Statistical Pattern Recognition Sharif University of Technology Spring Soleymani

The Mathematics Behind Neural Networks

COMS 4771 Support Vector Machines. Nakul Verma

Motivation. Problem: With our linear methods, we can train the weights but not the basis functions: Activator Trainable weight. Fixed basis function

CS570: Introduction to Data Mining

COMPUTATIONAL INTELLIGENCE (INTRODUCTION TO MACHINE LEARNING) SS18. Lecture 2: Linear Regression Gradient Descent Non-linear basis functions

CS229 Final Project: Predicting Expected Response Times

Optimization. 1. Optimization. by Prof. Seungchul Lee Industrial AI Lab POSTECH. Table of Contents

Neural Networks (pp )

2: Image Display and Digital Images. EE547 Computer Vision: Lecture Slides. 2: Digital Images. 1. Introduction: EE547 Computer Vision

Lecture 12: convergence. Derivative (one variable)

Large-Scale Lasso and Elastic-Net Regularized Generalized Linear Models

Polytechnic University of Tirana

Machine Learning. Chao Lan

MACHINE LEARNING CLASSIFIERS ADVANTAGES AND CHALLENGES OF SELECTED METHODS

ECE 5470 Classification, Machine Learning, and Neural Network Review

Machine Learning With Python. Bin Chen Nov. 7, 2017 Research Computing Center

Convex and Distributed Optimization. Thomas Ropars

Deep Learning. Vladimir Golkov Technical University of Munich Computer Vision Group

All lecture slides will be available at CSC2515_Winter15.html

Tutorial on Machine Learning Tools

Convolutional Neural Networks

Classification Lecture Notes cse352. Neural Networks. Professor Anita Wasilewska

Theoretical Concepts of Machine Learning

Contents I IMAGE FORMATION 1

Deep Learning for Computer Vision II

Final Exam Study Guide

Neural Networks and Deep Learning

Constrained and Unconstrained Optimization

Neural Networks. Single-layer neural network. CSE 446: Machine Learning Emily Fox University of Washington March 10, /10/2017

Applying Supervised Learning

Efficient Algorithms may not be those we think

Pre-Requisites: CS2510. NU Core Designations: AD

Visual Tracking. Image Processing Laboratory Dipartimento di Matematica e Informatica Università degli studi di Catania.

Deep Learning: Image Registration. Steven Chen and Ty Nguyen

Machine Vision: Theory, Algorithms, Practicalities

CPSC 340: Machine Learning and Data Mining. Principal Component Analysis Fall 2016

Dynamic Routing Between Capsules

An experimental study of human action recognition system using machine learning

Image Moderation Using Machine Learning

Class 6 Large-Scale Image Classification

ECS289: Scalable Machine Learning

INTRODUCTION TO DEEP LEARNING

Machine Learning. The Breadth of ML Neural Networks & Deep Learning. Marc Toussaint. Duy Nguyen-Tuong. University of Stuttgart

Data Mining Chapter 8: Search and Optimization Methods Fall 2011 Ming Li Department of Computer Science and Technology Nanjing University

Perceptron: This is convolution!

The exam is closed book, closed notes except your one-page cheat sheet.

CS 523: Multimedia Systems

Keras: Handwritten Digit Recognition using MNIST Dataset

IST 597 Foundations of Deep Learning Fall 2018 Homework 1: Regression & Gradient Descent

Today. Golden section, discussion of error Newton s method. Newton s method, steepest descent, conjugate gradient

Gradient Descent. Wed Sept 20th, James McInenrey Adapted from slides by Francisco J. R. Ruiz

Deep Learning With Noise

Image processing and features

Machine Learning: Think Big and Parallel

Machine Learning to Select Best Network Access Point

The exam is closed book, closed notes except your one-page (two-sided) cheat sheet.

PATTERN CLASSIFICATION AND SCENE ANALYSIS

Application questions. Theoretical questions

Tested Paradigm to Include Optimization in Machine Learning Algorithms

An Exploration of Computer Vision Techniques for Bird Species Classification

Digital Image Processing COSC 6380/4393

Matrix Computations and " Neural Networks in Spark

IT Digital Image ProcessingVII Semester - Question Bank

^ Springer. Computational Intelligence. A Methodological Introduction. Rudolf Kruse Christian Borgelt. Matthias Steinbrecher Pascal Held

Transcription:

Course Name: Advanced Python Course Code: MSCAI 122 This course will introduce students to advanced python implementations and the latest Machine Learning and Deep learning libraries, Scikit-Learn and TensorFlow. The course will be hands on with major focus on practical implementation of concepts. The course will have two mini projects to help the students master the concepts. 1. Introductory course in Python 1. Review of Important Python Concepts [5%] Classes, String, Tuples, Lists, Dictionaries, sorting, handling exceptions, using ipython 2. Machine Learning Algorithms with Scikit-learn [10%] Pandas Library, Using Scikit-Learn for Logistic Regression, Support Vector Machines, Building Neural Networks, 3. Introduction to Tensor Flow [30%] Concept of Computational Graph and Nodes, Virtual Environment and Anaconda, Installing TensorFlow with GPU support on a Linux System, TF Datatypes, Placeholders, TF Variables, TF Session, Softmax, One Hot Encoding, Dropout, building hidden layers, Batching, Stochastic Gradient Descent, Building an Optimizer, Training and displaying results 4. Building a Neural Network with Tensor Flow [5%] Using inbuilt TensorFlow functionality to build a Neural Network and train on MNIST Dataset for classification 5. Practical Implementation [50%] Mini Project on Machine Learning Application using Scikit-Learn, Mini Project on TensorFlow implementation for a classification problem Reference Books: 1. Python Machine Learning, Sebastian Raschka 2. Getting Started with TensorFlow, Giancarlo Zaccone

Course Name: Introduction to Computer Vision Course Code: MSCAI 124 A.I. has major applications in Computer Vision, especially in object detection, recognition & classification. This course introduces the student to the fundamentals of Image processing and Computer Vision to provide sufficient background so that the student can then tackle the hard problems in later courses. 1. Introductory course in Linear Algebra 2. Introductory course in Calculus 3. Introductory course in Probability 1. Introduction [20%] Overview, Smoothing, Image Morphology, Flood Fill, Resize, Image Pyramids, Thresholding operation 2. Image Transforms [30%] Convolution, Gradients and Sobel Derivatives, Laplace, Canny & Hough Transforms, Remap, Stretch, Shrink, Warp, and Rotate, Discrete Fourier Transform (DFT), Discrete Cosine Transform (DCT), Integral Images, Distance Transform, Histogram Equalization 3. Image Parts and Segmentation [20%] Parts and Segments, Background Subtraction, Watershed Algorithm, Image Repair by Inpainting, Mean-Shift Segmentation, Delaunay Triangulation, Voronoi Tessellation. 4. Tracking and Motion [20%] The Basics of Tracking, Corner Finding, Subpixel Corners, Invariant Features, Optical Flow, Mean-Shift & Camshift Tracking, Motion Templates, Estimators 5. Camera Models and Calibration [10%] Developing Camera Model, Calibration, Un-distortion, Putting Calibration Together, Rodrigues Transform Reference Books: 1. Image Processing: Analysis and Machine Vision, Sonka & Hlavac 2. Digital Image Processing, Gonzalez

Course Name: Introduction to Machine Learning Course Code: MSCAI 123 Introduce the concept of learning patterns from data and develop a strong theoretical foundation for understanding state of the art Machine Learning algorithms. This course is broad in scope and gives the student a holistic understanding of the subject. 4. Undergraduate level course in Linear Algebra 5. Undergraduate level course in Calculus 1. Introduction [5%] Idea of Machines learning from data, Classification of problem Regression and Classification, Supervised and Unsupervised learning 2. Linear Regression [15%] Model representation for single variable, Single variable Cost Function, Gradient Decent for Linear Regression, Multivariable model representation, Multivariable cost function, Gradient Decent in practice, Normal Equation and non-invertibility 3. Logistic Regression [15%] Classification, Hypothesis Representation, Decision Boundary, Cost function, Advanced Optimization, Multi-classification (One vs All), Problem of Overfitting, Regularization 4. Neural Networks [20%] Non-linear Hypothesis, Biological Neurons, Model representation, Intuition for Neural Networks, Multiclass classification, Cost Function, Back Propagation Algorithm, Back Propagation Intuition, Weights initialization, Neural Network Training 5. Support Vector Machines [15%] Optimization Objective, Large Margin Classifiers, Kernels, SVM practical considerations 6. Unsupervised learning [20%] Unsupervised learning introduction, k-means Algorithm, Optimization objective, Random Initialization, Choosing number of clusters

7. Recommender Systems [10%] Problem Formulation, Content based recommendations, Collaborative Filtering, Vectorization, Implementation details. Reference Books: 1. Machine Learning, Tom M. Mitchell 2. Building Machine Learning Systems with Python, Richert & Coelho

Course Name: Numerical Optimization Course Code: MSCAI 121 To teach the student fundamental concepts of optimization both from the point of view of theory as well as practical implementation of algorithms relevant to Machine Learning applications. 6. Undergraduate level course in Linear Algebra 7. Undergraduate level course in Multivariable Calculus 8. Review of Multivariable Calculus [10%] Multivariable functions, Partial Derivatives, Total Derivative, Vector Functions, Gradient, Physical interpretation of Gradient, Existence of Minimum and a Maximum, Continuity of Functions, Taylor s Theorem, Convex Functions 9. Optimization Problem Formulation [10%] Statement of an Optimization problem, Historical development, Classification of Optimization problems and techniques, Single variable optimization problem, Iterative algorithmic approach 10. One Dimensional Unconstrained Optimization [10%] Unimodality and bracketing, Fibonacci Method, Golden Section Method, Line search 11. Unconstrained Optimization [30%] Necessary and Sufficient conditions for optimality, Convexity, Steepest Descent Method, Hessian Matrix, Conjugate Gradient Method, Newton s Method, Quasi-Newton Method, Approximate Line Search 12. Constrained Optimization [20%] Necessary conditions for optimality, sufficient conditions for optimality, sensitivity of solution, Sequential Quadratic Programming, Duality, Exterior penalty functions, interior penalty functions 13. Direct Search methods [20%] Hooke-Jeeves Pattern Search, Powell s Methods of Conjugate directions, Nelder-Mead s Simplex methods, Simulated Annealing, Genetic Algorithms

Reference Books: a) Optimization Concepts and Applications in Engineering, Belegundu b) Engineering Optimization, 2 nd Edition, Ravindran & Reklaits c) Practical Methods of Optimization, R. Fletcher