1 / 61

Machine Learning, Pattern Recognition, Data Mining

Artificial Intelligence. Machine Learning, Pattern Recognition, Data Mining. Dae-Won Kim. School of Computer Science & Engineering Chung-Ang University. AI Scope. 1. Search-based optimization techniques for real-life problems Hill climbing, Branch and bound, A*, Greedy algorithm

kayef
Télécharger la présentation

Machine Learning, Pattern Recognition, Data Mining

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Artificial Intelligence Machine Learning, Pattern Recognition, Data Mining Dae-Won Kim School of Computer Science & Engineering Chung-Ang University

  2. AI Scope 1. Search-based optimization techniques for real-life problems • Hill climbing, Branch and bound, A*, Greedy algorithm • Simulated annealing, Tabu search, Genetic algorithm 2. Reasoning: Logic, Inference, and knowledge representation • Logical language: Syntax and Semantics • Inference algorithm: Forward/Backward chaining, Resolution, and Expert System 3. Machine Learning/ Pattern Recognition/ Data Mining • Classification: Bayesian algorithm, Nearest-neighbor algorithm, Neural network • Clustering: Hierarchical algorithm, K-Means algorithm • 4. Uncertainty based on Probability theory • 5. Planning, Scheduling, Robotics, and Industry Automation

  3. Have you ever heard of Big Data?

  4. Progress in digital data acquisition and storage technology has resulted in the growth of huge databases.

  5. Data mining is the extraction of implicit, previously unknown, and potentially useful information from data.

  6. We build algorithms that sift through databases automatically, seeking patterns.

  7. Strong patterns, if found, will likely generalize to make accurate predictions on future data.

  8. Algorithms need to be robust enough to cope with imperfect data and to extract patterns that are inexact useful.

  9. Machine learning provides the technical basis of data mining.

  10. We will study simple machine learning methods, looking for patterns in data.

  11. People has been seeking patterns in data since human life began. e.g., Samsung Galaxy: Samsung Pay, Managers in Samsung want to find consuming patterns of users so that it’d provide personalized services.

  12. In data mining, computer algorithm is solving problems by analyzing data in databases.

  13. Data mining is defined as the process of (knowledge) discovering patterns in data.

  14. Data mining is defined as the process of (knowledge) discovering patterns in data.

  15. We start with a simple example.

  16. Q: Tell me the name of this fish.

  17. Algorithm ??

  18. We have 100 fishes, and measured their lengths. (e.g., fish: x=[length]t)

  19. Our algorithm can measure the length of a new fish, and estimate its label.

  20. Yes, it is a typical prediction task through classification technique. But, it is often inexact and unsatisfactory.

  21. Next, we measured their lightness. (e.g., fish: x=[lightness])

  22. Lightness is better than length.

  23. Let us use both lightness and width. (e.g., fish: x=[lightness, width])

  24. Each fish is represented a point (vector) in 2D x-y coordinate space.

  25. Everything is represented as N-dimensional vector in coordinate space.

  26. The world is represented as matrix

  27. We assume that you have learned the basic concepts of linear algebra.

  28. The objective is to find a line that effectively separates two groups.

  29. How to find the line using a simple Math from high school?

  30. We can build a complex nonlinear line to provide exact separation.

  31. The formal procedure is given as:

  32. This shows a predictive task of data mining, often called as pattern classification/ recognition/ prediction.

  33. The act of taking in raw data and making an action based on the category of the pattern.

  34. We build a machine that can recognize or predict patterns.

  35. Q: How to represent and classify texts? • Opinion mining • Sentiment analysis

  36. Another famous task of data mining is a descriptive task. Cluster analysis is the well-known group discovery algorithm.

  37. We will experience the basic issues in the prediction task (pattern classification) in forthcoming weeks.

  38. Some terms should be defined.

  39. Given training data set : ‘n x d’ pattern/data matrix:

  40. Given training data set : ‘n x d’ pattern/data matrix: ‘d’ features (attributes, variables, dimensions, fields) ‘n’ patterns (objects, observations, vectors, records)

  41. Classification • General description • Supervised pattern classification • Labeled training patterns, the groups are known a priori • Constructs rules for classifying new data into the known groups • Specific terms • Pattern=object=observation is represented as a feature vector • Distance measure for numeric and categorical data • Training set (answer database) and test set (new observation) • Prediction performance by accuracy, sensitivity, specificity, … • ex) Bayesian classifier, Nearest-neighbor classifier, SVM, NN, LDA, …

  42. Each pattern is represented as a feature vector.

  43. The training pattern matrix is stored in a file or database.

  44. Given labeled training patterns, the class groups are known a priori.

More Related