Deep learning to big data analytics on apache spark* using bigdl Zhichao ([email protected]) Big Data Technology, Software and Service Group, Intel Intel® Confidential — INTERNAL USE ONLY

Outline BigDL  Apache Spark* + High Performance + Deep Learning

Speech recognition:  Deep Speech 2 on BigDL: ML Pipeline + BigDL

Object detection:  Faster RCNN and SSD on BigDL

2

What is BigDL? BigDL is a distributed deep learning library for Apache Spark*

3

BigDL: Deep learning on Apache Spark* BigDL open sourced on Dec 30, 2016  Apache Spark*, MKL Acceleration, High performance

Rich function  AlexNet, GoogleNet, VGG, Faster R-CNN, SSD, Deep Speech, Recommendation…  Scala/Java + Python  AWS EC2, TensorBoard, Notebook, caffe/torch load/export…

Popularity  Support from Cloud: Microsoft, Amazon, Cloudera, Databricks…  Community. 1700+ stars 4

Basic Component Layers Tensor:  ND-array data structure

 113+ layers (Conv, 3D Conv, Pooling, 3D Pooling, FC …)

 Generic data type

Criterion

 Rich and fast math operations (powered by Intel MKL)

 23+ criterions (DiceCoefficient, ClassNLL, CrossEntropy …) Optimization  SGD, Adagrad, LBFGS

 Community contribution: Adam, Adadelta, RMSprop, Adamx 5

Pattern Model Parallelism Data Parallelism

Source: Dean J, Corrado G, Monga R, et al. Large scale distributed deep networks[C]//Advances in neural information processing systems. 2012: 1223-1231.

6

Communication Model Driver

All to one

35

2

35

5

5

Task

Task

Task

35

Task

7

35

2

Task

14

35

4

Task

Parameter Server

10

11

Task

35 1

35

1

All reduce (tree aggregation)

Task

Task

6

6

Task All reduce

7

Bulk Synchronous Parallel (BSP) worker1

1 1

worker2

1

worker3

worker4

1

3

2

3

2 2 2

3 3

8

Asynchronous Synchronous Parallel (ASP)

1

worker1

1

worker3

worker4

2

1

worker2

1

2 3

4

3

2 2

5

3

4

Source: Dean J, Corrado G, Monga R, et al. Large scale distributed deep networks[C]//Advances in neural information processing systems. 2012: 1223-1231.

9

Run as standard Apache Spark* jobs

11

Deep SPEECH 2 with BIGDL

12

Speech Recognition Challenges  Audio  text  Speaker variability, Channel variability, Different languages Solutions: o Hybrid system: – DNNs, Hidden Markov Models (HMMs), context-dependent phone models, Lexicon models, GMM. – Domain expertise and multi-stage  DNN end to end: – DNN. Much easier – More data, better model 13

Deep Speech 2 for Speech Recognition •

“The Deep Speech 2 ASR pipeline approaches or exceeds the accuracy of Amazon Mechanical Turk human workers on several benchmarks, works in multiple languages with little modification, and is deployable in a production setting.”



“Table 13 shows that the DS2 system outperforms humans in 3 out of the 4 test sets and is competitive on the fourth. Given this result, we suspect that there is little room for a generic speech system to further improve on clean read speech without further domain adaptation.”

https://arxiv.org/pdf/1512.02595.pdf

14

Deep Speech 2 on BigDL feature extraction

DNN model

Language Model

decoder

CAB 15

Deep Speech 2 on BigDL: Feature transformers Apache Spark* ML Pipeline

flac/wav file reader

Segmenter

windower

TranscriptVectorizer

MelFreqFilterBank

DFTSpecgram

16

Deep Speech 2 on BigDL: Model conv biRNN 1 biRNN 2

...

biRNN k

9 layers biRNN: >50 Million parameters

affine softmax CTC 17

Deep Speech 2 on BigDL: CTC Loss Connectionist Temporal Classification

“…BigDL help users run deep learning on Spark…”

 a loss function useful for performing supervised learning on sequence data, without needing an alignment between input data and labels. (Alex Graves etc. 2006)  Raw waveforms and text transcription

BigDL developed first open source CTC on Java/Scala  Loss/Gradient in consistency with baidu/warp-ctc  JNI version about 3X faster than Scala version, but CTC only takes 0.2% of the training time.

http://www.cs.toronto.edu/~graves/icml_2006.pdf

18

Deep Speech 2 on BigDL: Model training Training time

15%

5%

batchNormalization

0% 5%

Recurrent Linear CTC Convolution 75%

Other

With libriSpeech, 5 RNN layer, 30 seconds uttLength, 30 epoches. 19

Deep Speech 2 on BigDL: Decoder Existing decoder:  BestPathDecoder (argmax) wer = 27%  VocabDecoder wer = 22%

A B C D … Blank

t1 0.01 0.05 0.01 0.8 … 0.1

t2 0.1 0.01 0.1 0.05 … 0.6

t3 0.7 0.2 0.09 0.01 … 0.01

t4 0.03 0.5 0.01 0.01 … 0.4

D

-

A

B



Contribution welcome

 decoder with Language Model, expect wer < 10%

20

Deep Speech 2 with AN4 data • Deep Speech 2 (8 layer, 5 RNN), uttLength 8 seconds • Word Error Rate with hold-out validation dataset wer(without LM) Deep Speech on Tensorflow

12.4%

BigDL

< 5%

21

Deep Speech 2 with LibriSpeech •

Deep Speech 2 (12 layers, 9 RNN), uttLength 30 seconds •



Word Error Rate with hold-out validation dataset cer

wer(without LM)

Hannun, et al. (2014)

10.7

35.8

Graves-Jaitly (ICML 2014)

9.2

30.1

Hwang-Sung (ICML 2016)

10.6

38.4

BigDL

8.7

32.4

Still under further tuning and optimization. •

More training data



Optimizer (Adam, SGD, nesterov ) 22

Deep Speech 2 on BigDL: Summary Feature transformers:  Flac/wav Reader, Windower, TimeSegmenter, TranscriptVectorizer, DFTSpecgram, MelFrequencyFilterBank

Model training and inference  Big DL container, optimizer, Convolution, BatchNormalization, Bi-RNN

CTC (Connectionist Temporal Classification) loss  Scala or JNI (warp-ctc)

Decoder  ArgmaxDecoder, VocabDecoder

Evaluation  wer, cer 23

Object Detection with BIGDL

24

SSD: Single Shot Multibox Detector

 State-of-the-art object detection pipeline  Single shot

Liu, Wei, et al. "SSD: Single shot multibox detector." European Conference on Computer Vision. Springer International Publishing, 2016.

Images from PASCAL(http://host.robots.ox.ac.uk/pascal/VOC/) 25

The Single Shot Detector (SSD)

base network

fc6 and fc7 converted to convolutional

Convolutional predictors for detection

collection of bounding boxes and scores for each category

Multi-scale feature maps for detection: observe how conv feature maps decrease in size and allow predictions at multiple scales https://arxiv.org/abs/1512.02325

SSD Pipeline RDD[ByteImage] Raw Data

Preprocess

Pre-trained Model

prediction

Resize Normalize ToBatch

BigDL SSD Model

Ground Truth

Postprocessor

Validation

Visualizer

Boxes & scores

RDD[Tensor]

MAP 27

SSD + VGG 300x300 test over Pascal VOC 2007 • SSD + VGG 300x300 with pretrained model over voc07+12 • Mean Average Precision

MAP

Caffe Model

BigDL

77.2

77.3

28

SSD + VGG 512x512 test over Pascal VOC 2007 • SSD + VGG 512x512 with pretrained model over voc07+12 • Mean Average Precision

MAP

Caffe Model

BigDL

79.6

79.6

29

BigDL Community analytics-zoo https://github.com/intel-analytics/analytics-zoo

Join Our Mail List [email protected]

Report Bugs And Create Feature Request https://github.com/intel-analytics/BigDL/issues

https://software.intel.com/ai

30

Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY INTELLECTUAL PROPERTY RIGHTS IS GRANTED BY THIS DOCUMENT. EXCEPT AS PROVIDED IN INTEL'S TERMS AND CONDITIONS OF SALE FOR SUCH PRODUCTS, INTEL ASSUMES NO LIABILITY WHATSOEVER AND INTEL DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY, RELATING TO SALE AND/OR USE OF INTEL PRODUCTS INCLUDING LIABILITY OR WARRANTIES RELATING TO FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR INFRINGEMENT OF ANY PATENT, COPYRIGHT OR OTHER INTELLECTUAL PROPERTY RIGHT. A "Mission Critical Application" is any application in which failure of the Intel Product could result, directly or indirectly, in personal injury or death. SHOULD YOU PURCHASE OR USE INTEL'S PRODUCTS FOR ANY SUCH MISSION CRITICAL APPLICATION, YOU SHALL INDEMNIFY AND HOLD INTEL AND ITS SUBSIDIARIES, SUBCONTRACTORS AND AFFILIATES, AND THE DIRECTORS, OFFICERS, AND EMPLOYEES OF EACH, HARMLESS AGAINST ALL CLAIMS COSTS, DAMAGES, AND EXPENSES AND REASONABLE ATTORNEYS' FEES ARISING OUT OF, DIRECTLY OR INDIRECTLY, ANY CLAIM OF PRODUCT LIABILITY, PERSONAL INJURY, OR DEATH ARISING IN ANY WAY OUT OF SUCH MISSION CRITICAL APPLICATION, WHETHER OR NOT INTEL OR ITS SUBCONTRACTOR WAS NEGLIGENT IN THE DESIGN, MANUFACTURE, OR WARNING OF THE INTEL PRODUCT OR ANY OF ITS PARTS. Intel may make changes to specifications and product descriptions at any time, without notice. Designers must not rely on the absence or characteristics of any features or instructions marked "reserved" or "undefined". Intel reserves these for future definition and shall have no responsibility whatsoever for conflicts or incompatibilities arising from future changes to them. The information here is subject to change without notice. Do not finalize a design with this information. The products described in this document may contain design defects or errors known as errata which may cause the product to deviate from published specifications. Current characterized errata are available on request. Contact your local Intel sales office or your distributor to obtain the latest specifications and before placing your product order. Copies of documents which have an order number and are referenced in this document, or other Intel literature, may be obtained by calling 1-800-548-4725, or go to: http://www.intel.com/design/literature.htm Intel, Quark, VTune, Xeon, Cilk, Atom, Look Inside and the Intel logo are trademarks of Intel Corporation in the United States and other countries. *Other names and brands may be claimed as the property of others. Copyright © 2015 Intel Corporation.

32

Risk Factors The above statements and any others in this document that refer to plans and expectations for the first quarter, the year and the future are forward-looking statements that involve a number of risks and uncertainties. Words such as “anticipates,” “expects,” “intends,” “plans,” “believes,” “seeks,” “estimates,” “may,” “will,” “should” and their variations identify forward-looking statements. Statements that refer to or are based on projections, uncertain events or assumptions also identify forward-looking statements. Many factors could affect Intel’s actual results, and variances from Intel’s current expectations regarding such factors could cause actual results to differ materially from those expressed in these forward-looking statements. Intel presently considers the following to be the important factors that could cause actual results to differ materially from the company’s expectations. Demand could be different from Intel's expectations due to factors including changes in business and economic conditions; customer acceptance of Intel’s and competitors’ products; supply constraints and other disruptions affecting customers; changes in customer order patterns including order cancellations; and changes in the level of inventory at customers. Uncertainty in global economic and financial conditions poses a risk that consumers and businesses may defer purchases in response to negative financial events, which could negatively affect product demand and other related matters. Intel operates in intensely competitive industries that are characterized by a high percentage of costs that are fixed or difficult to reduce in the short term and product demand that is highly variable and difficult to forecast. Revenue and the gross margin percentage are affected by the timing of Intel product introductions and the demand for and market acceptance of Intel's products; actions taken by Intel's competitors, including product offerings and introductions, marketing programs and pricing pressures and Intel’s response to such actions; and Intel’s ability to respond quickly to technological developments and to incorporate new features into its products. The gross margin percentage could vary significantly from expectations based on capacity utilization; variations in inventory valuation, including variations related to the timing of qualifying products for sale; changes in revenue levels; segment product mix; the timing and execution of the manufacturing ramp and associated costs; start-up costs; excess or obsolete inventory; changes in unit costs; defects or disruptions in the supply of materials or resources; product manufacturing quality/yields; and impairments of long-lived assets, including manufacturing, assembly/test and intangible assets. Intel's results could be affected by adverse economic, social, political and physical/infrastructure conditions in countries where Intel, its customers or its suppliers operate, including military conflict and other security risks, natural disasters, infrastructure disruptions, health concerns and fluctuations in currency exchange rates. Expenses, particularly certain marketing and compensation expenses, as well as restructuring and asset impairment charges, vary depending on the level of demand for Intel's products and the level of revenue and profits. Intel’s results could be affected by the timing of closing of acquisitions and divestitures. Intel's results could be affected by adverse effects associated with product defects and errata (deviations from published specifications), and by litigation or regulatory matters involving intellectual property, stockholder, consumer, antitrust, disclosure and other issues, such as the litigation and regulatory matters described in Intel's SEC reports. An unfavorable ruling could include monetary damages or an injunction prohibiting Intel from manufacturing or selling one or more products, precluding particular business practices, impacting Intel’s ability to design its products, or requiring other remedies such as compulsory licensing of intellectual property. A detailed discussion of these and other factors that could affect Intel’s results is included in Intel’s SEC filings, including the company’s most recent reports on Form 10-Q, Form 10-K and earnings release. 33

Intel® Software Template Overview - GitHub

“Table 13 shows that the DS2 system outperforms humans in 3 out of the 4 test sets and is competitive on the fourth. Given this result, we suspect that there is little room for a generic speech system to further improve on clean read speech without further domain adaptation.” https://arxiv.org/pdf/1512.02595.pdf ...

2MB Sizes 7 Downloads 94 Views

Recommend Documents

Intel® Software Template Overview - GitHub
Copies of documents which have an order number and are referenced in this document, or other Intel literature, may be obtained by calling 1-800-548-4725, or go to: http://www.intel.com/design/literature.htm. Intel, Quark, VTune, Xeon, Cilk, Atom, Loo

Overview - GitHub
This makes it impossible to update clones. When this happens, ... versions of the Yocto kernel (from the Yocto repository, or the Intel Github repositories on ...

Overview - GitHub
Switch system is mobile Cashier backend sale system for merchants, which provides the following base features: Management of Partners, Merchants, Users, Cashiers, Cash registers, mPOS Terminals and Merchant's Product catalogues. Processing Sales with

Inside Intel Management Engine - GitHub
enable closed chassis debug through a USB3 port from Intel silicon. • Intel DCI provides access to CPU/PCH JTAG via USB3.0. • Software is available without NDA (Intel System Studio). • There are two types of DCI hosting interfaces in the platfo

Iraq Country Overview - GitHub
is widespread contamination through sophisticated explosive devices, pockets of volatility and reports of violence countrywide. (UN OCHA July. Humanitarian Bulletin). • Internal displacement continues in low numbers throughout Ninewa. Families arri

Overview Instructions - GitHub
The build produces a kernel image, a root file system, and kernel header ... git1+973494766d7ca2401e3138f28b6257a5b899cf1d-r0/linux-lsisim-standard-build.

MeerKAT Overview - GitHub
Youth Into Science – skills development and training programme. ○. African VLBI Network. MeerKAT focus today… SKA SKA Project .... KAT-7 Software ...

IARPA Overview - GitHub
May 11, 2017 - 1. Coast Guard. Central Intelligence Agency. Army. Navy. Air Force. National ... We emphasize technical excellence & technical truth ...

Overview Instruction - GitHub
IMAGE_FSTYPES += "ext2". PREFERRED_PROVIDER_virtual/kernel = "linux-yocto-custom". Other optional settings for saving disk space and build time:.

Overview Instructions - GitHub
With U-Boot as the boot loader, the above need to be put into a format that U-Boot understands. The following describes using the FIT format (see doc/uImage.

BreedR Overview - GitHub
6 0 56. 72. 0. 55 1. 14 13. 4.775. 9 0 55. 73. 0. 22 1. 8. 13. 19.099 12 0 22. 74. 0 .... Predicted genetic values vs. ...... Plus some more specific metagene functions:.

Overview Instructions - GitHub
Just the Linux kernel. • Linux and the device tree. • Linux, the device tree, and a root file system. The simulator only supports using separate images for Linux ...

Overview Branches - GitHub
convention for a custom branch is custom-[organization domain]. For example custom- ccvonline. It is up to each of those organizations to determine how their ...

Overview Building - GitHub
Using the external or internal host, after loading the RTE,. $ ncpBootMem -a ... ACP2=> tftp 4010000 . ACP2=> ssp w 0 ...

Calendar Template - GitHub
Calendar Template is an Enhanced Studio sub-extension to create custom ... http://www.sugarforge.org/frs/download.php/6509/Generic_Extension_Install.1.2.pdf .... application which view the field must appear in, an additional word selected ...

JACoW Template v2016 - GitHub
practical examples of usage of Taurus ranging from a very small experimental setup controlled by a single. Raspberry Pi, to ... wide range of contexts, from large facilities with thousands of controllable parameters to single-instrument ... by LASER

Red Leaves implant - overview - GitHub
Mar 9, 2017 - 0x24. Enumerate users (including RDP / terminal services). 0x28 ..... 6https://www.cylance.com/en_us/blog/the-deception-project-a-new- ...

Intel ME: Two Years Later - GitHub
In first versions it was included in the network card, later moved into the chipset ... HECI/MEI driver, management services, utilities. AMT SDK, code ... ME Gen 1. ME Gen 2. SEC/TXE. ME versions. 1.x-5.x. 6.x-10.x. 1.x (Bay Trail). Core. ARCTangent-

Software Engineering - GitHub
Sep 26, 2011 - into an application used by nearly a million people to store over two million code ... “Continuous Integration is a software development practice ...

Modern Software Translation - GitHub
Translation memory. ▻ Translate Java, Android and iOS applications. ▻ LDAP integration. ▻ REST API. ▻ Find out more at http://www.jabylon.org.

Chatter REST API Developer Overview - GitHub
Building an application outside the Salesforce platform. • Pull feed and social graph out into another application. • Push notifications and activity into the feed.

Makerspace RFID Lock Management Overview - GitHub
python manage.py loaddata rfid_lock_management/fixtures/initial.json. Run the Django development server. $ python manage.py runserver ... microcontroller (Arduino) that connects to the RFID scanner and operates the locking mechanism. Simulating authe