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

Interactive Codelab on machine learning apis of...

Interactive Codelab on machine learning apis of GCP

smit thakkar

March 08, 2017
Tweet

More Decks by smit thakkar

Other Decks in Programming

Transcript

  1. Agenda • What is machine learning? • How does neural

    networks works? • Proof: Machine learning is not rocket science!!!! • Introduction to Google Cloud Platform • Introduction to Google Cloud Shell • Detect Objects, Faces, and Landmarks in Images with the Cloud Vision API • Proficient Entity and Sentiment Analysis with the Natural Language API • Speech to Text Transcription with the Cloud Speech API • Your Choice!
  2. Without ML def detect_colors(image): # lots of code def detect_edges(image):

    # lots of code def analyze_shapes(image): # lots of code def guess_texture(image): # lots of code def define_fruit(image): # lots of code def handle_probability(image): # lots of code
  3. 1. Linear Regression 2. Logistic Regression 3. Decision Tree 4.

    SVM 5. Naive Bayes 6. KNN 7. K-Means 8. Random Forest 9. Dimensionality Reduction Algorithms 10. Gradient Boost & Adaboost Tons of machine learning algorithms
  4. • To understand Neural Networks you need to understand good

    Math • To run Neural Networks at scale you need costly GPUs • To Train Neural Net you need to have lot of training data • And Perfect model requires lot of reiteration Neural Networks: the scalable solution
  5. Q/A