“Build a Handwritten Digit Recognizer Using Watson Studio & Pytorch

Total Page:16

File Type:pdf, Size:1020Kb

“Build a Handwritten Digit Recognizer Using Watson Studio & Pytorch International Workshop on “Build a Handwritten Digit Recognizer Using Watson Studio & PyTorch” Technically Sponsored By: IBM Developer Ecosystem Group Duration: 2 Days (31st Jan.-01st Feb. 2019) WORKSHOP REPORT Perspective: About the Workshop Objective: The objective of this workshop is to Build and train AI & machine learning models, prepare and analyze data – all in a flexible, hybrid cloud environment. With the advancement of Machine Learning, humans have made machines capable of performing redundant tasks faster. We now have mobile banking apps that can scan cheques in seconds and accounting software that can extract dollar amounts from thousands of contracts in minutes. In this workshop, learn how to build a machine learning model to recognize handwritten digits using Watson Studio and PyTorch. IBM Watson Studio Accelerate the machine and deep learning workflows required to infuse AI into your business. IBM Watson Studio provides tools for data scientists, application developers and subject matter experts to collaboratively and easily work with data to build and train models at scale. It gives you the flexibility to build models where your data resides and deploy anywhere in a hybrid environment so you can operationalize data science faster. Watson Studio Cloud Quickly get started and train your models on IBM Public Cloud. Watson Studio Desktop Prepare data and build models on your desktop with visual drag and drop tools. Watson Studio Local Train models behind your own firewall or on IBM Private Cloud. Collaborative data science Use open-source tools like Jupyter Notebooks, combined with collaborative project features, like programmatic access and version control, to fine- tune your parameters until you find your ideal model for production. Enhanced visual modeling Explore data and use machine learning with drag-and-drop tooling from SPSS Modeler - a new look on the classic tool. Automated deep learning Visually program for deep learning with an intuitive drag-and-drop, no-code interface in Neural Network Modeler. Analyst rankings Forrester ranks Watson Studio as the leader in Predictive Analytics and Machine Learning Overview Recognizing handwritten numbers is a piece of cake for humans, but it's a non-trivial task for machines. Nowadays, with the advancement of machine learning, people have made machines more and more capable of performing this task. We now have mobile banking apps that can scan checks in seconds and accounting software that can extract dollar amounts from thousands of contracts in minutes. If you are interested in knowing how this all works, please follow along with this code pattern as we take you through the steps to create a simple handwritten digit recognizer in Watson Studio with PyTorch. What is Watson Studio? Watson Studio is an integrated environment for data scientists, developers and domain experts to collaboratively work with data to build, train and deploy models at scale. If you are new to Watson Studio, the best way to understand it is to see it in action. What is PyTorch? PyTorch is a relatively new deep learning framework. Yet, it has begun to gain adoption especially among researchers and data scientists. The strength of PyTorch is its support of dynamic computational graph while most deep learning frameworks are based on static computational graph. In addition, its strong NumPy like GPU accelerated tensor computation has allowed Python developers to easily learn and build deep learning networks for GPUs and CPUs alike. In this code pattern, you will use Jupyter Notebook in Watson Studio and access preinstalled and optimized PyTorch environments through the Python client library of the Watson Machine Learning service, which has a set of REST APIs in its core that allows users to submit training jobs, monitor status, and store and deploy models. When you have completed this code pattern, you will understand how to: Create a project in Watson Studio and use Jupyter Notebooks in the project. Use the Python client of Cloud Object Storage to create buckets and upload data to buckets. Submit PyTorch training jobs to Watson Machine Learning service. Use the trained PyTorch model to predict handwritten digits from images. Flow 1. Log into IBM Watson Studio 2. Run the Jupyter notebook in Watson Studio 3. Use PyTorch to download and process the data 4. Use Watson Machine Learning to train and deploy the model Included components Watson Machine Learning: Make smarter decisions, solve tough problems, and improve user outcomes. Watson Studio: IBM's integrated hybrid environment that provides flexible data science tools to build and train AI models and prepare and analyze data. Jupyter Notebooks: An open-source web application that allows you to create and share documents that contain live code, equations, visualizations and explanatory text. Cloud Object Storage: Provides flexible, cost-effective, and scalable cloud storage for unstructured data. Featured Technologies Artificial Intelligence: Artificial intelligence can be applied to disparate solution spaces to deliver disruptive technologies. Python: Python is a programming language that lets you work more quickly and integrate your systems more effectively. PyTorch: PyTorch is an open source deep learning platform that provides a seamless path from research prototyping to production deployment. Steps 1. Sign up for Watson Studio 2. Create a new project 3. Create the notebook 4. Create a Watson Machine Learning Service instance 5. Create HMAC credentials for the Cloud Object Storage instance 6. Run the notebook 7. See the results 1. Sign up for Watson Studio Sign up for IBM's Watson Studio. By creating a project in Watson Studio a free tier Object Storage service will be created in your IBM Cloud account. Take note of your service names as you will need to select them in the following steps. Note: When creating your Object Storage service, select the Free storage type in order to avoid having to pay an upgrade fee. 2. Create a new project From the Watson Studio home page, select New Project, then select the Create Project button located in the Data Science tile. To create a project in Watson Studio, give the project a name and either create a new Cloud Object Storage service or select an existing one from your IBM Cloud account. Upon a successful project creation, you are taken to a dashboard view of your project. Take note of the Assets and Settings tabs, we'll be using them to associate our project with any external assets (such as notebooks) and any IBM Cloud services. 3. Create the notebook From the project dashboard view, select the Add to project drop-down menu and click on Notebook. Use the From URL tab to create our notebook. Give your notebook a name and select your desired runtime. In this case, select the Default Python 3.5 Free option. Press the Create Notebook button. 4. Create a Watson Machine Learning Service instance If you do not already have a running instance of the Watson Machine Learning (WML) service, follow these steps to create one. From the IBM Cloud Catalog, under the AI category, select Machine Learning. Enter a service name, select the Lite plan, then press Create. Once the service instance is created, navigate to Service credentials, view credentials and make note of them. If you don't see any credentials available, create a New credential. If you get this error: "You do not have the required permission to assign role 'Writer'. Contact the account owner to update your access." Give yourself writer access by: Use the IBM Cloud menu ☰ and select Security. Click on Manage. Click on Identity and Access. Use the three dots icon to assign access to yourself. Click on Assign access to resources. Use the Services pulldown to select All Identity and Access enabled services. Use the checkbox to enable Writer. Hit Assign. Go back and try to create your Watson ML credentials again. In the notebook available with this pattern, there is a cell which requires you to enter your WML credentials. Copy and paste these credentials into that notebook cell. 5. Create HMAC credentials for the Cloud Object Storage instance To run the notebook available with this pattern, you must create a Keyed-Hashing for Message Authentication (HMAC) set of credentials for your Cloud Object Storage instance. From the IBM Cloud dashboard, click on the Cloud Object Storage instance that you assigned to your Watson Studio project. Then click the Service credentials tab. Click on New Credential to initiate creating a new set of credentials. Enter a name, then enter {"HMAC":true} in the Add Inline Configuration Parameters field. Press Add to create the credentials. Once the credentials are created, you should see a set of cos_hmac_keys values. In the notebook available with this pattern, there is a cell which requires you to enter your Cloud Object Storage credentials. Copy and paste these credentials into that notebook cell. 6. Run the notebook To view your notebooks, select Notebooks in the project Assets list. To run a notebook, simply click on the edit icon listed in the row associated with the notebook in the Notebooks list. Some background on executing notebooks: When a notebook is executed, what is actually happening is that each code cell in the notebook is executed, in order, from top to bottom. Each code cell is selectable and is preceded by a tag in the left margin. The tag format is In [x]:. Depending on the state of the notebook, the x can be: A blank, this indicates that the cell has never been executed. A number, this number represents the relative order this code step was executed. A *, which indicates that the cell is currently executing. There are several ways to execute the code cells in your notebook: One cell at a time. Select the cell, and then press the Play button in the toolbar.
Recommended publications
  • IBM Developer for Z/OS Enterprise Edition
    Solution Brief IBM Developer for z/OS Enterprise Edition A comprehensive, robust toolset for developing z/OS applications using DevOps software delivery practices Companies must be agile to respond to market demands. The digital transformation is a continuous process, embracing hybrid cloud and the Application Program Interface (API) economy. To capitalize on opportunities, businesses must modernize existing applications and build new cloud native applications without disrupting services. This transformation is led by software delivery teams employing DevOps practices that include continuous integration and continuous delivery to a shared pipeline. For z/OS Developers, this transformation starts with modern tools that empower them to deliver more, faster, with better quality and agility. IBM Developer for z/OS Enterprise Edition is a modern, robust solution that offers the program analysis, edit, user build, debug, and test capabilities z/OS developers need, plus easy integration with the shared pipeline. The challenge IBM z/OS application development and software delivery teams have unique challenges with applications, tools, and skills. Adoption of agile practices Application modernization “DevOps and agile • Mainframe applications • Applications require development on the platform require frequent updates access to digital services have jumped from the early adopter stage in 2016 to • Development teams must with controlled APIs becoming common among adopt DevOps practices to • The journey to cloud mainframe businesses”1 improve their
    [Show full text]
  • High Performance Computing Toolkit: Installation and Usage Guide | Appendix B
    IBM Parallel Environment Developer Edition High Performance Computing Toolkit Version 2 Release 1 Installation and Usage Guide SC23-7287-00 IBM Parallel Environment Developer Edition High Performance Computing Toolkit Version 2 Release 1 Installation and Usage Guide SC23-7287-00 Note Before using this information and the product it supports, read the information in “Notices” on page 255. This edition applies to version 2, release 1, modification 0 of the IBM Parallel Environment Developer Edition High Performance Computing Toolkit (HPC Toolkit) (product number 5765-PD2) and to all subsequent releases and modifications until otherwise indicated in new editions. © Copyright IBM Corporation 2008, 2014. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Figures ..............vii | Part 3. Using the IBM PE Developer | Edition graphical performance Tables ...............ix || analysis tools ...........21 About this information ........xi | Chapter 6. Using the hpctView Who should read this information .......xi Conventions and terminology used in this || application .............23 information ..............xi || Preparing an application for analysis ......24 Prerequisite and related information ......xii || Working with the application ........25 Parallel Tools Platform component .....xii || Opening the application executable ......25 How to send your comments ........xiii || Instrumenting the application ........28 || Running the instrumented application .....29 Summary of changes ........xv || Viewing performance data .........37 | Chapter 7. Using hardware Limitations and restrictions .....xvii || performance counter profiling.....41 || Preparing an application for profiling......41 Part 1. Introduction .........1 || Instrumenting the application ........41 || Running the instrumented application .....43 Chapter 1. Introduction to the IBM HPC || Viewing hardware performance counter data . 45 Toolkit ...............3 IBM PE Developer Edition components .....3 || Chapter 8.
    [Show full text]
  • Program Directory for IBM Enterprise COBOL for Z/OS
    IBM Program Directory for IBM Enterprise COBOL for z/OS V06.02.00 Program Number 5655-EC6 FMIDs HADB620, JADB621, JADB622, JADB62H for Use with z/OS Document Date: September 2017 GI13-4526-01 Note Before using this information and the product it supports, be sure to read the general information under 7.0, “Notices” on page 30. © Copyright International Business Machines Corporation 1991, 2017. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents 1.0 Introduction . 1 1.1 Enterprise COBOL Description ......................................... 1 1.2 Enterprise COBOL FMIDs ........................................... 4 2.0 Program Materials . 5 2.1 Basic Machine-Readable Material ....................................... 5 2.2 Optional Machine-Readable Material ..................................... 6 2.3 Program Publications . 6 2.3.1 Optional Program Publications ...................................... 7 2.4 Program Source Materials ........................................... 7 2.5 Publications Useful During Installation .................................... 7 3.0 Program Support . 8 3.1 Program Services . 8 3.2 Preventive Service Planning .......................................... 8 3.3 Statement of Support Procedures ....................................... 9 4.0 Program and Service Level Information ................................. 10 4.1 Program Level Information .......................................... 10 4.2 Service Level Information ..........................................
    [Show full text]
  • DB2 Product Overview
    PH061-Martineau.book Page 3 Wednesday, August 6, 2003 7:40 PM C HAPTER 1 DB2 Product Overview he relational database of choice for modern distributed applications is IBM’s DB2 Univer- T sal Database(UDB). Relational databases form the core backend of most enterprise scale applications because of their capability to deliver high performance, support advanced features such as transactions, and maintain data integrity. The Structured Query Language (SQL) provides a powerful standard for accessing and manipulating databases. Its widespread acceptance across all major vendors has also contributed to the success of relational database technology. This chapter introduces major DB2 products so that you can plan the products required for your environment. This is a key to planning the DB2 UDB solution, as shown in Figure 1.1, that is suitable for your project or your organization. OBJECTIVES After reading this chapter you should have an understanding of the following DB2 UDB products: • DB2 UDB Server Products ° DB2 UDB Enterprise Server Edition (ESE) ° DB2 UDB Workgroup Server Edition (WSE) ° DB2 UDB Workgroup Server Unlimited Edition (WSUE) • DB2 UDB Personal Edition (PE) • DB2 UDB Developer’s Products ° DB2 UDB Personal Developer’s Edition ° DB2 UDB Universal Developer’s Edition • DB2 UDB Connect Products ° DB2 UDB Connect Enterprise Edition ° DB2 UDB Connect Unlimited Edition 3 PH061-Martineau.book Page 4 Wednesday, August 6, 2003 7:40 PM 4 Chapter 1 • DB2 Product Overview ° DB2 Connect Personal Edition ° DB2 Connect Application Server Edition • DB2 UDB Clients ° DB2 Run-Time Client ° DB2 Administration Client ° DB2 Application Development Client DB2 UDB SERVER PRODUCTS DB2 UDB server products provide a relational database engine for storing, maintaining, and accessing data.
    [Show full text]
  • IBM Z Open Development Version 1.0: Host Configuration Guide Figures
    IBM Z Open Development Version 1.0 Host Configuration Guide IBM SC27-9297-01 IBM Z Open Development Version 1.0 Host Configuration Guide IBM SC27-9297-01 Note Before using this information, be sure to read the general information under “Notices” on page 27. Second edition (March 2019) This edition applies to IBM Z Open Development Version 1.0 and to all subsequent releases and modifications until otherwise indicated in new editions. IBM welcomes your comments. You can send your comments by mail to the following address: IBM Corporation Attn: Information Development Department 53NA Building 501 P.O. Box 12195 Research Triangle Park NC 27709-2195 USA You can fax your comments to: 1-800-227-5088 (US and Canada) When you send information to IBM, you grant IBM a nonexclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. © Copyright IBM Corporation 2015, 2019. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Figures ............... v Customization setup ........... 11 PARMLIB changes ............ 12 Tables ............... vii Set the z/OS UNIX definitions in BPXPRMxx .. 12 Product enablement in IFAPRDxx ...... 12 LINKLIST definitions in PROGxx ...... 14 About this document ......... ix Requisite LINKLIST and LPA definitions ... 15 Who should use this document ........ ix PROCLIB changes ............ 16 ELAXF* remote build procedures ...... 16 Host Configuration Guide ...... 1 Security definitions ............ 18 idz.env, the environment configuration file .... 18 Chapter 1. Planning.......... 3 Migration considerations .......... 3 Chapter 3. Other customization tasks 21 Planning considerations .......... 3 z/OS UNIX subprojects .........
    [Show full text]
  • Valuing Intellectual Capital, Multinationals and Taxhavens Springer Verlag 2013
    Collected References, available on-line as <i.Stanford.edu/VIC/allVICcitations.pdf> 27-Oct-13 References for: Gio Wiederhold: Valuing Intellectual Capital, Multinationals and Taxhavens Springer Verlag 2013 VIC Citations This list includes all the references cited, as well as others that I have persused. For general information, I chose a recent publication for citation, trusting that it will be easier to locate and cite earlier work. As is common in tax matters, opinions abound. Refereed material is italicized. Entries cited and listed in the Reference section of Valuing Intelectual Capital have [bold identifiers]; entries considered, but not cited are marked ‡. Entries marked † were used for [W:06] . Transcription into the spreadsheet for VIC are marked [xls/worksheet]. Shaded text is to be omitted in publication, but helpful for search or as an aide de memoire. I am dding {chapter.section} references AAAAAAA [Aaron:13B] Henry J. Aaron: Tax Reform? Between a Rock and a Hard Place; Huffington Post, Brookings, 15 Jan. 2013. The 1986 reforms shifted $1T (adjusted) from individuals to Corportations over 10 years. Mobility of capital and the proliferation of multinatinal companies prevents such a solution now. Must raise personal income tax.{VIC Ch10.7.4} [Aaron:13G] Henry J. Aaron: You Get What You Pay For: Lessons From the IRS Scandal; Brookings, 31 May 2013. Only 1% of returns is audited. $450B is uncollected. Each dollar spent auditing yields $8. {VIC Ch8,7.3} [AbahoonieA:10]‡ Edward Abahoonie and Liah Alfonso: Deferred taxes on foreign earnings: A road map; Price Waterhouse Coopers (PwC), Dec.2010, updated 2012 www.pwc/us/tax.
    [Show full text]
  • IBM Websphere Portal for Multiplatforms V5.1 Handbook
    Front cover IBM WebSpherehere Portal for Multiplatformsplatforms V5.11 Handbook New features and enhancements WebSphere Portal V5.1 implementation demonstrated on multiple platforms Clustering and migration demonstrations included Rufus Credle Faheem Atlaf James Barnes Javier Galvez Sunil Hiranniah Prinz Huang Fernanda Silveira ibm.com/redbooks International Technical Support Organization IBM WebSphere Portal for Multiplatforms V5.1 Handbook April 2005 SG24-6689-00 Note: Before using this information and the product it supports, read the information in “Notices” on page ix. First Edition (April 2005) This edition applies to IBM WebSphere Portal for Multiplatforms Version 5.1. © Copyright International Business Machines Corporation 2005. All rights reserved. Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Notices . ix Trademarks . x Preface . xi The team that wrote this Redbook . .xi Become a published author . xiv Comments welcome. xiv Chapter 1. WebSphere Portal V5.1: New features and enhancements. 1 1.1 Introduction . 2 1.2 Installation and configuration enhancements . 2 1.3 Virtual portals . 4 1.4 Business process integration . 6 1.5 Search enhancements . 8 1.6 WebSphere Portal Document Manager . 13 1.7 Security enhancements. 16 1.8 Administration, operations, and deployment enhancements. 18 1.9 Personalization . 20 1.10 Web Content Management . 21 1.11 Programming model enhancements . 22 1.12 Summary . 24 Chapter 2. WebSphere Portal V5.1 planning and requirements . 25 2.1 Hardware requirements. 26 2.2 Software requirements . 26 Chapter 3. WebSphere Portal: Microsoft Windows Server 2003 install . 29 3.1 Using install logs .
    [Show full text]
  • DB2 UDB Evaluation Guide for Linux and Windows
    Front cover DB2 UDB Evaluation Guide for Linux and Windows Install and configure DB2 UDB V8.1 for Linux and Windows Build a Web-based application using DB2 UDB and PHP Explore the new features of DB2 UDB V8.1 Whei-Jen Chen Angus Beaton David Kline Glen Johnson ibm.com/redbooks International Technical Support Organization DB2 UDB Evaluation Guide for Linux and Windows April 2003 SG24-6934-00 Note: Before using this information and the product it supports, read the information in “Notices” on page xvii. First Edition (April 2003) This edition applies to DB2 Universal Database Version 8.1 for use with SuSE Linux Version 8.1, Red Hat Linux Version 8.0, and Windows 2000 operating systems. © Copyright International Business Machines Corporation 2003. All rights reserved. Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Figures . .ix Tables . xv Notices . xvii Trademarks . xviii Preface . xix The team that wrote this redbook. xxi Acknowledgement. xxii Become a published author . xxii Comments welcome. xxiii Chapter 1. Introduction to DB2 . 1 1.1 DB2 UDB features. 2 1.2 Version 8 highlights . 4 1.3 DB2 database objects . 6 1.4 DB2 UDB architecture and processes. 10 1.5 Accessing and updating DB2 data . 12 Chapter 2. Installation. 15 2.1 Obtaining the DB2 trial code . 16 2.1.1 Downloading DB2 . 16 2.1.2 Downloading the DB2 documentation. 17 2.2 Installing DB2 on Linux . 18 2.2.1 Installation requirements . 19 2.2.2 Installation preparation .
    [Show full text]
  • IBM Application Delivery Foundation for Z/OS, V3.2.2 and IBM Developer for Z/OS Enterprise Edition V14.2.3 Offer Further Freedom of Choice for Z/OS Developers
    IBM United States Software Announcement 220-271, dated June 9, 2020 IBM Application Delivery Foundation for z/OS, V3.2.2 and IBM Developer for z/OS Enterprise Edition V14.2.3 offer further freedom of choice for z/OS developers Table of contents 1 Overview 6 Technical information 2 Key requirements 6 Ordering information 2 Planned availability date 9 Terms and conditions 2 Description 14 Prices 5 Program number 14 Order now 5 Publications At a glance Application Delivery Foundation for z/OS(R), V3.2.2 delivers substantial capabilities that include: • New Visual Studio Code (VS Code) extensions that enable essential edit, user build, and debug capabilities for z/OS developers • CICS(R) V5.6 support • Additional z/OS Automated Unit Testing Framework (zUnit) support for Batch Db2(R) Overview IBM(R) Application Delivery Foundation for z/OS delivers the core set of tools to help you accelerate the delivery of IBM z/OS applications. Whether you are developing a new z/OS application or enhancing or performing problem analysis of existing z/ OS applications, it provides a robust toolset to help perform tasks efficiently while incorporating agile development practices. Application Delivery Foundation for z/OS is an offering that includes multiple development tools that can be obtained as part of the offering or individually. • IBM Explorer for z/OS is the strategic integration platform for IBM Eclipse-based offerings for z/OS application developers and system programmers. • IBM Developer for z/OS Enterprise Edition includes IBM Developer for z/OS, IBM Debug for z/OS, IBM Explorer for z/OS, IBM Dependency Based Build, and value-add capabilities.
    [Show full text]
  • IBM Developer for Z Systems Idz Search Options – Deep Dive
    ® IBM Software Group Group IBM Developer for z Systems IDz Search Options – Deep Dive IDz Jon Sayles – [email protected] ADFz RDz v9.5 IBM Trademarks and Copyrights © Copyright IBM Corporation 2008 through 2021. All rights reserved – including the right to use these materials for IDz instruction. The information contained in these materials is provided for informational purposes only, and is provided AS IS without warranty of any kind, express or implied. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, these materials. Nothing contained in these materials is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. References in these materials to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. This information is based on current IBM product plans and strategy, which are subject to change by IBM without notice. Product release dates and/or capabilities referenced in these materials may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. IBM, the IBM logo, the on-demand business logo, Rational, the Rational logo, and other IBM Rational products and services are trademarks or registered trademarks of the International Business Machines Corporation, in the United States, other countries or both.
    [Show full text]
  • IBM Db2 – the AI Database
    IBM Db2 – The AI database Pandit Prasad – Offering Manager, Db2 & Big Data Think 2019 / DOC ID / Month XX, 2019 / © 2019 IBM Corporation All business is becoming more data-driven “Data will be your basis of competitive advantage” - Ginni Rometty Our clients have declared the journey to AI a strategic priority Operational BI and Data Self-Service New Business Warehousing Analytics Models 85% view AI Value as a strategic Most are here Cost reduction Modernization Insight-driven Transformation opportunity COST REDUCTION MODERNIZATION INSIGHT-DRIVEN TRANSFORMATION 3 33% Accessing and preparing data is a barrier to using machine learning *451 Research Voice of the Enterprise: AI & Machine Learning, 2019 88% AI and ML important for their data platform and analytics initiatives *451 Research Voice of the Enterprise: AI & Machine Learning, 2019 IBM delivers the capabilities you need to build a ladder to AI Automate & scale Infuse : across your processes Multi-Cloud Achieve trust & transparency in : Trust outcomes Analyze : Scale insights with ML everywhere Organize : Create a trusted analytics foundation : Make data simple & accessible IBM Cloud / © 2018 IBM Corporation Collect 6 IBM proudly presents: The foundation of AI is Thedata foundation architecture. of AI is Be data readyarchitecture. for everything Be ready that for The AI database comes next, with everything that comes next, – Transform your business with AI infused the new generation of data management IBMwith Db2. – Deliver data to the business more quickly the new generation of IBM
    [Show full text]
  • Database Administration
    IBM i Version 7.2 Database Database Administration IBM Note Before using this information and the product it supports, read the information in “Notices” on page 25. This edition applies to IBM i 7.2 (product number 5770-SS1) and to all subsequent releases and modifications until otherwise indicated in new editions. This version does not run on all reduced instruction set computer (RISC) models nor does it run on CISC models. This document may contain references to Licensed Internal Code. Licensed Internal Code is Machine Code and is licensed to you under the terms of the IBM License Agreement for Machine Code. © Copyright International Business Machines Corporation 1998, 2013. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Administration...................................................................................................... 1 What's new for IBM i 7.2..............................................................................................................................1 PDF file for Database administration...........................................................................................................1 Database administration..............................................................................................................................2 Accessing data through client interfaces...............................................................................................2 Altering and managing database objects...............................................................................................3
    [Show full text]