Transformational Machine Learning Use Cases You Can Deploy Now CON6234

Size: px
Start display at page:

Download "Transformational Machine Learning Use Cases You Can Deploy Now CON6234"

Transcription

1 Transformational Machine Learning Use Cases You Can Deploy Now CON6234 Charlie Berger Sr. Director Product Management Machine Learning, AI and Cognitive Analytics Sebastian Turullols Sr. Director Hardware Development Microelectronics

2 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle. 2

3 Today Google Now Provides Tailored Local Updates Get Droid alerts/updates: Local news Local weather Your stated interests Your sports teams National news updates

4

5 Imagine these scenarios Meet old Girlfriend at Coffee Shop Wake up, read Droid alert about meeting a old girlfriend in the coffee shop who will be getting married, but hasn t told anyone yet. Change of address Adopt a dog Facebook pics Tweets Online ring purchase by close contact When you meet your old girlfriend at the coffee shop this morning, act surprised to learn she is getting married

6 The Near Future Big Data, Interconnected World + Machine Learning Datafication of EVERYTHING Digital exhaust GPS Tweets Geo-tags Facebook posts, pics, friends LinkedIn RFID Medical records

7 2001: A Space Odyssey The Dawn of Man scene Our adoption of machine learning and artificial intelligence is about at this stage the BEGINNING!

8 What is Machine Learning, Data Mining, Predictive Analytics? Automatically sift through large amounts of data to find hidden patterns, discover new insights and make predictions Identify most important factor (Attribute Importance) A1 A2 A3 A4 A5 A6 A7 Predict customer behavior (Classification) Predict or estimate a value (Regression) Find profiles of targeted people or items (Decision Trees) Segment a population (Clustering) Find fraudulent or rare events (Anomaly Detection) Determine co-occurring items in a baskets (Associations) Copyright 2016, Oracle and/or its affiliates. All rights reserved.

9 CLASSIFYING CUSTOMERS Features Basic Query Basic Analytics Machine Learning Age / Gender Marketing Preferences RFM (Recency, Frequency and Monetary Value): Purchases in the Last 3/6/12 mo. Behavioral Customer Segment Probability to Buy New Product X Known Known Known Unknown Unknown Mail and 1 item / $35 in the last 3 mo Retired Cosmopolitan 2 items / $150 in the last 6 mo Affluential Executive and Facebook 3 items / $75 in the last 3 mo New Home Mom and Google+ 3 items / $225 in the last 12 mo Young Successful startup 31% 45% 55% 21% 72% Mail, and Twitter 9 items / $250 in the last 6 mo Executive product collector Copyright 2017, Oracle and/or its its affiliates. All All rights reserved.

10 ML Model Deployment for Real-Time Scoring Real-Time Scoring, Predictions and Recommendations On-the-fly, single record apply with new data (e.g. from call center) Oracle Cloud Select prediction_probability(clas_dt_1_15, 'Yes' USING 7800 as bank_funds, 125 as checking_amount, 20 as credit_balance, 55 as age, 'Married' as marital_status, 250 as MONEY_MONTLY_OVERDRAWN, 1 as house_ownership) from dual; Call Center Social Media Get Advice Branch Office R Likelihood to respond: Web Mobile

11 Fiserv Risk Analytics in Electronic Payments Objectives Prevent $200M in losses every year using data to monitor, understand and anticipate fraud Solution When choosing the tools for fraud management, speed is a critical factor. Oracle Advance Analytics provided a fast and flexible solution for model building, visualization and integration with production processes. Miguel Barrera, Director of Risk Analytics, Fiserv Inc. Julia Minkowski, Risk Analytics Manager, Fiserv Inc. We installed OAA analytics for model development during 2014 When choosing the tools for fraud management, speed is a critical factor OAA provided a fast and flexible solution for model building, visualization and integration with production processes 3 months to run & deploy Logistic Regression (using SAS) Oracle Advanced Analytics 1 month to estimate and deploy Trees and GLM 1 week to estimate, 1 week to install rules in online application 1 day to estimate and deploy Trees + GLM models (using Oracle Advanced Analytics)

12 Fraud Prediction Demo Automated In-DB Analytical Methodology drop table CLAIMS_SET; exec dbms_data_mining.drop_model('claimsmodel'); create table CLAIMS_SET (setting_name varchar2(30), setting_value varchar2(4000)); insert into CLAIMS_SET values ('ALGO_NAME','ALGO_SUPPORT_VECTOR_MACHINES'); insert into CLAIMS_SET values ('PREP_AUTO','ON'); commit; begin dbms_data_mining.create_model('claimsmodel', 'CLASSIFICATION', 'CLAIMS', 'POLICYNUMBER', null, 'CLAIMS_SET'); end; / -- Top 5 most suspicious fraud policy holder claims select * from (select POLICYNUMBER, round(prob_fraud*100,2) percent_fraud, rank() over (order by prob_fraud desc) rnk from (select POLICYNUMBER, prediction_probability(claimsmodel, '0' using *) prob_fraud from CLAIMS where PASTNUMBEROFCLAIMS in ('2to4', 'morethan4'))) where rnk <= 5 order by percent_fraud desc; Automated Monthly Application! Just add: Create View CLAIMS2_30 As Select * from CLAIMS2 Where mydate > SYSDATE 30 Time measure: set timing on;

13 1

14 HCM Predictive Workforce Predictive Analytics Applications Human Capital Management Powered by OAA Oracle Advanced Analytics factoryinstalled predictive analytics Employees likely to leave and predicted performance Top reasons, expected behavior Real-time "What if?" analysis Link to Oracle HCM on O.com HCM Predictive Workforce demo

15 HCM Predictive Workforce Predictive Analytics Applications Fusion Human Capital Management Powered by OAA Oracle Advanced Analytics factoryinstalled predictive analytics Employees likely to leave and predicted performance Top reasons, expected behavior Real-time "What if?" analysis Link to Oracle HCM on O.com HCM Predictive Workforce demo

16 Predicting Power Consumption Real-Time In the SPARC M8 Microprocessor Copyright 2016, Oracle and/or its affiliates. All rights reserved. 1

17 Power Prediction Background Power is a precious resource in just about any domain Managing power consumption matters: electricity bill, overloading circuits Power can be managed at many levels Building Data Center Server Processor My work focuses around the processor but these ideas can be applied at other levels or even for totally different ML applications! 1

18 Microprocessor Power Management 101 Applies from a mobile phone CPU to a big iron CPU like the SPARC M8 Limit the instantaneous maximum power draw to avoid tripping circuit breakers or damaging components by overloading them (remember exploding batteries?) Limit the average maximum power to avoid thermal problems Find ways to save power to maximize efficiency / save battery life Before you can implement any of these things you have to know what the power is AND you have to know it far enough in advance to avoid bad things happening 1

19 Microprocessor Power Management Dark Ages Before we knew how to predict power using machine learning Had to always assume the worst case power Lead to engineering overdesign, making servers more expensive Inefficient operation; e.g. fewer servers per rack, lower clock frequency / performance 1

20 Microprocessor Power Management ML Transformation 1 st Transformational Change Using ML to predict power 33% frequency / performance improvement versus previous designs Enabled many new features 2 nd Transformational Change Using Oracle Advanced Analytics flow 95% reduction in effort needed to build and train ML model 100X speedup in training / scoring runtimes 2

21 IP Portfolio Added Power Predictor 2

22 Control System Overview Power Predictor

23 How we predict power SPARC Microprocessors starting with M7 include hardware power predictors that estimate the instantaneous power consumed by an entire core using a few key modeling variables. R and later Oracle Advanced Analytics were used to build this model, including variable selection and training. The most compute intensive task involves selecting ~50 variables from a candidate list of thousands based on about 20GB of training data. 2

24 Performance Challenge Out-of-the box, one round of evaluating a variable addition took 3 hours running single threaded on a single x86 CPU. Since hundreds of rounds needed to complete the predictive model design, prompted a project to accelerate the runtime applied massive parallelization and memory capacity of Oracle SPARC T7-4 Server 2

25 Oracle R Distribution Parallelization Results By moving to T7-4 and through a series of ORD and script coding optimizations to take advantage of the systems massive amount of threads and memory, the team was able to realize a 36X runtime improvement Runtime (minutes) Before 180 After Tuning After Tuning 5 Before

26 Power Prediction Results Achieve <6% error Across all benchmarks 2

27 Oracle Advanced Analytics >100X Improvement Moved to Oracle AA on T8-2 and with minimal effort out-of-the-box were able to achieve much faster runtimes than we got with standard R after a lot of hard work optimizing Runtime (minutes) R Out-of-Box 180 R Tuned 5 OAA Out-of-Box

28 1 minute OAA vs 180 minute R comparison unfair Oracle Advanced Analytics is doing so much more for us in 60 seconds compared to what we had out-of-the-box with R in 2 hours! Automatic optimal best 60 variable selection from candidate pool of 940 R starting point was only a regression of 48+1 variables Runtime (minutes) R Out-of-Box 180 R Tuned 5 OAA Out-of-Box

29 SPARC M8 Processor Based Servers SPARC T8-1 SPARC T8-2 SPARC T8-4 SPARC M8-8 Processors or 4 Up to 8 1 Max Cores Max Threads ,024 2,048 Max Memory 2 1 TB 2 TB 4 TB 8 TB Form Factor 2U 3U 5U Rack / 10U Domaining Logical domains (LDoms) LDoms LDoms LDoms, PDoms 1 (1) Factory configured with one (up to 8 processors) or two (up to 4 processors each) static physical domains (PDoms) (2) Maximum memory capacity is based on 64 GB DIMMs 2

30 Oracle Advanced Analytics 12.2 Model Build Time Performance Unofficial T7-4 (Sparc & Solaris) X5-4 (Intel and Linux) OAA 12.2 Algorithms Rows (Ms) Model Build Time (Secs / Degree of Parallelism) Wow! That s Fast! Attributes Importance s / s / 72 K Means Clustering s / s / 144 Expectation Maximization s / s / 144 Naive Bayes Classification s / s / 72 GLM Classification s / s / 144 GLM Regression s / s / 144 In 24 hours, could build new predictive models for entire United States Population, for 400 attributes, 4 times! Support Vector Machine (IPM solver) s / s / 144 Support Vector Machine (SGD solver) s / s / 72 The way to read their results is that they compare 2 chips: X5 (Intel and Linux) and T7 (Sparc and Solaris). They are measuring scalability (time in seconds) with increase degree of parallelism (dop). The data also has high cardinality Copyright categorical 2016, Oracle columns and/or which its affiliates. translates All rights in reserved. 9K mining attributes (when algorithms require explosion). There are no comparisons to 12.1 and it is fair to say that the 12.1 algorithms could not run on data of this size.

31 Oracle Advanced Analytics 12.2 Model Build Time Performance Unofficial T8-2 (Sparc & Solaris) X6-2 (Intel and Linux) OAA 12.2 Algorithms Rows (Ms) Model Build Time (Secs / Degree of Parallelism) Wow! That s Fast! Attributes Importance s / s / 88 K Means Clustering s / s / 88 Naive Bayes Classification s / s / 88 GLM Classification s / s / 88 GLM Regression s / s / 88 Support Vector Machine (IPM solver) s / s / 88 Support Vector Machine (SGD solver) s / s / 88 The way to read their results is that they compare 2 chips: X5 (Intel and Linux) and T7 (Sparc and Solaris). They are measuring scalability (time in seconds) with increase degree of parallelism (dop). The data also has high cardinality Copyright categorical 2016, Oracle columns and/or which its affiliates. translates All rights in reserved. 9K mining attributes (when algorithms require explosion). There are no comparisons to 12.1 and it is fair to say that the 12.1 algorithms could not run on data of this size.

32 Oracle Database Advanced Analytics Option Machine Learning on SPARC ML training SPARC M7 up to 1.4x faster per core than x86 Predict Train Supervi sed Cluster Model Training: Creating Model from data Oracle Advanced Analytics in Oracle Database 12.2 SPARC M7 faster per core on training 64-bit floating point intensive In-memory 640 million records, Airline On-time dataset SGD (Stochastic Gradient Descent) IPM (Interior Point Method) Attributes M8-2 2-chip M8 per core vs X6-2 GLM Classification s 1.2x SVM SGD Solver s 1.4x SVM IPM Solver s 1.2x GLM Regression s 1.2x K-Means s 1.4x Expectation Maximization s 0.8x Copyright 2016, Oracle and/or its affiliates. All rights reserved. "per core = (server performance)/(server core count)" 32

33 Machine Learning and Advanced Analytics Functionality Overview Copyright 2016, Oracle and/or its affiliates. All rights reserved.

34 Dilbert on Big Data 3

35 Machine Learning/Analytics + Data Warehouse + Hadoop/Spark Platform Sprawl s Inherent Problems Complexity Data Movement Duplicated Data Data Latency Security exposures Duplicated Storage Duplicated Backups Duplicated Systems Dupicated Space and Power

36 Traditional vs. Oracle Machine Learning/Predictive Analtyics Traditional Move the data Don t move the data! 3

37 Traditional vs. Oracle Machine Learning/Predictive Analtyics Traditional Move the data Move the algorithms Simpler, Smarter Data Management + Analytics / Machine Learning Architecture

38 Oracle s Machine Learning/Advanced Analytics Fastest Way to Deliver Enterprise-wide Predictive Analytics Major Benefits Data remains in Database & Hadoop Model building and scoring occur in-database Use R packages with data-parallel invocations Leverage investment in Oracle IT Eliminate data duplication Eliminate separate analytical servers Deliver enterprise-wide applications GUI for ML/Predictive Analytics & code gen R interface leverages database as HPC engine Traditional Analytics Data Import Data Mining Model Scoring Data Prep. & Transformation Data Mining Model Building Data Prep & Transformation Data Extraction Hours, Days or Weeks Oracle Advanced Analytics avings Model Scoring Embedded Data Prep Model Building Data Preparation Secs, Mins or Hours Copyright 2016, Oracle and/or its affiliates. All rights reserved.

39 Oracle s Machine Learning/Advanced Analytics Fastest Way to Deliver Scalable Enterprise-wide Predictive Analytics Key Features Parallel, scalable data mining algorithms and R integration In-Database + Hadoop Don t move the data Data analysts, data scientists & developers Drag and drop workflow, R and SQL APIs Extends data management into powerful advanced/predictive analytics platform Enables enterprise predictive analytics deployment + applications

40 Oracle s Machine Learning & Adv. Analytics Algorithms CLASSIFICATION Naïve Bayes Logistic Regression (GLM) Decision Tree Random Forest Neural Network Support Vector Machine CLUSTERING Hierarchical K-Means Hierarchical O-Cluster Expectation Maximization (EM) ANOMALY DETECTION One-Class SVM TIME SERIES Holt-Winters, Regular & Irregular, with and w/o trends & seasonal Single, Double Exp Smoothing REGRESSION Linear Model Generalized Linear Model Support Vector Machine (SVM) Stepwise Linear regression Neural Network LASSO 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 A1 A2 A3 A4 A5 A6 A7 OAA (Oracle Data Mining + Oracle R Enterprise) and ORAAH combined OAA includes support for Partitioned Models, Transactional, Unstructured, Geo-spatial, Graph data. etc, FEATURE EXTRACTION Principal Comp Analysis (PCA) Non-negative Matrix Factorization Singular Value Decomposition (SVD) Explicit Semantic Analysis (ESA) TEXT MINING SUPPORT Algorithms support text type 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 PACKAGES CRAN R Algorithm Packages through Embedded R Execution Spark MLlib algorithm integration EXPORTABLE ML MODELS C and Java code for deployment

41 You Can Think of Oracle s Advanced Analytics Like This Traditional SQL Oracle Advanced Analytics - SQL & Human-driven queries Domain expertise Any rules must be defined and managed Automated knowledge discovery, model building and deployment Domain expertise to assemble the right data to mine/analyze SQL Queries Analytical SQL Verbs SELECT DISTINCT AGGREGATE WHERE AND OR GROUP BY ORDER BY RANK + PREDICT DETECT CLUSTER CLASSIFY REGRESS PROFILE IDENTIFY FACTORS ASSOCIATE Oracle Cloud Copyright 2016, Oracle and/or its affiliates. All rights reserved.

42 Oracle Advanced Analytics How Oracle R Enterprise Compute Engines Work Oracle Cloud Other R packages R-> SQL Oracle Database 12c R R Engine Other R packages Oracle R Enterprise (ORE) packages Results Results Oracle R Enterprise packages 1 R-> SQL Transparency Push-Down 2 In-Database Adv Analytical SQL Functions 3 Embedded R Package Callouts R language for interaction with the database R-SQL Transparency Framework overloads R functions for scalable in-database execution Function overload for data selection, manipulation and transforms Interactive display of graphical results and flow control as in standard R Submit user-defined R functions for execution at database server under control of Oracle Database 30+ Powerful data mining algorithms (regression, clustering, AR, DT, etc._ Run Oracle Data Mining SQL data mining functioning (ORE.odmSVM, ORE.odmDT, etc.) Speak R but executes as proprietary indatabase SQL functions machine learning algorithms and statistical functions Leverage database strengths: SQL parallelism, scale to large datasets, security Access big data in Database and Hadoop via SQL, R, and Big Data SQL R Engine(s) spawned by Oracle DB for database-managed parallelism ore.groupapply high performance scoring Efficient data transfer to spawned R engines Emulate map-reduce style algorithms and applications Enables production deployment and automated execution of R scripts Copyright 2016, Oracle and/or its affiliates. All rights reserved.

43 Oracle s Machine Learning/Advanced Analytics Platforms Machine Learning Algorithms Embedded in the Data Management Platforms Analytics Producers Analytics Consumers Data Scientists, R Users, Citizen Data Scientists BI Analysts, Managers Functional Users (HCM, CRM) Data Management + Advanced Analytical Platform Big Data SQL Big Data Cloud Service Oracle Machine Learning Big Data Cloud ORAAH Machine Learning Algorithms, Statistical Functions + R Integration for Scalable, Parallel, Distributed Execution Database Cloud Oracle Machine Learning Database Edition Machine Learning Algorithms, Statistical Functions + R Integration for Scalable, Parallel, Distributed, in-db Execution

44 Manage and Analyze All Your Data Data Scientists, R Users, Citizen Data Scientists Architecturally, Many Options and Flexibility SQL / R Boil down the Data Like Big Data SQL / R Object Store Engineered Features Derived attributes that reflect domain knowledge key to best models e.g: Counts Totals Changes over time 4

45 Why Oracle? Because that s where the data is! Larry Ellison, Executive Chairman and CTO of Oracle Corporation 45

46 Oracle Data Miner workflow UI Oracle SQL Developer extention; Easy to Use for Citizen Data Scientist Easy to use to define analytical methodologies that can be shared SQL Developer Extension Workflow API and generates SQL code for immediate deployment Oracle Cloud

47 Rapidly Build, Evaluate & Deploy Analytical Methodologies Leveraging a Variety of Data Sources and Types SQL Joins and arbitrary SQL transforms & queries power of SQL Transactional POS data Modeling Approaches Inline predictive model to augment input data Unstructured data also mined by algorithms Consider: Demographics Past purchases Recent purchases Comments & tweets Generates SQL scripts and workflow API for deployment

48

49 Oracle Machine Learning Machine Learning Notebook for Autonomous Data Warehouse Cloud Key Features Collaborative UI for data scientists Packaged with Autonomous Data Warehouse Cloud (V1) Easy access to shared notebooks, templates, permissions, scheduler, etc. SQL ML algorithms API (V1) Supports deployment of ML analytics

50

51 Confidential Oracle 51

52

Oracle Machine Learning Notebook

Oracle Machine Learning Notebook Oracle Machine Learning Notebook Included in Autonomous Data Warehouse Cloud Charlie Berger, MS Engineering, MBA Sr. Director Product Management, Machine Learning, AI and Cognitive Analytics charlie.berger@oracle.com

More information

Oracle Machine Learning Notebook

Oracle Machine Learning Notebook Oracle Machine Learning Notebook Included in Autonomous Data Warehouse Cloud Charlie Berger, MS Engineering, MBA Sr. Director Product Management, Machine Learning, AI and Cognitive Analytics charlie.berger@oracle.com

More information

Take Your Analytics to the Next Level of Insight using Machine Learning in the Oracle Autonomous Data Warehouse

Take Your Analytics to the Next Level of Insight using Machine Learning in the Oracle Autonomous Data Warehouse Take Your Analytics to the Next Level of Insight using Machine Learning in the Oracle Autonomous Data Warehouse Charlie Berger, MS Engineering, MBA Sr. Director Product Management, Machine Learning, AI

More information

Oracle s Machine Learning and Advanced Analytics Release 12.2 and Oracle Data Miner 4.2 New Features

Oracle s Machine Learning and Advanced Analytics Release 12.2 and Oracle Data Miner 4.2 New Features Oracle s Machine Learning and Advanced Analytics Release 12.2 and Oracle Data Miner 4.2 New Features Move the Algorithms; Not the Data! Charlie Berger, MS Engineering, MBA Sr. Director Product Management,

More information

Big Data Analytics with Oracle Advanced Analytics 12c and Big Data SQL

Big Data Analytics with Oracle Advanced Analytics 12c and Big Data SQL Big Data Analytics with Oracle Advanced Analytics 12c and Big Data SQL Make Big Data + Analytics Simple Charlie Berger, MS Engineering, MBA Sr. Director Product Management, Data Mining and Advanced Analytics

More information

Oracle Machine Learning & Advanced Analytics

Oracle Machine Learning & Advanced Analytics Oracle Machine Learning & Advanced Analytics Data Management Platforms Move the Algorithms; Not the Data! Detlef E. Schröder Master Principal Sales Consultant Machine Learning, AI and Cognitive Analytics

More information

Oracle Data Mining 11g Release 2

Oracle Data Mining 11g Release 2 Oracle Data Mining 11g Release 2 Charlie Berger Sr. Director Product Management, Data Mining Technologies Oracle Corporation charlie.berger@oracle.com www.twitter.com/charliedatamine 11 years stem celling

More information

Oracle s Machine Learning and Advanced Analytics Data Management Platforms. Move the Algorithms; Not the Data

Oracle s Machine Learning and Advanced Analytics Data Management Platforms. Move the Algorithms; Not the Data Oracle s Machine Learning and Advanced Analytics Data Management Platforms Move the Algorithms; Not the Data Disclaimer The following is intended to outline our general product direction. It is intended

More information

Introducing Oracle Machine Learning

Introducing Oracle Machine Learning Introducing Oracle Machine Learning A Collaborative Zeppelin notebook for Oracle s machine learning capabilities Charlie Berger Marcos Arancibia Mark Hornick Advanced Analytics and Machine Learning Copyright

More information

Fault Detection using Advanced Analytics at CERN's Large Hadron Collider: Too Hot or Too Cold BIWA Summit 2016

Fault Detection using Advanced Analytics at CERN's Large Hadron Collider: Too Hot or Too Cold BIWA Summit 2016 Fault Detection using Advanced Analytics at CERN's Large Hadron Collider: Too Hot or Too Cold BIWA Summit 2016 Mark Hornick, Director, Advanced Analytics January 27, 2016 Safe Harbor Statement The following

More information

Outrun Your Competition With SAS In-Memory Analytics Sascha Schubert Global Technology Practice, SAS

Outrun Your Competition With SAS In-Memory Analytics Sascha Schubert Global Technology Practice, SAS Outrun Your Competition With SAS In-Memory Analytics Sascha Schubert Global Technology Practice, SAS Topics AGENDA Challenges with Big Data Analytics How SAS can help you to minimize time to value with

More information

Oracle Big Data, Machine Learning, DW OOW újdonságok

Oracle Big Data, Machine Learning, DW OOW újdonságok Oracle Big Data, Machine Learning, DW OOW újdonságok Fekete Zoltán Platform principal presales consultant Safe Harbor Statement The following is intended to outline our general product direction. It is

More information

Getting Started with Advanced Analytics in Finance, Marketing, and Operations

Getting Started with Advanced Analytics in Finance, Marketing, and Operations Getting Started with Advanced Analytics in Finance, Marketing, and Operations Southwest Regional Oracle Applications User Group Dan Vlamis February 24, 2017 @VlamisSoftware Vlamis Software Solutions Vlamis

More information

Oracle Big Data Science

Oracle Big Data Science Oracle Big Data Science Tim Vlamis and Dan Vlamis Vlamis Software Solutions 816-781-2880 www.vlamis.com @VlamisSoftware Vlamis Software Solutions Vlamis Software founded in 1992 in Kansas City, Missouri

More information

Event: PASS SQL Saturday - DC 2018 Presenter: Jon Tupitza, CTO Architect

Event: PASS SQL Saturday - DC 2018 Presenter: Jon Tupitza, CTO Architect Event: PASS SQL Saturday - DC 2018 Presenter: Jon Tupitza, CTO Architect BEOP.CTO.TP4 Owner: OCTO Revision: 0001 Approved by: JAT Effective: 08/30/2018 Buchanan & Edwards Proprietary: Printed copies of

More information

Oracle R Technologies

Oracle R Technologies Oracle R Technologies R for the Enterprise Mark Hornick, Director, Oracle Advanced Analytics @MarkHornick mark.hornick@oracle.com Safe Harbor Statement The following is intended to outline our general

More information

Oracle s Machine Learning and Advanced Analytics

Oracle s Machine Learning and Advanced Analytics Oracle s Machine Learning and Advanced Analytics Machine Learning Algorithms Embedded in Data Management Platforms O R A C L E W H I T E P A P E R M A Y 2017 Disclaimer The following is intended to outline

More information

Oracle Big Data Discovery

Oracle Big Data Discovery Oracle Big Data Discovery Turning Data into Business Value Harald Erb Oracle Business Analytics & Big Data 1 Safe Harbor Statement The following is intended to outline our general product direction. It

More information

Accelerate your SAS analytics to take the gold

Accelerate your SAS analytics to take the gold Accelerate your SAS analytics to take the gold A White Paper by Fuzzy Logix Whatever the nature of your business s analytics environment we are sure you are under increasing pressure to deliver more: more

More information

Oracle Big Data Science IOUG Collaborate 16

Oracle Big Data Science IOUG Collaborate 16 Oracle Big Data Science IOUG Collaborate 16 Session 4762 Tim and Dan Vlamis Tuesday, April 12, 2016 Vlamis Software Solutions Vlamis Software founded in 1992 in Kansas City, Missouri Developed 200+ Oracle

More information

Deploying, Managing and Reusing R Models in an Enterprise Environment

Deploying, Managing and Reusing R Models in an Enterprise Environment Deploying, Managing and Reusing R Models in an Enterprise Environment Making Data Science Accessible to a Wider Audience Lou Bajuk-Yorgan, Sr. Director, Product Management Streaming and Advanced Analytics

More information

Spotfire Data Science with Hadoop Using Spotfire Data Science to Operationalize Data Science in the Age of Big Data

Spotfire Data Science with Hadoop Using Spotfire Data Science to Operationalize Data Science in the Age of Big Data Spotfire Data Science with Hadoop Using Spotfire Data Science to Operationalize Data Science in the Age of Big Data THE RISE OF BIG DATA BIG DATA: A REVOLUTION IN ACCESS Large-scale data sets are nothing

More information

Massive Scalability With InterSystems IRIS Data Platform

Massive Scalability With InterSystems IRIS Data Platform Massive Scalability With InterSystems IRIS Data Platform Introduction Faced with the enormous and ever-growing amounts of data being generated in the world today, software architects need to pay special

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 ! 2 Oracle VM Introduction Adam Hawley, Senior Director Virtualization, Oracle January 15, 2013 Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

Machine Learning In A Snap. Thomas Parnell Research Staff Member IBM Research - Zurich

Machine Learning In A Snap. Thomas Parnell Research Staff Member IBM Research - Zurich Machine Learning In A Snap Thomas Parnell Research Staff Member IBM Research - Zurich What are GLMs? Ridge Regression Support Vector Machines Regression Generalized Linear Models Classification Lasso Regression

More information

Oracle Big Data Connectors

Oracle Big Data Connectors Oracle Big Data Connectors Oracle Big Data Connectors is a software suite that integrates processing in Apache Hadoop distributions with operations in Oracle Database. It enables the use of Hadoop to process

More information

Modern and Fast: A New Wave of Database and Java in the Cloud. Joost Pronk Van Hoogeveen Lead Product Manager, Oracle

Modern and Fast: A New Wave of Database and Java in the Cloud. Joost Pronk Van Hoogeveen Lead Product Manager, Oracle Modern and Fast: A New Wave of Database and Java in the Cloud Joost Pronk Van Hoogeveen Lead Product Manager, Oracle Scott Lynn Director of Product Management, Oracle Linux and Oracle Solaris, Oracle October

More information

Oracle 1Z0-515 Exam Questions & Answers

Oracle 1Z0-515 Exam Questions & Answers Oracle 1Z0-515 Exam Questions & Answers Number: 1Z0-515 Passing Score: 800 Time Limit: 120 min File Version: 38.7 http://www.gratisexam.com/ Oracle 1Z0-515 Exam Questions & Answers Exam Name: Data Warehousing

More information

ADVANCED ANALYTICS USING SAS ENTERPRISE MINER RENS FEENSTRA

ADVANCED ANALYTICS USING SAS ENTERPRISE MINER RENS FEENSTRA INSIGHTS@SAS: ADVANCED ANALYTICS USING SAS ENTERPRISE MINER RENS FEENSTRA AGENDA 09.00 09.15 Intro 09.15 10.30 Analytics using SAS Enterprise Guide Ellen Lokollo 10.45 12.00 Advanced Analytics using SAS

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Introduction to Data Mining and Data Analytics

Introduction to Data Mining and Data Analytics 1/28/2016 MIST.7060 Data Analytics 1 Introduction to Data Mining and Data Analytics What Are Data Mining and Data Analytics? Data mining is the process of discovering hidden patterns in data, where Patterns

More information

Introducing Microsoft SQL Server 2016 R Services. Julian Lee Advanced Analytics Lead Global Black Belt Asia Timezone

Introducing Microsoft SQL Server 2016 R Services. Julian Lee Advanced Analytics Lead Global Black Belt Asia Timezone Introducing Microsoft SQL Server 2016 R Services Julian Lee Advanced Analytics Lead Global Black Belt Asia Timezone SQL Server 2016: Everything built-in built-in built-in built-in built-in built-in $2,230

More information

Graph Analytics and Machine Learning A Great Combination Mark Hornick

Graph Analytics and Machine Learning A Great Combination Mark Hornick Graph Analytics and Machine Learning A Great Combination Mark Hornick Oracle Advanced Analytics and Machine Learning November 3, 2017 Safe Harbor Statement The following is intended to outline our research

More information

This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and

This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and AI and Visual Analytics: Machine Learning in Business Operations Steven Hillion Senior Director, Data Science Anshuman Mishra Principal Data Scientist DISCLAIMER During the course of this presentation,

More information

New Features in Oracle Data Miner 4.2. The new features in Oracle Data Miner 4.2 include: The new Oracle Data Mining features include:

New Features in Oracle Data Miner 4.2. The new features in Oracle Data Miner 4.2 include: The new Oracle Data Mining features include: Oracle Data Miner Release Notes Release 4.2 E64607-03 March 2017 This document provides late-breaking information and information that is not yet part of the formal documentation. This document contains

More information

Week 1 Unit 1: Introduction to Data Science

Week 1 Unit 1: Introduction to Data Science Week 1 Unit 1: Introduction to Data Science The next 6 weeks What to expect in the next 6 weeks? 2 Curriculum flow (weeks 1-3) Business & Data Understanding 1 2 3 Data Preparation Modeling (1) Introduction

More information

An Oracle White Paper October Oracle Social Cloud Platform Text Analytics

An Oracle White Paper October Oracle Social Cloud Platform Text Analytics An Oracle White Paper October 2012 Oracle Social Cloud Platform Text Analytics Executive Overview Oracle s social cloud text analytics platform is able to process unstructured text-based conversations

More information

Oracle R Enterprise Platform and Configuration Requirements Oracle R Enterprise runs on 64-bit platforms only.

Oracle R Enterprise Platform and Configuration Requirements Oracle R Enterprise runs on 64-bit platforms only. Oracle R Enterprise Release Notes Release 1.5.1 E83205-02 April 2017 These release notes contain important information about Release 1.5.1 of Oracle R Enterprise. New Features in Oracle R Enterprise 1.5.1

More information

In-Database Analytics: Predictive Analytics, Data Mining, Oracle Exadata and Oracle Business Intelligence

In-Database Analytics: Predictive Analytics, Data Mining, Oracle Exadata and Oracle Business Intelligence In-Database Analytics: Predictive Analytics, Data Mining, Oracle Exadata and Oracle Business Intelligence Detlef E. Schröder Leitender Systemberater STCC DB Mitte detlef.e.schroeder@oracle.com www.oracledwh.de

More information

C5##54&6*"6*1%2345*D&'*E2)2*F"4G)&"69

C5##54&6*6*1%2345*D&'*E2)2*F4G)&69 ?23(&65*@52%6&6'*A&)(*B*267* C5##54&6*"6*1%2345*D&'*E2)2*F"4G)&"69!"#$%&'%(?2%3"9*

More information

Scaled Machine Learning at Matroid

Scaled Machine Learning at Matroid Scaled Machine Learning at Matroid Reza Zadeh @Reza_Zadeh http://reza-zadeh.com Machine Learning Pipeline Learning Algorithm Replicate model Data Trained Model Serve Model Repeat entire pipeline Scaling

More information

Distributed Machine Learning" on Spark

Distributed Machine Learning on Spark Distributed Machine Learning" on Spark Reza Zadeh @Reza_Zadeh http://reza-zadeh.com Outline Data flow vs. traditional network programming Spark computing engine Optimization Example Matrix Computations

More information

Additional License Authorizations. For Vertica software products

Additional License Authorizations. For Vertica software products Additional License Authorizations Products and suites covered Products E-LTU or E-Media available * Perpetual License Non-production use category ** Term License Non-production use category (if available)

More information

The Oracle Trust Fabric Securing the Cloud Journey

The Oracle Trust Fabric Securing the Cloud Journey The Oracle Trust Fabric Securing the Cloud Journey Eric Olden Senior Vice President and General Manager Cloud Security and Identity 05.07.2018 Safe Harbor Statement The following is intended to outline

More information

The Definitive Guide to Preparing Your Data for Tableau

The Definitive Guide to Preparing Your Data for Tableau The Definitive Guide to Preparing Your Data for Tableau Speed Your Time to Visualization If you re like most data analysts today, creating rich visualizations of your data is a critical step in the analytic

More information

TIBCO Spotfire Statement of Direction. Spotfire Product Management

TIBCO Spotfire Statement of Direction. Spotfire Product Management TIBCO Spotfire Statement of Direction Spotfire Product Management CONFIDENTIALITY The following information is confidential information of TIBCO Software Inc. Use, duplication, transmission, or republication

More information

Oracle Database Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE

Oracle Database Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata combines the best database with the best cloud platform. Exadata is the culmination of more

More information

Matrix Computations and " Neural Networks in Spark

Matrix Computations and  Neural Networks in Spark Matrix Computations and " Neural Networks in Spark Reza Zadeh Paper: http://arxiv.org/abs/1509.02256 Joint work with many folks on paper. @Reza_Zadeh http://reza-zadeh.com Training Neural Networks Datasets

More information

Autonomous Data Warehouse in the Cloud

Autonomous Data Warehouse in the Cloud AUTONOMOUS DATA WAREHOUSE CLOUD` Connecting Your To Autonomous in the Cloud DWCS What is It? Oracle Autonomous Database Warehouse Cloud is fully-managed, highperformance, and elastic. You will have all

More information

Shine a Light on Dark Data with Vertica Flex Tables

Shine a Light on Dark Data with Vertica Flex Tables White Paper Analytics and Big Data Shine a Light on Dark Data with Vertica Flex Tables Hidden within the dark recesses of your enterprise lurks dark data, information that exists but is forgotten, unused,

More information

Combining Graph and Machine Learning Technology using R

Combining Graph and Machine Learning Technology using R Combining Graph and Machine Learning Technology using R Hassan Chafi Oracle Labs Mark Hornick Oracle Advanced Analytics February 2, 2017 Safe Harbor Statement The following is intended to outline our research

More information

Convergence and Collaboration: Transforming Business Process and Workflows

Convergence and Collaboration: Transforming Business Process and Workflows Convergence and Collaboration: Transforming Business Process and Workflows Steven Hagan, Vice President, Server Technologies 1 Copyright 2011, Oracle and/or its affiliates. All rights Convergence & Collaboration:

More information

Oracle Data Mining Concepts. 18c

Oracle Data Mining Concepts. 18c Oracle Data Mining Concepts 18c E83730-01 February 2018 Oracle Data Mining Concepts, 18c E83730-01 Copyright 2005, 2018, Oracle and/or its affiliates. All rights reserved. Primary Author: Sarika Surampudi

More information

End-to-End data mining feature integration, transformation and selection with Datameer Datameer, Inc. All rights reserved.

End-to-End data mining feature integration, transformation and selection with Datameer Datameer, Inc. All rights reserved. End-to-End data mining feature integration, transformation and selection with Datameer Fastest time to Insights Rapid Data Integration Zero coding data integration Wizard-led data integration & No ETL

More information

Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Beyond SQL Tuning: Insider's Guide to Maximizing SQL Performance Monday, Oct 22 10:30 a.m. - 11:15 a.m. Marriott Marquis (Golden Gate Level) - Golden Gate A Ashish Agrawal Group Product Manager Oracle

More information

<Insert Picture Here> DBA s New Best Friend: Advanced SQL Tuning Features of Oracle Database 11g

<Insert Picture Here> DBA s New Best Friend: Advanced SQL Tuning Features of Oracle Database 11g DBA s New Best Friend: Advanced SQL Tuning Features of Oracle Database 11g Peter Belknap, Sergey Koltakov, Jack Raitto The following is intended to outline our general product direction.

More information

BUILT FOR THE SPEED OF BUSINESS

BUILT FOR THE SPEED OF BUSINESS BUILT FOR THE SPEED OF BUSINESS 2 Pivotal MPP Databases and In-Database Analytics Shengwen Yang 2013-12-08 Outline About Pivotal Pivotal Greenplum Database The Crown Jewels of Greenplum (HAWQ) In-Database

More information

DATA INTEGRATION PLATFORM CLOUD. Experience Powerful Data Integration in the Cloud

DATA INTEGRATION PLATFORM CLOUD. Experience Powerful Data Integration in the Cloud DATA INTEGRATION PLATFORM CLOUD Experience Powerful Integration in the Want a unified, powerful, data-driven solution for all your data integration needs? Oracle Integration simplifies your data integration

More information

Oracle and Tangosol Acquisition Announcement

Oracle and Tangosol Acquisition Announcement Oracle and Tangosol Acquisition Announcement March 23, 2007 The following is intended to outline our general product direction. It is intended for information purposes only, and may

More information

Build a system health check for Db2 using IBM Machine Learning for z/os

Build a system health check for Db2 using IBM Machine Learning for z/os Build a system health check for Db2 using IBM Machine Learning for z/os Jonathan Sloan Senior Analytics Architect, IBM Analytics Agenda A brief machine learning overview The Db2 ITOA model solutions template

More information

CHAPTER. Oracle Data Miner

CHAPTER. Oracle Data Miner CHAPTER 1 Oracle Data Miner 4 Predictive Analytics Using Oracle Data Miner Understanding your data and gaining an insight into the behavior of your data (and hence your customers) have been goals that

More information

UNLEASHING THE VALUE OF THE TERADATA UNIFIED DATA ARCHITECTURE WITH ALTERYX

UNLEASHING THE VALUE OF THE TERADATA UNIFIED DATA ARCHITECTURE WITH ALTERYX UNLEASHING THE VALUE OF THE TERADATA UNIFIED DATA ARCHITECTURE WITH ALTERYX 1 Successful companies know that analytics are key to winning customer loyalty, optimizing business processes and beating their

More information

Netezza The Analytics Appliance

Netezza The Analytics Appliance Software 2011 Netezza The Analytics Appliance Michael Eden Information Management Brand Executive Central & Eastern Europe Vilnius 18 October 2011 Information Management 2011IBM Corporation Thought for

More information

Scalable Machine Learning in R. with H2O

Scalable Machine Learning in R. with H2O Scalable Machine Learning in R with H2O Erin LeDell @ledell DSC July 2016 Introduction Statistician & Machine Learning Scientist at H2O.ai in Mountain View, California, USA Ph.D. in Biostatistics with

More information

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved. Database Level 100 Rohit Rahi November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Activator Library. Focus on maximizing the value of your data, gain business insights, increase your team s productivity, and achieve success.

Activator Library. Focus on maximizing the value of your data, gain business insights, increase your team s productivity, and achieve success. Focus on maximizing the value of your data, gain business insights, increase your team s productivity, and achieve success. ACTIVATORS Designed to give your team assistance when you need it most without

More information

Power your cloud infrastructure with Oracle VM and Cisco!

Power your cloud infrastructure with Oracle VM and Cisco! Power your cloud infrastructure with Oracle VM and Cisco! John Priest Director PM Oracle VM October 26/27, 2015 Safe Harbor Statement The following is intended to outline our general product direction.

More information

Correlative Analytic Methods in Large Scale Network Infrastructure Hariharan Krishnaswamy Senior Principal Engineer Dell EMC

Correlative Analytic Methods in Large Scale Network Infrastructure Hariharan Krishnaswamy Senior Principal Engineer Dell EMC Correlative Analytic Methods in Large Scale Network Infrastructure Hariharan Krishnaswamy Senior Principal Engineer Dell EMC 2018 Storage Developer Conference. Dell EMC. All Rights Reserved. 1 Data Center

More information

Approaching the Petabyte Analytic Database: What I learned

Approaching the Petabyte Analytic Database: What I learned Disclaimer This document is for informational purposes only and is subject to change at any time without notice. The information in this document is proprietary to Actian and no part of this document may

More information

Apache Spark Graph Performance with Memory1. February Page 1 of 13

Apache Spark Graph Performance with Memory1. February Page 1 of 13 Apache Spark Graph Performance with Memory1 February 2017 Page 1 of 13 Abstract Apache Spark is a powerful open source distributed computing platform focused on high speed, large scale data processing

More information

Automating Information Lifecycle Management with

Automating Information Lifecycle Management with Automating Information Lifecycle Management with Oracle Database 2c The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

2-4 April 2019 Taets Art and Event Park, Amsterdam CLICK TO KNOW MORE

2-4 April 2019 Taets Art and Event Park, Amsterdam CLICK TO KNOW MORE Co-Host Host 2-4 April 2019 Taets Art and Event Park, Amsterdam CLICK TO KNOW MORE Oracle Cloud Computing Strategy Han Wammes Public Sector Market Development Manager 1 Copyright 2012, Oracle and/or its

More information

Decision models for the Digital Economy

Decision models for the Digital Economy Decision Camp 2017 Birbeck, University of London Decision models for the Digital Economy Vijay Bandekar InteliOps Inc. Agenda Problem Statement Proposed Solution Case studies and results Key takeaways

More information

Big Data The end of Data Warehousing?

Big Data The end of Data Warehousing? Big Data The end of Data Warehousing? Hermann Bär Oracle USA Redwood Shores, CA Schlüsselworte Big data, data warehousing, advanced analytics, Hadoop, unstructured data Introduction If there was an Unwort

More information

Trouble-free Upgrade to Oracle Database 12c with Real Application Testing

Trouble-free Upgrade to Oracle Database 12c with Real Application Testing Trouble-free Upgrade to Oracle Database 12c with Real Application Testing Kurt Engeleiter Principal Product Manager Safe Harbor Statement The following is intended to outline our general product direction.

More information

Adds Leading AI Data Engine to Oracle Cloud Applications, Providing Dynamic and Insightful Company-Level Data to Power Even Smarter Decisions

Adds Leading AI Data Engine to Oracle Cloud Applications, Providing Dynamic and Insightful Company-Level Data to Power Even Smarter Decisions Oracle Buys DataFox Adds Leading AI Data Engine to Oracle Cloud Applications, Providing Dynamic and Insightful Company-Level Data to Power Even Smarter Decisions October 31, 2018 Oracle is currently reviewing

More information

DATA MINING AND WAREHOUSING

DATA MINING AND WAREHOUSING DATA MINING AND WAREHOUSING Qno Question Answer 1 Define data warehouse? Data warehouse is a subject oriented, integrated, time-variant, and nonvolatile collection of data that supports management's decision-making

More information

Doing the Data Science Dance

Doing the Data Science Dance Doing the Data Science Dance Dean Abbott Abbott Analytics, SmarterHQ KNIME Fall Summit 2018 Email: dean@abbottanalytics.com Twitter: @deanabb 1 Data Science vs. Other Labels 2 Google Trends 3 Abbott Analytics,

More information

Data-Intensive Distributed Computing

Data-Intensive Distributed Computing Data-Intensive Distributed Computing CS 451/651 431/631 (Winter 2018) Part 5: Analyzing Relational Data (1/3) February 8, 2018 Jimmy Lin David R. Cheriton School of Computer Science University of Waterloo

More information

The Teradata Enterprise Analytic Data Set

The Teradata Enterprise Analytic Data Set Data Warehousing > Advanced Analytics The Teradata Enterprise Analytic Data Set By: Bill Franks, Partner, Teradata Advanced Business Analytics Table of Contents Introduction 2 What Is an Enterprise Analytic

More information

Session 7: Oracle R Enterprise OAAgraph Package

Session 7: Oracle R Enterprise OAAgraph Package Session 7: Oracle R Enterprise 1.5.1 OAAgraph Package Oracle Spatial and Graph PGX Graph Algorithms Oracle R Technologies Mark Hornick Director, Oracle Advanced Analytics and Machine Learning July 2017

More information

INTRODUCTION... 2 FEATURES OF DARWIN... 4 SPECIAL FEATURES OF DARWIN LATEST FEATURES OF DARWIN STRENGTHS & LIMITATIONS OF DARWIN...

INTRODUCTION... 2 FEATURES OF DARWIN... 4 SPECIAL FEATURES OF DARWIN LATEST FEATURES OF DARWIN STRENGTHS & LIMITATIONS OF DARWIN... INTRODUCTION... 2 WHAT IS DATA MINING?... 2 HOW TO ACHIEVE DATA MINING... 2 THE ROLE OF DARWIN... 3 FEATURES OF DARWIN... 4 USER FRIENDLY... 4 SCALABILITY... 6 VISUALIZATION... 8 FUNCTIONALITY... 10 Data

More information

Progress DataDirect For Business Intelligence And Analytics Vendors

Progress DataDirect For Business Intelligence And Analytics Vendors Progress DataDirect For Business Intelligence And Analytics Vendors DATA SHEET FEATURES: Direction connection to a variety of SaaS and on-premises data sources via Progress DataDirect Hybrid Data Pipeline

More information

Optimizing Your Analytics Life Cycle with SAS & Teradata. Rick Lower

Optimizing Your Analytics Life Cycle with SAS & Teradata. Rick Lower Optimizing Your Analytics Life Cycle with SAS & Teradata Rick Lower 1 Agenda The Analytic Life Cycle Common Problems SAS & Teradata solutions Analytical Life Cycle Exploration Explore All Your Data Preparation

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Real Time Summarization. Copyright 2014, Oracle and/or its affiliates. All rights reserved.

Real Time Summarization. Copyright 2014, Oracle and/or its affiliates. All rights reserved. Real Time Summarization Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract.

More information

S8765 Performance Optimization for Deep- Learning on the Latest POWER Systems

S8765 Performance Optimization for Deep- Learning on the Latest POWER Systems S8765 Performance Optimization for Deep- Learning on the Latest POWER Systems Khoa Huynh Senior Technical Staff Member (STSM), IBM Jonathan Samn Software Engineer, IBM Evolving from compute systems to

More information

Oracle Exadata: Strategy and Roadmap

Oracle Exadata: Strategy and Roadmap Oracle Exadata: Strategy and Roadmap - New Technologies, Cloud, and On-Premises Juan Loaiza Senior Vice President, Database Systems Technologies, Oracle Safe Harbor Statement The following is intended

More information

Harp-DAAL for High Performance Big Data Computing

Harp-DAAL for High Performance Big Data Computing Harp-DAAL for High Performance Big Data Computing Large-scale data analytics is revolutionizing many business and scientific domains. Easy-touse scalable parallel techniques are necessary to process big

More information

Performance Innovations with Oracle Database In-Memory

Performance Innovations with Oracle Database In-Memory Performance Innovations with Oracle Database In-Memory Eric Cohen Solution Architect Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

More information

CS535 Big Data Fall 2017 Colorado State University 10/10/2017 Sangmi Lee Pallickara Week 8- A.

CS535 Big Data Fall 2017 Colorado State University   10/10/2017 Sangmi Lee Pallickara Week 8- A. CS535 Big Data - Fall 2017 Week 8-A-1 CS535 BIG DATA FAQs Term project proposal New deadline: Tomorrow PA1 demo PART 1. BATCH COMPUTING MODELS FOR BIG DATA ANALYTICS 5. ADVANCED DATA ANALYTICS WITH APACHE

More information

Recent Innovations in Data Storage Technologies Dr Roger MacNicol Software Architect

Recent Innovations in Data Storage Technologies Dr Roger MacNicol Software Architect Recent Innovations in Data Storage Technologies Dr Roger MacNicol Software Architect Copyright 2017, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The following is intended to

More information

Oracle9i Data Mining. Data Sheet August 2002

Oracle9i Data Mining. Data Sheet August 2002 Oracle9i Data Mining Data Sheet August 2002 Oracle9i Data Mining enables companies to build integrated business intelligence applications. Using data mining functionality embedded in the Oracle9i Database,

More information

Gain Greater Productivity in Enterprise Data Mining

Gain Greater Productivity in Enterprise Data Mining Clementine 9.0 Specifications Gain Greater Productivity in Enterprise Data Mining Discover patterns and associations in your organization s data and make decisions that lead to significant, measurable

More information

Spotfire: Brisbane Breakfast & Learn. Thursday, 9 November 2017

Spotfire: Brisbane Breakfast & Learn. Thursday, 9 November 2017 Spotfire: Brisbane Breakfast & Learn Thursday, 9 November 2017 CONFIDENTIALITY The following information is confidential information of TIBCO Software Inc. Use, duplication, transmission, or republication

More information

WHITEPAPER. Pipelining Machine Learning Models Together

WHITEPAPER. Pipelining Machine Learning Models Together WHITEPAPER Pipelining Machine Learning Models Together Table of Contents Introduction 2 Performance and Organizational Benefits of Pipelining 4 Practical Use Case: Twitter Sentiment Analysis 5 Practical

More information

Oracle9i Data Mining. An Oracle White Paper December 2001

Oracle9i Data Mining. An Oracle White Paper December 2001 Oracle9i Data Mining An Oracle White Paper December 2001 Oracle9i Data Mining Benefits and Uses of Data Mining... 2 What Is Data Mining?... 3 Data Mining Concepts... 4 Using the Past to Predict the Future...

More information

Think & Work like a Data Scientist with SQL 2016 & R DR. SUBRAMANI PARAMASIVAM (MANI)

Think & Work like a Data Scientist with SQL 2016 & R DR. SUBRAMANI PARAMASIVAM (MANI) Think & Work like a Data Scientist with SQL 2016 & R DR. SUBRAMANI PARAMASIVAM (MANI) About the Speaker Dr. SubraMANI Paramasivam PhD., MCT, MCSE, MCITP, MCP, MCTS, MCSA CEO, Principal Consultant & Trainer

More information

Putting it all together: Creating a Big Data Analytic Workflow with Spotfire

Putting it all together: Creating a Big Data Analytic Workflow with Spotfire Putting it all together: Creating a Big Data Analytic Workflow with Spotfire Authors: David Katz and Mike Alperin, TIBCO Data Science Team In a previous blog, we showed how ultra-fast visualization of

More information

Predicting Service Outage Using Machine Learning Techniques. HPE Innovation Center

Predicting Service Outage Using Machine Learning Techniques. HPE Innovation Center Predicting Service Outage Using Machine Learning Techniques HPE Innovation Center HPE Innovation Center - Our AI Expertise Sense Learn Comprehend Act Computer Vision Machine Learning Natural Language Processing

More information