SlideShare a Scribd company logo
AGENDA
• About me
• Predictive Analytics
• Amazon Machine Learning (ML)
• Amazon ML – Key Concepts
• Amazon ML – Datasources
• Amazon ML – Models
• Amazon ML – Evaluations
• Amazon ML – Demo
AN INTRO TO AWS MACHINE
LEARNING
PREDICTIVE ANALYTICS
ABOUT ME
NVISIA® Confidential 20162
Naveen VK
• Principal Architect at NVISIA, a regional software development company
• Worked for NVISIA for over 17 years
• Designed and built custom multi-tier applications using Java Enterprise stack for various companies
• Involved in entire application development lifecycle including requirements gathering, architecture, design,
implementation, integration, testing and deployment
• Some clients: ETF - State of WI, American Family, Harley Davidson, Cumulus Media
• Currently working at ETF (Employee Trust Fund)
• Manage pensions, insurance and other benefits for state and local employees
• Involved in multiple projects (5) and currently supporting multiple applications (7)
• Has deep expertise in databases like Oracle (since 1994) and DB2 (since 1999) and with SQL queries and
PL/SQL stored procedures
• 3 fun facts about myself
PREDICTIVE ANALYTICS
What is Predictive Analytics? Some use cases/examples
NVISIA® Confidential 20163
PREDICTIVE ANALYTICS
NVISIA® Confidential 20164
What is it?
• Mining data, using statistical algorithms and machine learning to predict trends or probabilities
• Use historical data and patterns in historical data to predict future
• Create models based on patterns in data to predict the probability of something happening in the future
• The better the model and the training data, the better the prediction
Examples
• Is this email spam?
• Will this product sell?
• How many units of this product will sell?
• Is this product a piece of clothing, a book or a movie?
• What price will this house sell for?
• What will be the temperature here tomorrow?
AMAZON MACHINE LEARNING
(ML)
What is it? When to use it?
NVISIA® Confidential 20165
AMAZON MACHINE LEARNING (ML)
NVISIA® Confidential 20166
• AWS (Amazon Web Service) cloud-based service for predictive analytics
• Use tools and wizards to create machine learning models
• Use simple APIs to obtain predictions for your application
• No need to write custom code or have supporting infrastructure
• Finds patterns in your existing data
• Use models to process new data and generate predictions
When to use ML?
• ML is not a solution for every type of problem
• A target value can be determined by coding simple rules, computations and steps without any data-driven
learning
• Use ML when the rules cannot be programmed easily
• Too many factors
• Too many overlapping rules
• Too much fine tuning of rules
• Use ML when the solution cannot be scaled
• 100s of Millions vs. 100s (Example: manual vs. automated spam filter)
AMAZON ML – KEY CONCEPTS
Terms and concepts
NVISIA® Confidential 20167
AMAZON ML – KEY CONCEPTS
NVISIA® Confidential 20168
Datasources
• Contains metadata associated with data inputs to the ML
• Speadsheets, CSV files, Streaming data, Relational data base
ML Models
• Patterns in data to generate predictions
Evaluations
• Measure the quality of ML models
Batch Predictions
• Multiple data inputs aka batch data
• Asynchronous
Realtime Predictions
• Individual data inputs
• Synchronous
AMAZON ML – DATASOURCES
Details of datasources in Amazon ML
NVISIA® Confidential 20169
AMAZON ML – DATASOURCES
NVISIA® Confidential 201610
• In Amazon ML, a datasource contains only the metadata about the actual input data
• Actual data may be stored in
• Amazon S3 buckets
• Amazon Redshift Databases
• MySQL databases in Amazon Relational Database Service (RDS)
• Amazon Kinesis
• Attributes
• Column headings represent attributes
• Unique
• Required
• Target Attribute
• The data that is being predicted
• Training data has a target attribute that has already been predicted (required in training data)
• Observation
• Single row of data
• Input data
• All observations aka Rows in spreadsheet/csv file or database
AMAZON ML – DATASOURCES CONTINUED
NVISIA® Confidential 201611
• Schema
• All attributes and corresponding data-types of input data
• Location
• Location of input data stored in, say, Amazon S3 bucket
• Row ID
• Attribute flagged to be included in prediction output
• Helps cross-reference the prediction with the observation
• Unique for each observation
• Optional
• Datasource Name
• Human readable name of the datasource
• Optional
• Statistics
• Summary stats for each attribute of input data
• Status
• All attributes and corresponding data-types of input data
AMAZON ML – MODEL
Details of mathematical model in Amazon ML
NVISIA® Confidential 201612
AMAZON ML – MODEL
NVISIA® Confidential 201613
• In Amazon ML, a model finds patterns in data and generates predictions
• Three distinct types of models
• Binary
• Multiclass
• Regression
• Type of model chosen based on the type of target to predict
• Binary Model
• Predicts values that has 1 of 2 states: true/false, 1/0, win/lose, alive/dead, pass/fail, healthy/sick
• Uses industry-wide standard learning algorithm called Binary Logistic Regression Algorithm
• Statistical model used to predict the probability of a binary response based on certain variables
• Examples
• Is this email spam?
• Will this product sell?
• Multiclass Model
• Predicts values that belong to a pre-defined, limited set of states (1 of 3 or more states)
• Uses industry-wide standard learning algorithm called Multinomial Logistic Regression Algorithm
• Examples
• Is this product a book, a movie or apparel?
• Is this movie a thriller, a documentary or a comedy?
AMAZON ML – MODEL
NVISIA® Confidential 201614
• Regression Model
• Predicts a numeric value
• For regression problems
• Uses industry-wide standard learning algorithm called Linear Regression Algorithm
• Statistical model to predict the value of y based on a number of variables x1, x2, x3, etc.
• Examples:
• What will the temperature be tomorrow?
• How many units of this product will sell?
• How much will this house sell for?
• Recipe
• Attributes and attribute transformations available to train the model
• Model size
• In MB
• Directly proportional to patterns stored in model
• Number of passes
• The number of times the datasource is used when training the model
• Regularization
• ML technique to get higher quality models
AMAZON ML – EVALUATIONS
Evaluate the model in Amazon ML
NVISIA® Confidential 201615
AMAZON ML – EVALUATIONS
NVISIA® Confidential 201616
• In Amazon ML, an evaluation measures the quality of the ML model
• Need to evaluate a model to determine if it will do a good job predicting the target on new/future data
• Need training data where target is already predicted to train/evaluate a model
• Max size of training data: 100KB
• Model Insight
• Amazon ML will provide metrics and insights to review accuracy of the model
• Overall success metric of the model
• Visualizations to explore accuracy of model
• Alerts to check validity of evaluation
• Focus on Binary Insights only for this presentation
AMAZON ML – EVALUATIONS – BINARY INSIGHTS
NVISIA® Confidential 201617
• Prediction score
• Actual output of the binary prediction
• Indicates the system’s certainty that the given observation has target value of 1
• Output scores of observations is between 0 & 1
• Default threshold score aka cut-off is 0.5, this can be changed
• Any observation that scores above cut-off is predicted as target=1 and below cut-off is predicted as 0
• Correct predictions
• True Positive (TP)
• Predicted value of target = 1, true value of target = 1
• True Negative (TN)
• Predicted value of target = 0, true value of target = 0
• Incorrect predictions
• False Positive (FP)
• Predicted value of target = 1, true value of target = 0
• False Negative (FN)
• Predicted value of target = 0, true value of target = 1
• Area Under the Curve (AUC)
• Measures the ability of the model to make a correct prediction
• AUC near 1 indicates model is highly accurate (near 0s?)
AMAZON ML – EVALUATIONS – BINARY INSIGHTS – AUC (AWS TUTORIAL)
NVISIA® Confidential 201618
AMAZON ML – DEMO – BINARY MODEL
NVISIA® Confidential 201619
• Demo
• Simple – predicting will this product sell?
• Not so simple – predicting will this person survive?
• Checklist
• Predictive Analytics
• Amazon Machine Learning (ML)
• Amazon ML – Key Concepts
• Amazon ML – Datasources
• Amazon ML – Models
• Amazon ML – Evaluations
• Amazon ML – Demo
• Pricing
• https://aws.amazon.com/machine-learning/pricing/
• Data analysis and model building: @0.42/hr
• Batch predictions: $0.10/nearest 1000 (rounded up to the next 1000)
• Realtime predictions: $0.0001/transaction (rounded to nearest penny)
• S3 Standard storage: $0.03/TB/month
• Questions
THANK YOU FOR COMING
Links:
http://docs.aws.amazon.com/machine-learning/latest/dg/what-is-amazon-machine-learning.html
https://www.kaggle.com/
Contact Info:
Linked-In: Naveen VK
Email: naveen@nvisia.com (work)
naveenvkm@gmail.com (personal)
Github: https://github.com/navnoon23/

More Related Content

PDF
Einführung in Amazon Machine Learning - AWS Machine Learning Web Day
PDF
Real-World Smart Applications with Amazon Machine Learning - AWS Machine Lear...
PDF
An introduction to Machine Learning
PDF
Amazon Machine Learning im Einsatz: smartes Marketing - AWS Machine Learning...
PDF
Amazon Machine Learning #AWSLoft Berlin
PDF
MindsDB - Machine Learning in ClickHouse - SF ClickHouse Meetup September 2020
PDF
Machine Learning for Developers
PDF
#AWSAdTechJP
Einführung in Amazon Machine Learning - AWS Machine Learning Web Day
Real-World Smart Applications with Amazon Machine Learning - AWS Machine Lear...
An introduction to Machine Learning
Amazon Machine Learning im Einsatz: smartes Marketing - AWS Machine Learning...
Amazon Machine Learning #AWSLoft Berlin
MindsDB - Machine Learning in ClickHouse - SF ClickHouse Meetup September 2020
Machine Learning for Developers
#AWSAdTechJP

Similar to Intro to AWS Machine Learning (20)

PDF
Machinelearning dg
PPTX
Presentazione tutorial
PDF
Unleash the Power of ML with AWS | AWS Summit Tel Aviv 2019
PDF
Machine Learning as a Service with Amazon Machine Learning
PPTX
Drive Digital Transformation Using Machine Learning
PPTX
AcademyMachineLearningFoundations-EN-ILT-02.pptx
PDF
Amazon의 머신러닝 솔루션: Fraud Detection & Predictive Maintenance - 남궁영환 (AWS 데이터 사이...
PDF
Innovation Track AWS Cloud Experience Argentina - Democratizing Artificial In...
PDF
[AWS Techshift] Innovation and AI/ML Sagemaker Build-in 머신러닝 모델 활용 및 Marketpl...
PDF
Recomendaciones, predicciones y detección de fraude usando servicios de intel...
PPTX
WhereML a Serverless ML Powered Location Guessing Twitter Bot
PDF
Artificial Intelligence on the AWS Platform
PDF
AWS Cloud Experience CA: Democratizando la Inteligencia Artificial
PDF
Machine Learning for everyone
PPTX
Big Data and Machine Learning on AWS
PDF
Become a Machine Learning developer with AWS (Avril 2019)
PPTX
Applying ML on your Data in Motion with AWS and Confluent | Joseph Morais, Co...
PPTX
AI-ML-Virtual-Internship on new technology
PDF
Artificial intelligence in actions: delivering a new experience to Formula 1 ...
PDF
AWS MLS-C01 Exam Study Notes
Machinelearning dg
Presentazione tutorial
Unleash the Power of ML with AWS | AWS Summit Tel Aviv 2019
Machine Learning as a Service with Amazon Machine Learning
Drive Digital Transformation Using Machine Learning
AcademyMachineLearningFoundations-EN-ILT-02.pptx
Amazon의 머신러닝 솔루션: Fraud Detection & Predictive Maintenance - 남궁영환 (AWS 데이터 사이...
Innovation Track AWS Cloud Experience Argentina - Democratizing Artificial In...
[AWS Techshift] Innovation and AI/ML Sagemaker Build-in 머신러닝 모델 활용 및 Marketpl...
Recomendaciones, predicciones y detección de fraude usando servicios de intel...
WhereML a Serverless ML Powered Location Guessing Twitter Bot
Artificial Intelligence on the AWS Platform
AWS Cloud Experience CA: Democratizando la Inteligencia Artificial
Machine Learning for everyone
Big Data and Machine Learning on AWS
Become a Machine Learning developer with AWS (Avril 2019)
Applying ML on your Data in Motion with AWS and Confluent | Joseph Morais, Co...
AI-ML-Virtual-Internship on new technology
Artificial intelligence in actions: delivering a new experience to Formula 1 ...
AWS MLS-C01 Exam Study Notes
Ad

More from NVISIA (16)

PPTX
Introduction to GoLang
PPTX
The Evolution of Architecture
PDF
Expected Result - A UX Story
PPTX
Antifragile Teams
PPTX
Digital Operations Service Design
PPTX
Executive Briefing: The Why, What, and Where of Containers
PDF
Strengthening Business/IT Relationships
PPTX
Achieving Business Alignment
PPTX
2015 DevOps Breakfast - DevOps in Action
PDF
DAMA Chicago - Ensuring your data lake doesn’t become a data swamp
PPTX
Scaling the Lean Startup in the Enterprise
PPTX
INNOVATION BLUEPRINTS FOR BIMODAL IT
PPTX
Building a Data Talent Pipeline in Southeaster Wisconsin
PPTX
12/2/2014 Milwaukee Agile Presentation: Persuading Your Oganization to be Agile
PPTX
Big Data 2.0 - Milwaukee Big Data User Group Presentation
PPTX
NVISIA Mobile Trends Presentation
Introduction to GoLang
The Evolution of Architecture
Expected Result - A UX Story
Antifragile Teams
Digital Operations Service Design
Executive Briefing: The Why, What, and Where of Containers
Strengthening Business/IT Relationships
Achieving Business Alignment
2015 DevOps Breakfast - DevOps in Action
DAMA Chicago - Ensuring your data lake doesn’t become a data swamp
Scaling the Lean Startup in the Enterprise
INNOVATION BLUEPRINTS FOR BIMODAL IT
Building a Data Talent Pipeline in Southeaster Wisconsin
12/2/2014 Milwaukee Agile Presentation: Persuading Your Oganization to be Agile
Big Data 2.0 - Milwaukee Big Data User Group Presentation
NVISIA Mobile Trends Presentation
Ad

Recently uploaded (20)

PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Approach and Philosophy of On baking technology
PPTX
Cloud computing and distributed systems.
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Encapsulation theory and applications.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
Unlocking AI with Model Context Protocol (MCP)
Chapter 3 Spatial Domain Image Processing.pdf
A Presentation on Artificial Intelligence
Per capita expenditure prediction using model stacking based on satellite ima...
Approach and Philosophy of On baking technology
Cloud computing and distributed systems.
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Dropbox Q2 2025 Financial Results & Investor Presentation
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
“AI and Expert System Decision Support & Business Intelligence Systems”
Encapsulation theory and applications.pdf
Spectral efficient network and resource selection model in 5G networks
Mobile App Security Testing_ A Comprehensive Guide.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Encapsulation_ Review paper, used for researhc scholars
Network Security Unit 5.pdf for BCA BBA.
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy

Intro to AWS Machine Learning

  • 1. AGENDA • About me • Predictive Analytics • Amazon Machine Learning (ML) • Amazon ML – Key Concepts • Amazon ML – Datasources • Amazon ML – Models • Amazon ML – Evaluations • Amazon ML – Demo AN INTRO TO AWS MACHINE LEARNING PREDICTIVE ANALYTICS
  • 2. ABOUT ME NVISIA® Confidential 20162 Naveen VK • Principal Architect at NVISIA, a regional software development company • Worked for NVISIA for over 17 years • Designed and built custom multi-tier applications using Java Enterprise stack for various companies • Involved in entire application development lifecycle including requirements gathering, architecture, design, implementation, integration, testing and deployment • Some clients: ETF - State of WI, American Family, Harley Davidson, Cumulus Media • Currently working at ETF (Employee Trust Fund) • Manage pensions, insurance and other benefits for state and local employees • Involved in multiple projects (5) and currently supporting multiple applications (7) • Has deep expertise in databases like Oracle (since 1994) and DB2 (since 1999) and with SQL queries and PL/SQL stored procedures • 3 fun facts about myself
  • 3. PREDICTIVE ANALYTICS What is Predictive Analytics? Some use cases/examples NVISIA® Confidential 20163
  • 4. PREDICTIVE ANALYTICS NVISIA® Confidential 20164 What is it? • Mining data, using statistical algorithms and machine learning to predict trends or probabilities • Use historical data and patterns in historical data to predict future • Create models based on patterns in data to predict the probability of something happening in the future • The better the model and the training data, the better the prediction Examples • Is this email spam? • Will this product sell? • How many units of this product will sell? • Is this product a piece of clothing, a book or a movie? • What price will this house sell for? • What will be the temperature here tomorrow?
  • 5. AMAZON MACHINE LEARNING (ML) What is it? When to use it? NVISIA® Confidential 20165
  • 6. AMAZON MACHINE LEARNING (ML) NVISIA® Confidential 20166 • AWS (Amazon Web Service) cloud-based service for predictive analytics • Use tools and wizards to create machine learning models • Use simple APIs to obtain predictions for your application • No need to write custom code or have supporting infrastructure • Finds patterns in your existing data • Use models to process new data and generate predictions When to use ML? • ML is not a solution for every type of problem • A target value can be determined by coding simple rules, computations and steps without any data-driven learning • Use ML when the rules cannot be programmed easily • Too many factors • Too many overlapping rules • Too much fine tuning of rules • Use ML when the solution cannot be scaled • 100s of Millions vs. 100s (Example: manual vs. automated spam filter)
  • 7. AMAZON ML – KEY CONCEPTS Terms and concepts NVISIA® Confidential 20167
  • 8. AMAZON ML – KEY CONCEPTS NVISIA® Confidential 20168 Datasources • Contains metadata associated with data inputs to the ML • Speadsheets, CSV files, Streaming data, Relational data base ML Models • Patterns in data to generate predictions Evaluations • Measure the quality of ML models Batch Predictions • Multiple data inputs aka batch data • Asynchronous Realtime Predictions • Individual data inputs • Synchronous
  • 9. AMAZON ML – DATASOURCES Details of datasources in Amazon ML NVISIA® Confidential 20169
  • 10. AMAZON ML – DATASOURCES NVISIA® Confidential 201610 • In Amazon ML, a datasource contains only the metadata about the actual input data • Actual data may be stored in • Amazon S3 buckets • Amazon Redshift Databases • MySQL databases in Amazon Relational Database Service (RDS) • Amazon Kinesis • Attributes • Column headings represent attributes • Unique • Required • Target Attribute • The data that is being predicted • Training data has a target attribute that has already been predicted (required in training data) • Observation • Single row of data • Input data • All observations aka Rows in spreadsheet/csv file or database
  • 11. AMAZON ML – DATASOURCES CONTINUED NVISIA® Confidential 201611 • Schema • All attributes and corresponding data-types of input data • Location • Location of input data stored in, say, Amazon S3 bucket • Row ID • Attribute flagged to be included in prediction output • Helps cross-reference the prediction with the observation • Unique for each observation • Optional • Datasource Name • Human readable name of the datasource • Optional • Statistics • Summary stats for each attribute of input data • Status • All attributes and corresponding data-types of input data
  • 12. AMAZON ML – MODEL Details of mathematical model in Amazon ML NVISIA® Confidential 201612
  • 13. AMAZON ML – MODEL NVISIA® Confidential 201613 • In Amazon ML, a model finds patterns in data and generates predictions • Three distinct types of models • Binary • Multiclass • Regression • Type of model chosen based on the type of target to predict • Binary Model • Predicts values that has 1 of 2 states: true/false, 1/0, win/lose, alive/dead, pass/fail, healthy/sick • Uses industry-wide standard learning algorithm called Binary Logistic Regression Algorithm • Statistical model used to predict the probability of a binary response based on certain variables • Examples • Is this email spam? • Will this product sell? • Multiclass Model • Predicts values that belong to a pre-defined, limited set of states (1 of 3 or more states) • Uses industry-wide standard learning algorithm called Multinomial Logistic Regression Algorithm • Examples • Is this product a book, a movie or apparel? • Is this movie a thriller, a documentary or a comedy?
  • 14. AMAZON ML – MODEL NVISIA® Confidential 201614 • Regression Model • Predicts a numeric value • For regression problems • Uses industry-wide standard learning algorithm called Linear Regression Algorithm • Statistical model to predict the value of y based on a number of variables x1, x2, x3, etc. • Examples: • What will the temperature be tomorrow? • How many units of this product will sell? • How much will this house sell for? • Recipe • Attributes and attribute transformations available to train the model • Model size • In MB • Directly proportional to patterns stored in model • Number of passes • The number of times the datasource is used when training the model • Regularization • ML technique to get higher quality models
  • 15. AMAZON ML – EVALUATIONS Evaluate the model in Amazon ML NVISIA® Confidential 201615
  • 16. AMAZON ML – EVALUATIONS NVISIA® Confidential 201616 • In Amazon ML, an evaluation measures the quality of the ML model • Need to evaluate a model to determine if it will do a good job predicting the target on new/future data • Need training data where target is already predicted to train/evaluate a model • Max size of training data: 100KB • Model Insight • Amazon ML will provide metrics and insights to review accuracy of the model • Overall success metric of the model • Visualizations to explore accuracy of model • Alerts to check validity of evaluation • Focus on Binary Insights only for this presentation
  • 17. AMAZON ML – EVALUATIONS – BINARY INSIGHTS NVISIA® Confidential 201617 • Prediction score • Actual output of the binary prediction • Indicates the system’s certainty that the given observation has target value of 1 • Output scores of observations is between 0 & 1 • Default threshold score aka cut-off is 0.5, this can be changed • Any observation that scores above cut-off is predicted as target=1 and below cut-off is predicted as 0 • Correct predictions • True Positive (TP) • Predicted value of target = 1, true value of target = 1 • True Negative (TN) • Predicted value of target = 0, true value of target = 0 • Incorrect predictions • False Positive (FP) • Predicted value of target = 1, true value of target = 0 • False Negative (FN) • Predicted value of target = 0, true value of target = 1 • Area Under the Curve (AUC) • Measures the ability of the model to make a correct prediction • AUC near 1 indicates model is highly accurate (near 0s?)
  • 18. AMAZON ML – EVALUATIONS – BINARY INSIGHTS – AUC (AWS TUTORIAL) NVISIA® Confidential 201618
  • 19. AMAZON ML – DEMO – BINARY MODEL NVISIA® Confidential 201619 • Demo • Simple – predicting will this product sell? • Not so simple – predicting will this person survive? • Checklist • Predictive Analytics • Amazon Machine Learning (ML) • Amazon ML – Key Concepts • Amazon ML – Datasources • Amazon ML – Models • Amazon ML – Evaluations • Amazon ML – Demo • Pricing • https://aws.amazon.com/machine-learning/pricing/ • Data analysis and model building: @0.42/hr • Batch predictions: $0.10/nearest 1000 (rounded up to the next 1000) • Realtime predictions: $0.0001/transaction (rounded to nearest penny) • S3 Standard storage: $0.03/TB/month • Questions
  • 20. THANK YOU FOR COMING Links: http://docs.aws.amazon.com/machine-learning/latest/dg/what-is-amazon-machine-learning.html https://www.kaggle.com/ Contact Info: Linked-In: Naveen VK Email: naveen@nvisia.com (work) naveenvkm@gmail.com (personal) Github: https://github.com/navnoon23/