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

prerequisites and why Math for machine learning

uday kiran
January 25, 2020

prerequisites and why Math for machine learning

Presented as a talk at CHAI(coffee with AI) Hyderabad #1 hosted by learn.machinelearning Instagram page community.

I talked on what are the prerequisites and why mathematics is important for machine learning and how to get started.

uday kiran

January 25, 2020
Tweet

More Decks by uday kiran

Other Decks in Technology

Transcript

  1. Topics • What are the prerequisites? • Do I need

    to learn MATH? • What approach to follow?
  2. Why Python??? • Simple and consistent • Easy to learn

    • Easily readable syntax • Fewer lines of code • Understandable by humans • Helps you to focus on problem solving • Write reliable code
  3. Why Python??? • A great library ecosystem • Hundreds of

    libraries • Save time • well-structured and well-tested • Examples • Scikit learn • Pandas • Keras • TensorFlow • Etc...
  4. Why Python??? • Flexibility • OOP or scripting • No

    need to recompile the source code • Can combine Python and other languages • Different programming styles • Flexibility factor decreases the possibility of errors
  5. Why Data analysis??? (You can answer unknown questions) 80% of

    the work will be with the data Getting data Exploring & Visualizing data Cleaning data
  6. Why Data analysis??? • Exploring Data • Understand the data

    first and know your goal • It gives hints for Data Cleaning • It give ideas for feature engineering • Data size? No of features? Type of a feature? Target variable? • Data distribution plots • Correlation plots
  7. Why Data analysis??? • Data cleaning • One of the

    typical challenge is feeding the right data • Better data beats fancier algorithms • garbage in gets you garbage out. • Goal of data cleaning is to identify and remove errors like • Missing data • Outliers • Bad data and duplicates • Irrelevant features • Standardization
  8. Why Statistics and Probability??? Probabilitydeals with predicting the likelihood of

    future events, while statistics involves the analysis of the frequency of past events. Collection of tools used to answer important questions about data Inferential statistics and descriptive statistical methods Descriptive statistics will help to gain knowledge from the raw data Inferential statistics help to draw conclusions from the data Difference between statistical models and machine learning
  9. Why Linear algebra??? • Helps you to understand the notations

    and formulas • Paper to code • Matrix factorization • Linear algebra = linear equations = matrices + vectors
  10. How to get started? • Adjust Mindset • Beginner •

    Experienced • Academic • Industry