24
ECE471-571 – Lecture 1 Introduction 08/20/15

ECE471-571 – Lecture 1

Embed Size (px)

DESCRIPTION

ECE471-571 – Lecture 1. Introduction 08/20/14. Statistics are used much like a drunk uses a lamppost: for support, not illumination -- Vin Scully. Terminology. Feature Sample Dimension Pattern classification Pattern recognition (PR). PR = Feature Extraction + Pattern Classification. - PowerPoint PPT Presentation

Citation preview

Page 1: ECE471-571 – Lecture 1

ECE471-571 – Lecture 1

Introduction08/20/15

Page 2: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 2

Statistics are used much like a drunk uses a lamppost: for support, not illumination

-- Vin Scully

Page 3: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 3

Terminology

FeatureSampleDimension Pattern classificationPattern recognition (PR)

Page 4: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 4

PR = Feature Extraction + Pattern Classification

Feature extractionFeature

extractionPattern

classificationPattern

classificationInputmedia

Featurevector

Recognitionresult

Need domain knowledge

Page 5: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 5

An Example

fglass.dat forensic testing of glass collected by

German on 214 fragments of glass Data file has 10 columns

RI – refractive index Na – weight of sodium oxide(s) … Type

RI Na Mg Al Si K Ca Ba Fe type1.52101 13.64 4.49 1.10 71.78 0.06 8.75 0.00 0.00 11.51761 13.89 3.60 1.36 72.73 0.48 7.83 0.00 0.00 1

Page 6: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 6

Different Approaches - Overview

Supervised classification Parametric Non-parametric

Unsupervised classification clustering

Trainingset

Testingset

Known classification

decision rule

derive apply

Unknownclassification

Data set

Page 7: ECE471-571 – Lecture 1

Pattern Classification

Statistical Approach Non-Statistical Approach

Supervised Unsupervised

Basic concepts: Distance Agglomerative method

Basic concepts: Baysian decision rule (MPP, LR, Discri.)

Parameter estimate (ML, BL)

Non-Parametric learning (kNN)

LDF (Perceptron)

k-means

Winner-take-all

Kohonen maps

Dimensionality Reduction FLD, PCA

Performance Evaluation ROC curve (TP, TN, FN, FP) cross validation

Classifier Fusion majority voting NB, BKS

Stochastic Methods local opt (GD) global opt (SA, GA)

Decision-tree

Syntactic approach

NN (BP, Hopfield, DL)

Support Vector Machine

Page 8: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 8

Example – Face Recognition

Page 9: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 9

Landmark file structure

Lm1: col-of-lm1 row-of-lm1Lm2: col-of-lm2 row-of-lm2 . . . . . . . . .Lm35: col-of-lm35 row-of-lm35Line36 col-of-image row-of-image

column 1 column 2

Page 10: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 10

Example - Network Intrusion Detection

KDD Cup 99Features basic features of an individual TCP connection,

such as its duration, protocol type, number of bytes transferred and the flag indicating the normal or error status of the connection

domain knowledge 2-sec window statistics 100-connection window statistics

Page 11: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 11

Example - Gene Analysis for Tumor Classification

Early detection of cancerTumor classification Observation of abnormal consequences of tumor

development Physical examination (X-rays) Molecular marker detection

Tumor gene expression profiles: molecular fingerprintChallenge: high dimensionality (in the order of thousands) 16,063 known human genes and expressed

sequence tags

Page 12: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 12

Example - Color Image Compression

Page 13: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 13

Example - Automatic Target Recognition

Suzuki VitaraFord 350Ford 250 Harley Motocycle

Page 14: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 14

Example – Bio/chemical Agent Detection in Drinking Waterx-axis: time (seconds)y-axis: relative fluorescence induction

Page 15: ECE471-571 – Lecture 1

Homework and Projects

Programming Regular projects

C/C++ (major) Matlab or C/C++ (non-major)

Final project (C/C++ or Matlab)

Homework (C/C++ or Matlab)

ECE471/571, Hairong Qi 15

Page 16: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 16

Programming environment

OS –LinuxCompiler – g++Editor – EmacsLanguage – C++

Page 17: ECE471-571 – Lecture 1

Computing resources

Hydra Linux Lab hydra01-25.eecs.utk.edu

ECE471/571, Hairong Qi 17

Page 18: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 18

Programming style

IndentingCommentSpacingSimpleFlexible

Page 19: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 19

Step 1 – Get an account

Get an account on the student serverLogin and change password passwd

Page 20: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 20

Step 2 – Get familiar with linux commands

ls – list filesless xxx – view a readable file (used to quickly browse the file)rm xxx – delete a filemv xxx yyy – rename xxx to yyyemacs – a nice file editormkdir – create a new directorycd xxx – go into a new directoryAccess floppy disk

mcopy source dest mdir a: mdel a:\xxx

Page 21: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 21

Step 3 – Learn to use g++

g++ -o xxx xxx.cpp Matrix.cpp xxx.cpp is the application source code you wrotexxx is the executable application

Learn to use Makefile

Page 22: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 22

Step 4 – Test a sample code

Download the dataset from the “testing datasets” webpage and uncompress it

Use “unzip” to uncompress the .zip file Use “gunzip” to uncompress the .gz file

Download the sample source code (read.cpp) from the course website Download the Matrix library from the course website (Matrix_v1.tar)Test a sample code

Run “make” under the directory “\lib”Run “make” under the directory “\example”Under \example, type ./testMatrix

Page 23: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 23

Step 5 – Understanding the matrix library

Matrix.h declares the private data and defines the member functionsMatrix.cpp implements the member functions

Page 24: ECE471-571 – Lecture 1

ECE471/571, Hairong Qi 24

Step 6 - How to organize the source files

\lib With the .cpp source code with function

implementations Use Makefile to generate a library

\include Header files

\example Test data Use Makefile to generate executables

\data