SlideShare uma empresa Scribd logo
1 de 47
Copyright © 2020, Oracle and/or its affiliates
Using Oracle’s Converged “AI”
Database to Pick a Good but
Inexpensive Bottle of Wine
#converged-ai-database
Brendan Tierney
Oracle ACE Director,
Author, etc.
Jeff Smith
PM, SQL
Developer, REST,
etc.,
Charlie Berger
PM, Oracle
Machine Learning
Starts at 9 am ET
2 Copyright © 2020, Oracle and/or its affiliates | Confidential: Internal/Restricted/Highly Restricted [Date]
Brendan Tierney
President, Oralytics
Brendan Tierney is an Oracle ACE
Director and Ground Breaker Ambassador.
He is based in Dublin Ireland, and has
been working with Oracle products since
Oracle v5 Database, Forms 2.3, RPT, etc.
Most of the past 27 years he has been
working in the area of big data, analytics
and machine learning, with a focus on
building solutions.
About your presenters:
Charlie Berger
Sr. Director Product
Management, Machine
Learning, AI and Cognitive Analytics
Charlie has been working in the field of
machine learning, statistical and data
analysis for over 30 years. He joined Oracle
in 1999 during the acquisition of Thinking
Machines Corporation. @CharlieDataMine
@brendantierney
3 Copyright © 2020, Oracle and/or its affiliates | Confidential: Internal/Restricted/Highly Restricted [Date]
Jeff Smith
Master Product Manager
Jeff is the Product Manager at Oracle
for SQL Developer, SQLcl, SQL
Developer Data Modeler, and REST
Data Services (ORDS). Jeff has
worked with database tools for
business analysts, developers, and the
DBAs for 20 years.
About your presenters:
@oraclesqldev
@oraclesqlcl @oracleREST
Goal
Share an simple, fun use case that highlights the “art of the
possible” in the Oracle “Converged” Database using popular tools
and SQL.
Copyright © 2020 Oracle and/or its affiliates.
Oracle Database Converged Features
Oracle Machine Learning
Copyright © 2020 Oracle and/or its affiliates.
Oracle Mission Statement
“Our mission is to help people see data in
new ways, discover insights, unlock
endless possibilities”
© 2020 Oracle - Portland OUG Training Day 10/22/2020Copyright © 2020 Oracle and/or its affiliates.
Using Oracle’s Converged “AI” Database to
Pick a Good but Inexpensive Bottle of Wine
Share a simple and fun use case:
SQL Developer
Import data
Oracle Data Miner
Explore data
Identify key attributes
Build predictive ML models
Apply ML models for predictions
APEX
Further investigate insights and predictions
SQLDEV/ORDS
Deploy ML Model using Oracle REST API (optional)Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
* Coming soon
Oracle Machine Learning
Oracle Machine Learning extends
Oracle Database(s) and enables users
to build “AI” applications and
analytics dashboards
OML delivers powerful in-database
machine learning algorithms,
automated ML functionality, and
integration with open source Python
and R.
Copyright © 2020 Oracle and/or its affiliates.
Oracle Machine Learning
OML Services*
Model Deployment and Management,
Cognitive Image and Text
OML4SQL
SQL API
OML4Py*
Python API
OML4R
R API
OML Notebooks
with Apache Zeppelin on
Autonomous Database
OML4Spark
R API on Big Data
Oracle Data Miner
Oracle SQL Developer extension
OML AutoML UI*
Code-free interface on Autonomous Database
CLASSIFICATION
Naïve Bayes
Logistic Regression (GLM)
Decision Tree
Random Forest
Neural Network
SupportVector Machine
Explicit Semantic Analysis
CLUSTERING
Hierarchical K-Means
Hierarchical O-Cluster
Expectation Maximization (EM)
ANOMALY DETECTION
One-Class SVM
TIME SERIES
Forecasting - Exponential Smoothing
Includes popular models
e.g. Holt-Winters with trends,
seasonality, irregularity, missing data
REGRESSION
Linear Model
Generalized Linear Model
SupportVector Machine (SVM)
Stepwise Linear regression
Neural Network
ATTRIBUTE IMPORTANCE
Minimum Description Length
Principal Comp Analysis (PCA)
Unsupervised Pair-wise KL Div
CUR decomposition for row & AI
ASSOCIATION RULES
A priori/ market basket
PREDICTIVE QUERIES
Predict, cluster, detect, features
SQL ANALYTICS
SQL Windows
SQL Patterns
SQL Aggregates
Oracle Machine Learning Algorithms
FEATURE EXTRACTION
Principal Comp Analysis (PCA)
Non-negative Matrix Factorization
Singular Value Decomposition (SVD)
Explicit Semantic Analysis (ESA)
TEXT MINING SUPPORT
Algorithms support text
Tokenization and theme extraction
Explicit Semantic Analysis (ESA) for
document similarity
STATISTICAL FUNCTIONS
Basic statistics: min, max,
median, stdev, t-test, F-test, Pearson’s,
Chi-Sq, ANOVA, etc.
R & PYTHON
Third-party R & Python Packages
through Embedded Execution
Spark MLlib algorithm integration
MODEL DEPLOYMENT &
MONITORING
SQL—1st Class Objects
Oracle RESTful API (ORDS)
OML Services
X1
X2
A1 A2 A3 A4 A5 A6 A7
Includes support for Partitioned Models,Transactional data and aggregations, Unstructured
data, Geo-spatial data, Graph data. etc, * Coming soon
* Coming soon
Copyright © 2020 Oracle and/or its affiliates.
Determine Best Wine for Under $30
Build machine learning (ML) model in ADW to predict good, inexpensive wines using in-
Database OML algorithms
BEGIN
DBMS_DATA_MINING.CREATE_MODEL(
model_name => 'Wine_CLASS_MODEL',
mining_function => dbms_data_mining.classification,
data_table_name => ''Wine_TRAIN_DATA',
case_id_column_name => 'ID',
target_column_name => 'POINTS_BIN',
settings_table_name => 'Wine_build_settings');
END;
/
Apply ML model using SQL query to predict a likely good, inexpensive wine
SELECT PREDICTION_PROBABILITY(Wine_CLASS_MODEL, 'GT_90_POINTS'
USING 25 as PRICE, ‘MALBEC' as VARIETY, ‘SPAIN' as COUNTRY)
FROM dual;
Using Machine Learning SQL Model Build & Model Prediction
14
Copyright © 2020 Oracle and/or its affiliates.
CRISP-DM Methodology
Six Major Steps
https://en.wikipedia.org/wiki/Cross-industry_standard_process_for_data_miningCopyright © 2020 Oracle and/or its affiliates.
DATA UNDERSTANDING
DATA PREPARATION
MODELING
EVALUATION
DEPLOYMENT
BUSINESS UNDERSTANDING
CRISP-DM Methodology
Six Major Steps
https://en.wikipedia.org/wiki/Cross-industry_standard_process_for_data_miningCopyright © 2020 Oracle and/or its affiliates.
DATA UNDERSTANDING
Assemble the “right data”
Data profiling
• Data visualization
• Univariate statistics/group by
• Bi-variate statistics
DATA PREPARATION
Sampling/Stratified
Algorithm req’d transforms
• Auto Data Preparation
• MissingValues, Binning, Normalization,
etc.
• Unstructured data
• Aggregations
Domain specific transforms
• “Engineered Features”
Features Selection
MODELING
Algorithm settings/defaults
• Stratified sampling
• Feature selection
• Build model(s)
EVALUATION
Model evaluation
Model comparison
Model selection
DEPLOYMENT
In-DB ML model apply
• Real-time ML apply
• In-database, REST
Embed methodology
• Applications
• Dashboards
BUSINESS UNDERSTANDING
Well-defined
business problem
CRISP-DM Methodology
Six Major Steps
https://en.wikipedia.org/wiki/Cross-industry_standard_process_for_data_miningCopyright © 2020 Oracle and/or its affiliates.
DATA UNDERSTANDING
Assemble the “right data”
Data profiling
• Data visualization
• Univariate statistics/group by
• Bi-variate statistics
DATA PREPARATION
Sampling/Stratified
Algorithm req’d transforms
• Auto Data Preparation
• MissingValues, Binning, Normalization,
etc.
• Unstructured data
• Aggregations
Domain specific transforms
• “Engineered Features”
Features Selection
MODELING
Algorithm settings/defaults
• Stratified sampling
• Feature selection
• Build model(s)
EVALUATION
Model evaluation
Model comparison
Model selection
DEPLOYMENT
In-DB ML model apply
• Real-time ML apply
• In-database, REST
Embed methodology
• Applications
• Dashboards
BUSINESS UNDERSTANDING
Well-defined
business problem
*Automated and/or system defaults
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
ML Model Build
ML Model Apply
Prediction Probabilities
Wait, there is more!
Copyright © 2020 Oracle and/or its affiliates.
Oracle Machine Learning
Key Features:
• Collaborative UI for data
scientist and analysts
• Packaged with Autonomous
Databases
• Quick start Example notebooks
• Easy access to shared notebooks,
templates, permissions, scheduler,
etc.
• OML4SQL
• OML4Py coming soon
• Supports deployment of OML
models
Machine Learning Notebooks included in Autonomous Databases
Copyright © 2020 Oracle and/or its affiliates.
Oracle APEX
Copyright © 2020 Oracle and/or its affiliates.
Deployment using APEX
Oracle APEX
to query and
distribute
insights and
predictions
Apply the Models to Predict “BestWines”
Copyright © 2019 Oracle and/or its affiliates.
Predictions
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Real-time Wine Recommendation App +
OpenDiningTable App
3
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
Copyright © 2020 Oracle and/or its affiliates.
ML Model Deployment via ORDS REST API
Launch Development APEX
Copyright © 2020 Oracle and/or its affiliates.
ML Model Deployment via ORDS REST API
Launch RESTful Services
Copyright © 2020 Oracle and/or its affiliates.
ML Model Deployment via ORDS REST API
Helpful example templates
provided
Copyright © 2020 Oracle and/or its affiliates.
ML Model Deployment via ORDS REST API
RESTful API for calling
OML model to make predictions
Copyright © 2020 Oracle and/or its affiliates.
Congratulations!
You are now an
“Oracle Data Scientist”!
Data Scientist
Copyright © 2020 Oracle and/or its affiliates.
Relevant Resources/Links
Oracle Machine Learning Blog with 3 Hands-on Labs
https://blogs.oracle.com/machinelearning/
• Hands-0n Lab: How to Pick a Good Wine for $30< using Oracle
Autonomous Database, Oracle Machine Learning, APEX,
Oracle Analytics Cloud and REST Services
• Learn How to Use Oracle Data Miner UI in 45 Minutes
• Hands-on Lab: Learn to Use Oracle Machine Learning Notebooks
OML on Autonomous Database Workshop
https://oracle.github.io/learning-library/workshops/adwc4dev/?lab=introduction
Oracle Machine Learning Overview:
From Oracle Data Professional to Oracle Data Scientist!
https://www.youtube.com/watch?time_continue=1&v=
jFBMhOapGL8&feature=emb_logo
Relevant Resources/Links
Google: Oracle DatabaseVM
https://www.oracle.com/downloads/developer-vm/community-downloads.html
41
Copyright © 2020 Oracle and/or its affiliates.
For More Information
Google: Oracle SQL Developer
Oracle.com/SQLDeveloper
42
Copyright © 2020 Oracle and/or its affiliates.
For More Information
Google: Oracle REST Services (ORDS)
https://www.oracle.com/database/technologies/appdev/rest.html
43
Copyright © 2020 Oracle and/or its affiliates.
For More Information
Google: Oracle Machine Learning
Oracle.com/MachineLearning
44
Copyright © 2020 Oracle and/or its affiliates.
ThankYou
Charlie Berger, charlie.berger@oracle.com
@CharlieDataMine
Jeff Smith, jeff.d.smith@oracle.com, @oraclesqldev
@oraclesqlcl @oracleREST
Brendan Tierney, brendan.tierney@oralytics.com,
@brendantierney
46 Copyright © 2020, Oracle and/or its affiliates | Confidential: Internal/Restricted/Highly Restricted [Date]
Coming up at 10am ET…
Spatial Technologies -
@Home and Everywhere
Else on the Map
with
David Lapp &
Tim Vlamis
Break time!
Remember to take the Dev Gym
quizzes to receive your certificate
of completion.
Also, please complete the
feedback form for the previous
session by 10:15am ET
… links in the Zoom chat
47 Copyright © 2020, Oracle and/or its affiliates | Confidential: Internal/Restricted/Highly Restricted
[Date]

Mais conteúdo relacionado

Mais procurados

AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine LearningAUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
Sandesh Rao
 

Mais procurados (20)

AutoML - Heralding a New Era of Machine Learning - CASOUG Oct 2021
AutoML - Heralding a New Era of Machine Learning - CASOUG Oct 2021AutoML - Heralding a New Era of Machine Learning - CASOUG Oct 2021
AutoML - Heralding a New Era of Machine Learning - CASOUG Oct 2021
 
Database@Home : Data Driven Apps : Core-dev or Low Code UI
Database@Home : Data Driven Apps : Core-dev or Low Code UIDatabase@Home : Data Driven Apps : Core-dev or Low Code UI
Database@Home : Data Driven Apps : Core-dev or Low Code UI
 
Database@Home : The Future is Data Driven
Database@Home : The Future is Data DrivenDatabase@Home : The Future is Data Driven
Database@Home : The Future is Data Driven
 
LAD -GroundBreakers-Jul 2019 - The Machine Learning behind the Autonomous Dat...
LAD -GroundBreakers-Jul 2019 - The Machine Learning behind the Autonomous Dat...LAD -GroundBreakers-Jul 2019 - The Machine Learning behind the Autonomous Dat...
LAD -GroundBreakers-Jul 2019 - The Machine Learning behind the Autonomous Dat...
 
Top 20 FAQs on the Autonomous Database
Top 20 FAQs on the Autonomous DatabaseTop 20 FAQs on the Autonomous Database
Top 20 FAQs on the Autonomous Database
 
Database@Home - Maps and Spatial Analyses: How to use them
Database@Home - Maps and Spatial Analyses: How to use themDatabase@Home - Maps and Spatial Analyses: How to use them
Database@Home - Maps and Spatial Analyses: How to use them
 
The Art of Intelligence – Introduction Machine Learning for Oracle profession...
The Art of Intelligence – Introduction Machine Learning for Oracle profession...The Art of Intelligence – Introduction Machine Learning for Oracle profession...
The Art of Intelligence – Introduction Machine Learning for Oracle profession...
 
Application development with Oracle NoSQL Database 3.0
Application development with Oracle NoSQL Database 3.0Application development with Oracle NoSQL Database 3.0
Application development with Oracle NoSQL Database 3.0
 
Database@Home - Data Driven Reference Architecture
Database@Home - Data Driven Reference ArchitectureDatabase@Home - Data Driven Reference Architecture
Database@Home - Data Driven Reference Architecture
 
A practical introduction to Oracle NoSQL Database - OOW2014
A practical introduction to Oracle NoSQL Database - OOW2014A practical introduction to Oracle NoSQL Database - OOW2014
A practical introduction to Oracle NoSQL Database - OOW2014
 
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine LearningAUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
 
Oracle NoSQL Database release 3.0 overview
Oracle NoSQL Database release 3.0 overviewOracle NoSQL Database release 3.0 overview
Oracle NoSQL Database release 3.0 overview
 
Introduction to Machine Learning - From DBA's to Data Scientists - OGBEMEA
Introduction to Machine Learning - From DBA's to Data Scientists - OGBEMEAIntroduction to Machine Learning - From DBA's to Data Scientists - OGBEMEA
Introduction to Machine Learning - From DBA's to Data Scientists - OGBEMEA
 
Dimensional modeling in oracle sql developer
Dimensional modeling in oracle sql developerDimensional modeling in oracle sql developer
Dimensional modeling in oracle sql developer
 
Data meets AI - AICUG - Santa Clara
Data meets AI  - AICUG - Santa ClaraData meets AI  - AICUG - Santa Clara
Data meets AI - AICUG - Santa Clara
 
Database@Home : Data Driven Apps - Data-driven Microservices Architecture wit...
Database@Home : Data Driven Apps - Data-driven Microservices Architecture wit...Database@Home : Data Driven Apps - Data-driven Microservices Architecture wit...
Database@Home : Data Driven Apps - Data-driven Microservices Architecture wit...
 
Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15
Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15
Oracle NoSQL Database -- Big Data Bellevue Meetup - 02-18-15
 
Machine Learning and AI at Oracle
Machine Learning and AI at OracleMachine Learning and AI at Oracle
Machine Learning and AI at Oracle
 
20 tips and tricks with the Autonomous Database
20 tips and tricks with the Autonomous Database20 tips and tricks with the Autonomous Database
20 tips and tricks with the Autonomous Database
 
Introduction to AutoML and Data Science using the Oracle Autonomous Database ...
Introduction to AutoML and Data Science using the Oracle Autonomous Database ...Introduction to AutoML and Data Science using the Oracle Autonomous Database ...
Introduction to AutoML and Data Science using the Oracle Autonomous Database ...
 

Semelhante a #dbhouseparty - Using Oracle’s Converged “AI” Database to Pick a Good but Inexpensive Bottle of Wine

Big Data Management System: Smart SQL Processing Across Hadoop and your Data ...
Big Data Management System: Smart SQL Processing Across Hadoop and your Data ...Big Data Management System: Smart SQL Processing Across Hadoop and your Data ...
Big Data Management System: Smart SQL Processing Across Hadoop and your Data ...
DataWorks Summit
 

Semelhante a #dbhouseparty - Using Oracle’s Converged “AI” Database to Pick a Good but Inexpensive Bottle of Wine (20)

On24 oracle-machine-learning-platform-12-feb-2020-webcast
On24 oracle-machine-learning-platform-12-feb-2020-webcastOn24 oracle-machine-learning-platform-12-feb-2020-webcast
On24 oracle-machine-learning-platform-12-feb-2020-webcast
 
APEX Boston Meetup - October 1st, 2019
APEX Boston Meetup - October 1st, 2019APEX Boston Meetup - October 1st, 2019
APEX Boston Meetup - October 1st, 2019
 
Why Use an Oracle Database?
Why Use an Oracle Database?Why Use an Oracle Database?
Why Use an Oracle Database?
 
Data meets AI - ATP Roadshow India
Data meets AI - ATP Roadshow IndiaData meets AI - ATP Roadshow India
Data meets AI - ATP Roadshow India
 
Data Natives Munich v 12.0 | "How to be more productive with Autonomous Data ...
Data Natives Munich v 12.0 | "How to be more productive with Autonomous Data ...Data Natives Munich v 12.0 | "How to be more productive with Autonomous Data ...
Data Natives Munich v 12.0 | "How to be more productive with Autonomous Data ...
 
A Step by Step Introduction to the MySQL Document Store
A Step by Step Introduction to the MySQL Document StoreA Step by Step Introduction to the MySQL Document Store
A Step by Step Introduction to the MySQL Document Store
 
Extending Hortonworks with Oracle's Big Data Platform
Extending Hortonworks with Oracle's Big Data PlatformExtending Hortonworks with Oracle's Big Data Platform
Extending Hortonworks with Oracle's Big Data Platform
 
Oracle NoSQL
Oracle NoSQLOracle NoSQL
Oracle NoSQL
 
はじめてのOracle Cloud Infrastructure(Oracle Cloudウェビナーシリーズ: 2020年6月24日)
はじめてのOracle Cloud Infrastructure(Oracle Cloudウェビナーシリーズ: 2020年6月24日)はじめてのOracle Cloud Infrastructure(Oracle Cloudウェビナーシリーズ: 2020年6月24日)
はじめてのOracle Cloud Infrastructure(Oracle Cloudウェビナーシリーズ: 2020年6月24日)
 
Database Basics with PHP -- Connect JS Conference October 17th, 2015
Database Basics with PHP -- Connect JS Conference October 17th, 2015Database Basics with PHP -- Connect JS Conference October 17th, 2015
Database Basics with PHP -- Connect JS Conference October 17th, 2015
 
Big Data Management System: Smart SQL Processing Across Hadoop and your Data ...
Big Data Management System: Smart SQL Processing Across Hadoop and your Data ...Big Data Management System: Smart SQL Processing Across Hadoop and your Data ...
Big Data Management System: Smart SQL Processing Across Hadoop and your Data ...
 
import data from Oracle Database into Python Pandas Dataframe
import data from Oracle Database into Python Pandas Dataframeimport data from Oracle Database into Python Pandas Dataframe
import data from Oracle Database into Python Pandas Dataframe
 
Oracle Autonomous Database - introducción técnica y hands on lab
Oracle Autonomous Database  - introducción técnica y hands on labOracle Autonomous Database  - introducción técnica y hands on lab
Oracle Autonomous Database - introducción técnica y hands on lab
 
Apex atp customer_presentation_wwc march 2019
Apex atp customer_presentation_wwc march 2019Apex atp customer_presentation_wwc march 2019
Apex atp customer_presentation_wwc march 2019
 
はじめてのOracle Cloud Infrastructure(Oracle Cloudウェビナーシリーズ: 2020年7月1日)
はじめてのOracle Cloud Infrastructure(Oracle Cloudウェビナーシリーズ: 2020年7月1日)はじめてのOracle Cloud Infrastructure(Oracle Cloudウェビナーシリーズ: 2020年7月1日)
はじめてのOracle Cloud Infrastructure(Oracle Cloudウェビナーシリーズ: 2020年7月1日)
 
Introducing new AIOps innovations in Oracle 19c - San Jose AICUG
Introducing new AIOps innovations in Oracle 19c - San Jose AICUGIntroducing new AIOps innovations in Oracle 19c - San Jose AICUG
Introducing new AIOps innovations in Oracle 19c - San Jose AICUG
 
Integrate Machine Learning into Your Spring Application in Less than an Hour
Integrate Machine Learning into Your Spring Application in Less than an HourIntegrate Machine Learning into Your Spring Application in Less than an Hour
Integrate Machine Learning into Your Spring Application in Less than an Hour
 
2. nick whitehead&ajlec bojan final bi
2. nick whitehead&ajlec bojan final  bi2. nick whitehead&ajlec bojan final  bi
2. nick whitehead&ajlec bojan final bi
 
Bhadale group of companies - Our project works
Bhadale group of companies - Our project worksBhadale group of companies - Our project works
Bhadale group of companies - Our project works
 
2020 – A Decade of Change
2020 – A Decade of Change2020 – A Decade of Change
2020 – A Decade of Change
 

Último

Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
amitlee9823
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
amitlee9823
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
amitlee9823
 
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
amitlee9823
 
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
amitlee9823
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
only4webmaster01
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
amitlee9823
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
amitlee9823
 

Último (20)

Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
 
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men  🔝Mathura🔝   Escorts...
➥🔝 7737669865 🔝▻ Mathura Call-girls in Women Seeking Men 🔝Mathura🔝 Escorts...
 
Detecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning ApproachDetecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning Approach
 
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science Project
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
 

#dbhouseparty - Using Oracle’s Converged “AI” Database to Pick a Good but Inexpensive Bottle of Wine

  • 1. Copyright © 2020, Oracle and/or its affiliates Using Oracle’s Converged “AI” Database to Pick a Good but Inexpensive Bottle of Wine #converged-ai-database Brendan Tierney Oracle ACE Director, Author, etc. Jeff Smith PM, SQL Developer, REST, etc., Charlie Berger PM, Oracle Machine Learning Starts at 9 am ET
  • 2. 2 Copyright © 2020, Oracle and/or its affiliates | Confidential: Internal/Restricted/Highly Restricted [Date] Brendan Tierney President, Oralytics Brendan Tierney is an Oracle ACE Director and Ground Breaker Ambassador. He is based in Dublin Ireland, and has been working with Oracle products since Oracle v5 Database, Forms 2.3, RPT, etc. Most of the past 27 years he has been working in the area of big data, analytics and machine learning, with a focus on building solutions. About your presenters: Charlie Berger Sr. Director Product Management, Machine Learning, AI and Cognitive Analytics Charlie has been working in the field of machine learning, statistical and data analysis for over 30 years. He joined Oracle in 1999 during the acquisition of Thinking Machines Corporation. @CharlieDataMine @brendantierney
  • 3. 3 Copyright © 2020, Oracle and/or its affiliates | Confidential: Internal/Restricted/Highly Restricted [Date] Jeff Smith Master Product Manager Jeff is the Product Manager at Oracle for SQL Developer, SQLcl, SQL Developer Data Modeler, and REST Data Services (ORDS). Jeff has worked with database tools for business analysts, developers, and the DBAs for 20 years. About your presenters: @oraclesqldev @oraclesqlcl @oracleREST
  • 4. Goal Share an simple, fun use case that highlights the “art of the possible” in the Oracle “Converged” Database using popular tools and SQL. Copyright © 2020 Oracle and/or its affiliates.
  • 5. Oracle Database Converged Features Oracle Machine Learning Copyright © 2020 Oracle and/or its affiliates.
  • 6. Oracle Mission Statement “Our mission is to help people see data in new ways, discover insights, unlock endless possibilities” © 2020 Oracle - Portland OUG Training Day 10/22/2020Copyright © 2020 Oracle and/or its affiliates.
  • 7. Using Oracle’s Converged “AI” Database to Pick a Good but Inexpensive Bottle of Wine Share a simple and fun use case: SQL Developer Import data Oracle Data Miner Explore data Identify key attributes Build predictive ML models Apply ML models for predictions APEX Further investigate insights and predictions SQLDEV/ORDS Deploy ML Model using Oracle REST API (optional)Copyright © 2020 Oracle and/or its affiliates.
  • 8. Copyright © 2020 Oracle and/or its affiliates.
  • 9. Copyright © 2020 Oracle and/or its affiliates.
  • 10. Copyright © 2020 Oracle and/or its affiliates.
  • 11. Copyright © 2020 Oracle and/or its affiliates.
  • 12. * Coming soon Oracle Machine Learning Oracle Machine Learning extends Oracle Database(s) and enables users to build “AI” applications and analytics dashboards OML delivers powerful in-database machine learning algorithms, automated ML functionality, and integration with open source Python and R. Copyright © 2020 Oracle and/or its affiliates. Oracle Machine Learning OML Services* Model Deployment and Management, Cognitive Image and Text OML4SQL SQL API OML4Py* Python API OML4R R API OML Notebooks with Apache Zeppelin on Autonomous Database OML4Spark R API on Big Data Oracle Data Miner Oracle SQL Developer extension OML AutoML UI* Code-free interface on Autonomous Database
  • 13. CLASSIFICATION Naïve Bayes Logistic Regression (GLM) Decision Tree Random Forest Neural Network SupportVector Machine Explicit Semantic Analysis CLUSTERING Hierarchical K-Means Hierarchical O-Cluster Expectation Maximization (EM) ANOMALY DETECTION One-Class SVM TIME SERIES Forecasting - Exponential Smoothing Includes popular models e.g. Holt-Winters with trends, seasonality, irregularity, missing data REGRESSION Linear Model Generalized Linear Model SupportVector Machine (SVM) Stepwise Linear regression Neural Network ATTRIBUTE IMPORTANCE Minimum Description Length Principal Comp Analysis (PCA) Unsupervised Pair-wise KL Div CUR decomposition for row & AI ASSOCIATION RULES A priori/ market basket PREDICTIVE QUERIES Predict, cluster, detect, features SQL ANALYTICS SQL Windows SQL Patterns SQL Aggregates Oracle Machine Learning Algorithms FEATURE EXTRACTION Principal Comp Analysis (PCA) Non-negative Matrix Factorization Singular Value Decomposition (SVD) Explicit Semantic Analysis (ESA) TEXT MINING SUPPORT Algorithms support text Tokenization and theme extraction Explicit Semantic Analysis (ESA) for document similarity STATISTICAL FUNCTIONS Basic statistics: min, max, median, stdev, t-test, F-test, Pearson’s, Chi-Sq, ANOVA, etc. R & PYTHON Third-party R & Python Packages through Embedded Execution Spark MLlib algorithm integration MODEL DEPLOYMENT & MONITORING SQL—1st Class Objects Oracle RESTful API (ORDS) OML Services X1 X2 A1 A2 A3 A4 A5 A6 A7 Includes support for Partitioned Models,Transactional data and aggregations, Unstructured data, Geo-spatial data, Graph data. etc, * Coming soon * Coming soon Copyright © 2020 Oracle and/or its affiliates.
  • 14. Determine Best Wine for Under $30 Build machine learning (ML) model in ADW to predict good, inexpensive wines using in- Database OML algorithms BEGIN DBMS_DATA_MINING.CREATE_MODEL( model_name => 'Wine_CLASS_MODEL', mining_function => dbms_data_mining.classification, data_table_name => ''Wine_TRAIN_DATA', case_id_column_name => 'ID', target_column_name => 'POINTS_BIN', settings_table_name => 'Wine_build_settings'); END; / Apply ML model using SQL query to predict a likely good, inexpensive wine SELECT PREDICTION_PROBABILITY(Wine_CLASS_MODEL, 'GT_90_POINTS' USING 25 as PRICE, ‘MALBEC' as VARIETY, ‘SPAIN' as COUNTRY) FROM dual; Using Machine Learning SQL Model Build & Model Prediction 14 Copyright © 2020 Oracle and/or its affiliates.
  • 15. CRISP-DM Methodology Six Major Steps https://en.wikipedia.org/wiki/Cross-industry_standard_process_for_data_miningCopyright © 2020 Oracle and/or its affiliates. DATA UNDERSTANDING DATA PREPARATION MODELING EVALUATION DEPLOYMENT BUSINESS UNDERSTANDING
  • 16. CRISP-DM Methodology Six Major Steps https://en.wikipedia.org/wiki/Cross-industry_standard_process_for_data_miningCopyright © 2020 Oracle and/or its affiliates. DATA UNDERSTANDING Assemble the “right data” Data profiling • Data visualization • Univariate statistics/group by • Bi-variate statistics DATA PREPARATION Sampling/Stratified Algorithm req’d transforms • Auto Data Preparation • MissingValues, Binning, Normalization, etc. • Unstructured data • Aggregations Domain specific transforms • “Engineered Features” Features Selection MODELING Algorithm settings/defaults • Stratified sampling • Feature selection • Build model(s) EVALUATION Model evaluation Model comparison Model selection DEPLOYMENT In-DB ML model apply • Real-time ML apply • In-database, REST Embed methodology • Applications • Dashboards BUSINESS UNDERSTANDING Well-defined business problem
  • 17. CRISP-DM Methodology Six Major Steps https://en.wikipedia.org/wiki/Cross-industry_standard_process_for_data_miningCopyright © 2020 Oracle and/or its affiliates. DATA UNDERSTANDING Assemble the “right data” Data profiling • Data visualization • Univariate statistics/group by • Bi-variate statistics DATA PREPARATION Sampling/Stratified Algorithm req’d transforms • Auto Data Preparation • MissingValues, Binning, Normalization, etc. • Unstructured data • Aggregations Domain specific transforms • “Engineered Features” Features Selection MODELING Algorithm settings/defaults • Stratified sampling • Feature selection • Build model(s) EVALUATION Model evaluation Model comparison Model selection DEPLOYMENT In-DB ML model apply • Real-time ML apply • In-database, REST Embed methodology • Applications • Dashboards BUSINESS UNDERSTANDING Well-defined business problem *Automated and/or system defaults
  • 18. Copyright © 2020 Oracle and/or its affiliates.
  • 19. Copyright © 2020 Oracle and/or its affiliates.
  • 20. Copyright © 2020 Oracle and/or its affiliates.
  • 21. Copyright © 2020 Oracle and/or its affiliates.
  • 22. Copyright © 2020 Oracle and/or its affiliates.
  • 23. Copyright © 2020 Oracle and/or its affiliates.
  • 24. Copyright © 2020 Oracle and/or its affiliates.
  • 25. Copyright © 2020 Oracle and/or its affiliates. ML Model Build ML Model Apply Prediction Probabilities
  • 26. Wait, there is more! Copyright © 2020 Oracle and/or its affiliates.
  • 27. Oracle Machine Learning Key Features: • Collaborative UI for data scientist and analysts • Packaged with Autonomous Databases • Quick start Example notebooks • Easy access to shared notebooks, templates, permissions, scheduler, etc. • OML4SQL • OML4Py coming soon • Supports deployment of OML models Machine Learning Notebooks included in Autonomous Databases Copyright © 2020 Oracle and/or its affiliates.
  • 28. Oracle APEX Copyright © 2020 Oracle and/or its affiliates.
  • 29. Deployment using APEX Oracle APEX to query and distribute insights and predictions Apply the Models to Predict “BestWines” Copyright © 2019 Oracle and/or its affiliates. Predictions Copyright © 2020 Oracle and/or its affiliates.
  • 30. Copyright © 2020 Oracle and/or its affiliates.
  • 31. Real-time Wine Recommendation App + OpenDiningTable App 3 Copyright © 2020 Oracle and/or its affiliates.
  • 32.
  • 33. Copyright © 2020 Oracle and/or its affiliates.
  • 34. Copyright © 2020 Oracle and/or its affiliates.
  • 35. ML Model Deployment via ORDS REST API Launch Development APEX Copyright © 2020 Oracle and/or its affiliates.
  • 36. ML Model Deployment via ORDS REST API Launch RESTful Services Copyright © 2020 Oracle and/or its affiliates.
  • 37. ML Model Deployment via ORDS REST API Helpful example templates provided Copyright © 2020 Oracle and/or its affiliates.
  • 38. ML Model Deployment via ORDS REST API RESTful API for calling OML model to make predictions Copyright © 2020 Oracle and/or its affiliates.
  • 39. Congratulations! You are now an “Oracle Data Scientist”! Data Scientist Copyright © 2020 Oracle and/or its affiliates.
  • 40. Relevant Resources/Links Oracle Machine Learning Blog with 3 Hands-on Labs https://blogs.oracle.com/machinelearning/ • Hands-0n Lab: How to Pick a Good Wine for $30< using Oracle Autonomous Database, Oracle Machine Learning, APEX, Oracle Analytics Cloud and REST Services • Learn How to Use Oracle Data Miner UI in 45 Minutes • Hands-on Lab: Learn to Use Oracle Machine Learning Notebooks OML on Autonomous Database Workshop https://oracle.github.io/learning-library/workshops/adwc4dev/?lab=introduction Oracle Machine Learning Overview: From Oracle Data Professional to Oracle Data Scientist! https://www.youtube.com/watch?time_continue=1&v= jFBMhOapGL8&feature=emb_logo
  • 41. Relevant Resources/Links Google: Oracle DatabaseVM https://www.oracle.com/downloads/developer-vm/community-downloads.html 41 Copyright © 2020 Oracle and/or its affiliates.
  • 42. For More Information Google: Oracle SQL Developer Oracle.com/SQLDeveloper 42 Copyright © 2020 Oracle and/or its affiliates.
  • 43. For More Information Google: Oracle REST Services (ORDS) https://www.oracle.com/database/technologies/appdev/rest.html 43 Copyright © 2020 Oracle and/or its affiliates.
  • 44. For More Information Google: Oracle Machine Learning Oracle.com/MachineLearning 44 Copyright © 2020 Oracle and/or its affiliates.
  • 45. ThankYou Charlie Berger, charlie.berger@oracle.com @CharlieDataMine Jeff Smith, jeff.d.smith@oracle.com, @oraclesqldev @oraclesqlcl @oracleREST Brendan Tierney, brendan.tierney@oralytics.com, @brendantierney
  • 46. 46 Copyright © 2020, Oracle and/or its affiliates | Confidential: Internal/Restricted/Highly Restricted [Date] Coming up at 10am ET… Spatial Technologies - @Home and Everywhere Else on the Map with David Lapp & Tim Vlamis Break time! Remember to take the Dev Gym quizzes to receive your certificate of completion. Also, please complete the feedback form for the previous session by 10:15am ET … links in the Zoom chat
  • 47. 47 Copyright © 2020, Oracle and/or its affiliates | Confidential: Internal/Restricted/Highly Restricted [Date]

Notas do Editor

  1. Build using Zeppelin notebook?