Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introduction To Machine Learning

Introduction To Machine Learning

Talks about Machine Learning and Artificial Intelligence

Hyperjump Tech

April 16, 2024
Tweet

More Decks by Hyperjump Tech

Other Decks in Technology

Transcript

  1. Why Machine Learning? • Series Startup Netflix • My wife

    is on postgraduate study about material physics using ML • 1on1 mentorship target • Prakerja project about Course Recommendation
  2. What is Machine Learning Machine learning (ML) is the study

    of computer algorithms that improve automatically through experience and by the use of data. Mitchell, Tom (1997). Machine Learning. New York: McGraw Hill. ISBN 0-07-042807-7. OCLC 36417892
  3. Step 1: Define your machine learning problem Binary classification Multi-class

    classification Regression Catalog organization Generative model
  4. Step 2: Acquire, get to know, & prepare your data

    Data types: • Tabular • Text • Sound • Image Where to get the data?: • Use a ready-to-use dataset • Extract the data by yourself Correct and Normalize data:
  5. Step 3: Train your model Features Things that influence prediction

    result Example: 1. demographics, location, education history, employment history, remaining credit 2. username, anime_id, and my_score
  6. Step 3: Train your model Model • A model maps

    examples to predicted labels • It is defined by weights that are learned during the training process • Once trained, you can use it to make predictions about data that it has never seen before
  7. Step 3: Train your model Train Steps: 1. Separate data

    to be trained and to be evaluated 2. Iterate training by modifying feature and/or modify how to train your dragon (epoch or learning rate) Our model does not get smart right away - it needs to be “trained” Using available Library: - CoreML - fastText