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

Introduction to Machine Learning

Introduction to Machine Learning

Learn what is Machine Learning and how data is changing the world faster and faster. This is the era of information at the speed of light. Blink and you're gone.

Ricardo Coelho

March 08, 2017
Tweet

More Decks by Ricardo Coelho

Other Decks in Technology

Transcript

  1. How much data? • A LOT!! • Big Data •

    Text, Image, Audio, Video, Database, Spreadsheets • AI, Narrow AI, Deep Learning • Neural Network
  2. How much data? • A LOT!! • Big Data •

    Text, Image, Audio, Video, Database, Spreadsheets • AI, Narrow AI, Deep Learning • Neural Network • Statistics
  3. scikit-learn (sklearn) >>> import numpy as np >>> X =

    np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]]) >>> Y = np.array([1, 1, 1, 2, 2, 2]) >>> from sklearn.naive_bayes import GaussianNB >>> clf = GaussianNB() >>> clf.fit(X, Y) GaussianNB(priors=None) >>> print(clf.predict([[-0.8, -1]])) [1]