A Quantization-Friendly Separable Convolution for MobileNets

Size: px
Start display at page:

Download "A Quantization-Friendly Separable Convolution for MobileNets"

Transcription

1 arxv: v1 [cs.cv] 22 Mar 2018 A Quantzaton-Frendly Separable for MobleNets Abstract Tao Sheng tsheng@qt.qualcomm.com Xaopeng Zhang parker.zhang@gmal.com As deep learnng (DL) s beng rapdly pushed to edge computng, researchers nvented varous ways to make nference computaton more effcent on moble/iot devces, such as network prunng, parameter compresson, and etc. Quantzaton, as one of the key approaches, can effectvely offload GPU, and make t possble to deploy DL on fxed-pont ppelne. Unfortunately, not all exstng networks desgn are frendly to quantzaton. For example, the popular lghtweght MobleNetV1 [1], whle t successfully reduces parameter sze and computaton latency wth separable convoluton, our experment shows ts quantzed models have large accuracy gap aganst ts float pont models. To resolve ths, we analyzed the root cause of quantzaton loss and proposed a quantzaton-frendly separable convoluton archtecture. By evaluatng the mage classfcaton task on ImageNet2012 dataset, our modfed MobleNetV1 model can archve 8-bt nference top-1 accuracy n 68.03%, almost closed the gap to the float ppelne. Keywords Separable, MobleNetV1, Quantzaton, Fxed-pont Inference 1 Introducton Quantzaton s crucal for DL nference on moble/iot platforms, whch have very lmted budget for power and memory consumpton. Such platforms often rely on fxed-pont computatonal hardware blocks, such as Dgtal Sgnal Processor (DSP), to acheve hgher power effcency over float pont processor, such as GPU. On exstng DL models, such as VGGNet [2], GoogleNet [3], ResNet [4] and etc., although quantzaton may not mpact nference accuracy for ther over-parameterzed desgn, t would be dffcult to deploy those models on moble platforms due to large computaton latency. Many lghtweght networks, however, can trade off accuracy wth effcency by replacng conventonal convoluton wth depthwse separable convoluton, as shown n the Fgure 1(a)(b). For example, the MobleNets proposed by Google, drastcally shrnk parameter sze and memory Chen Feng chenf@qt.qualcomm.com Lang Shen lang.shen@qt.qualcomm.com (a) Standard Shaoje Zhuo shaojez@qt.qualcomm.com Mckey Aleksc maleksc@qt.qualcomm.com Qualcomm Technologes, Inc. Depthwse /6 Pontwse /6 (b) MobleNet Separable Depthwse Pontwse (c) Proposed Quantzaton-frendly Separable Fgure 1. Our proposed quantzaton-frendly separable convoluton core layer desgn vs. separable convoluton n MobleNets and standard convoluton footprnt, thus are gettng ncreasngly popular n moble platforms. The downsde s that the separable convoluton core layer n MobleNetV1 causes large quantzaton loss, and thus resultng n sgnfcant feature representaton degradaton n the 8-bt nference ppelne. To demonstrate the quantzaton ssue, we selected Tensor- Flow mplementaton of MobleNetV1 [6] and InceptonV3 [7], and compared ther accuracy on float ppelne aganst 8-bt quantzed ppelne. The results are summarzed n Table1. The top-1 accuracy of InceptonV3 drops slghtly after applyng the 8-bt quantzaton, whle the accuracy loss s sgnfcant for MobleNetV1. Table 1. Top-1 accuracy on ImageNet2012 valdaton dataset Networks Float Ppelne 8-bt Ppelne InceptonV % 76.92% MobleNetV % 1.80% Comments Only standard convoluton Manly separable convoluton There are a few ways that can potentally address the ssue. The most straght forward approach s quantzaton wth more bts. For example, ncreasng from 8-bt to 16-bt could

2 Tao Sheng, Chen Feng, Shaoje Zhuo, Xaopeng Zhang, Lang Shen, and Mckey Aleksc boost the accuracy [14], but ths s largely lmted by the capablty of target platforms. Alternatvely, we could re-tran the network to generate a dedcated quantzed model for fxed-pont nference. Google proposed a quantzed tranng framework [5] co-desgned wth the quantzed nference to mnmze the loss of accuracy from quantzaton on nference models. The framework smulates quantzaton effects n the forward pass of tranng, whereas back-propagaton stll enforces float ppelne. Ths re-tranng framework can reduce the quantzaton loss dedcatedly for fxed-pont ppelne at the cost of extra tranng, also the system needs to mantan multple models for dfferent platforms. In ths paper, we focus on a new archtecture desgn for the separable convoluton layer to buld lghtweght quantzatonfrendly networks. The proposed new archtecture requres only sngle tranng n the float ppelne, and the traned model can then be deployed to dfferent platforms wth float or fxed-pont nference ppelnes wth mnmum accuracy loss. To acheve ths, we look deep nto the root causes of accuracy degradaton of MobleNetV1 n the 8-bt nference ppelne. And based on the fndngs, we proposed a re-archteched quantzaton-frendly MobleNetV1 that mantans a compettve accuracy wth float ppelne, but a much hgher nference accuracy wth a quantzed 8-bt ppelne. Our man contrbutons are: 1. We dentfed batch normalzaton and 6 are the major root causes of quantzaton loss for MobleNetV1. 2. We proposed a quantzaton-frendly separable convoluton, and emprcally proved ts effectveness based on MobleNetV1 n both the float ppelne and the fxed-pont ppelne. 2 Quantzaton Scheme and Loss Analyss In ths secton, we wll explore the TensorFlow (TF) [8] 8-bt quantzed MobleNetV1 model, and fnd the root cause of the accuracy loss n the fxed-pont ppelne. Fgure 2 shows a typcal 8-bt quantzed ppelne. A TF 8-bt quantzed model s drectly generated from a pre-traned float model, where all weghts are frstly quantzed offlne. Durng the nference, any float nput wll be quantzed to an 8-bt unsgned value before passng to a fxed-pont runtme operaton, such as QuantzedConv2d, QuantzedAdd, and QuantzedMul, etc. These operatons wll produce a 32-bt accumulated result, whch wll be converted down to an 8-bt output through an actvaton re-quantzaton step. Noted that ths output wll be the nput to the next operaton. 2.1 TensorFlow 8-bt Quantzaton Scheme TensorFlow 8-bt quantzaton uses a unform quantzer, n whch all quantzaton steps are of equal sze. Let x f loat represent for the float value of sgnal x, the TF 8-bt quantzed value, denoted as x quant8 can be calculated as: x quant8 = [x f loat/ x ] δ x, (1) Inputs float32 weghts Quantzaton Input Quantzaton Loss float32 Quantzaton (offlne) unt8 unt8 nt32 unt8 Re- OP TF8 Quantzaton Saturaton & Clppng Loss Weght Quantzaton Loss Actvaton Quantzaton Loss Fgure 2. A fxed-pont quantzed ppelne Outputs x = x max x mn 2 b and δ x = [x mn/ x ] (2) 1 where x represents for the quantzaton step sze; b s the bt-wdth,.e., b = 8, and δ x s the offset value such that float value 0 s exactly represented. x mn and x max are the mn and max values of x n the float doman, and [ ] represents for the nearest roundng operaton. In the TensorFlow mplementaton, t s defned as [x] = sдn(x) x (3) where sgn(x) s the sgn of the sgnal x, and represents for the floor operaton. Based on the defntons above, the accumulated result of a convoluton operaton s computed by: (xf ) accum f loat = loat w f loat (xquant8 ) ( ) = x w + δ x wquant8 + δ w = x w accum nt32 (4) Fnally, gven known mn and max values of the output, by combnng equaton (1) and (4), the re-quantzed output can be calculated by multplyng the accumulated result wth x w, and then subtractng the output offset δ ouput. [ ] 1 output quant8 = accum f loat δ ouput [ ] (5) x w = accum nt32 δ ouput 2.2 Metrc for Quantzaton Loss As depcted n Fgure 2, there are fve types of loss n the fxed-pont quantzed ppelne, e.g., nput quantzaton loss, weght quantzaton loss, runtme saturaton loss, actvaton re-quantzaton loss, and possble clppng loss for certan non-lnear operatons, such as 6. To better understand the loss contrbuton that comes from each type, we use Sgnal-to-Quantzaton-Nose Rato (SQNR), defned as the power of the unquantzed sgnal x devded by the power of the quantzaton error n as a metrc to evaluate the quantzaton accuracy at each layer output. ( ) SQNR = 10 log E(x 2 10 )/E(n 2 ) n db (6) Snce the average magntude of the nput sgnal x s much larger than the quantzaton step sze x, t s reasonable to

3 A Quantzaton-Frendly Separable for MobleNets assume that the quantzaton error s zero mean wth unform dstrbuton and the probablty densty functon (PDF) ntegrates to 1 [10]. Therefore, for an 8-bt lnear quantzer, the nose power can be calculated by E(n 2 ) = x 2 x 2 1 x n 2 dn = 2 x 12 Substtutng equaton (2) and (7) nto equaton (6), we get SQNR = log 10 (x max x mn ) 2 E(x 2 ) (7) n db (8) SQNR s tghtly coupled wth sgnal dstrbuton. From equaton (8), t s obvous that SQNR s determned by two terms: the power of the sgnal x, and the quantzaton range. Therefore, ncreasng the sgnal power or decreasng the quantzaton range can help to ncrease the output SQNR. 2.3 Quantzaton Loss Analyss on MobleNetV Norm n Depthwse Layer As shown n Fgure 1(b), a typcal MobleNetV1 core layer conssts of a depthwse convoluton and a pontwse convoluton, each of whch followed by a [9] and a non-lnear actvaton functon, respectvely. In the TensorFlow mplementaton, 6 [11] s used as the non-lnear actvaton functon. Consder a layer nput x = (x (1),..., x (d) ), wth d-channels and m elements n each channel wthn a mn-batch, the Transform n depthwse convoluton layer s appled on each channel ndependently, and can be expressed by, y (k) = γ (k) xˆ (k) + β (k) x(k) (k) µ (k) = γ + β (k) = 1,...,m, k = 1,...,d where xˆ (k) represents for the normalzed value of x (k) on channel k. µ (k) and σ (k) are mean and varance over the mnbatch. γ (k) and β (k) are scale and shft. Noted that ϵ s a gven small constant value. In the TensorFlow mplementaton, ϵ = The Transform can be further folded n the fxed-pont ppelne. Let α (k) = γ (k) equaton (9) can be reformulated as and β (k) = β (k) γ (k) µ (k) y (k) = α (k) x (k) = 1,...,m, + β (k) k = 1,...,d (9) (10) (11) In the TensorFlow mplementaton, for each channel k, α can be combned wth weghts and folded nto the convoluton operatons to further reduce the computaton cost Fgure 3. An example of α values across 32 channels of the frst depthwse conv. layer from MobleNetV1 float model Depthwse convoluton s appled on each channel ndependently. However, the mn and max values used for weghts quantzaton are taken collectvely from all channels. An outler n one channel can easly cause a huge quantzaton loss for the whole model due to an enlarged data range. Wthout correlaton crossng channels, depthwse convoluton may prone to produce all-zero values n one channel, leadng to zero varance (σ (k) = 0) for that specfc channel. Ths s commonly observed n MobleNetV1 models. Refer to equaton (10), zero varance of channel k would produce a very large value of α (k) due to the small constant value of ϵ. Fgure 3 shows observed α values across 32 channels extracted from the frst depthwse convoluton layer n MobleNetV1 float model. It s notced that the 6 outlers of α caused by the zero-varance ssue largely ncrease the quantzaton range. As a result, the quantzaton bts are wasted on preservng those large values snce they all correspond to all-zero-value channels, whle those small α values correspondng to nformatve channels are not well preserved after quantzaton, whch badly hurts the representaton power of the model. From our experments, wthout retranng, proper handlng the zero-varance ssue by changng the varance of a channel wth all-zero values to the mean value of varances of the rest of channels n that layer, the top-1 accuracy of the quantzed MobleNetV1 on ImageNet2012 valdaton dataset can be dramatcally mproved from 1.80% to 45.73% on TF8 nference ppelne. A standard convoluton both flters and combnes nputs nto a new set of outputs n one step. In MobleNetV1, the depthwse separable convoluton splts ths nto two layers, a depthwse separable layer for flterng and a pontwse separable layer for combnng [1], thus drastcally reducng computaton and model sze whle preservng feature representatons. Based on ths prncple, we can remove the non-lnear operatons,.e., and 6, between the two layers, and let the network learn proper weghts to handle the Transform drectly. Ths procedure preserves all the feature representatons, whle makng the model quantzaton-frendly. To further understand per-layer output accuracy of the network,

4 Tao Sheng, Chen Feng, Shaoje Zhuo, Xaopeng Zhang, Lang Shen, and Mckey Aleksc SQNR (db) conv2d dw1 pw1 dw2 pw2 dw3 pw3 dw4 pw4 dw5 pw5 dw6 pw6 dw7 pw7 dw8 pw8 dw9 pw9 dw10 pw10 dw11 pw11 dw12 pw12 dw13 Layer n all pontwse layers depthwse conv output pontwse conv layer output 6 n all pontwse layers depthwse conv output pontwse conv layer output Orgnal MobleNet, alpha folded depthwse conv output pontwse conv layer output Fgure 4. A comparson on the averaged per-layer output SQNR of MobleNetV1 wth dfferent core layer desgns we use SQNR, defned n equaton (8) as a metrc, to observe the quantzaton loss n each layer. Fgure 4 compares an averaged per-layer output SQNR of the orgnal MobleNetV1 wth α folded nto convoluton weghts (black curve) wth the one that smply removes and 6 n all depthwse convoluton layers (blue curve). We stll keep the and 6 n all pontwse convoluton layers mages are randomly selected from ImageNet2012 valdaton dataset (one n each class). From our experment, ntroducng and 6 between the depthwse convoluton and pontwse convoluton largely n fact degrades the per-layer output SQNR or In ths secton, we stll use SQNR as a metrc to measure the effect of choosng dfferent actvaton functons n all pontwse convoluton layers. Noted that for a lnear quantzer, SQNR s hgher when sgnal dstrbuton s more unform, and s lower when otherwse. Fgure 4 shows an averaged per-layer output SQNR of MobleNetV1 by usng and 6 as dfferent actvaton functons at all pontwse convoluton layers. A huge SQNR drop s observed n the frst pontwse convoluton layer whle usng 6. Based on equaton (8), although 6 helps to reduce the quantzaton range, the sgnal power also gets reduced by the clppng operaton. Ideally, ths should produce smlar SQNR wth that of. However, clppng the sgnal x at early layers may have a sde effect of dstortng the sgnal dstrbuton to make t less quantzaton frendly, as a result of compensatng the clppng loss durng tranng. As we observed, ths leads to a large SQNR drop from one layer to the other. Expermental result on the mproved accuracy by replacng 6 wth wll be shown n Secton L2 Regularzaton on Weghts Snce SQNR s tghtly coupled wth sgnal dstrbuton, we further enable the L2 regularzaton on weghts n all depthwse convoluton layers durng the tranng. The L2 regularzaton penalzes weghts wth large magntudes. Large weghts could potentally ncrease the quantzaton range, and make the weght dstrbuton less unform, leadng to a large quantzaton loss. By enforcng a better weghts dstrbuton, a quantzed model wth an ncreased top-1 accuracy can be expected. 3 Quantzaton-Frendly Separable for MobleNets Based on the quantzaton loss analyss n the prevous secton, we propose a quantzaton-frendly separable convoluton framework for MobleNets. The goal s to solve the large quantzaton loss problem so that the quantzed model can acheve smlar accuracy to the float model whle no re-tranng s requred for the fxed-pont ppelne. 3.1 Archtecture of the Quantzaton-frendly Separable Fgure 1(b) shows the separable convoluton core layer n the current MobleNetV1 archtecture, n whch a and a non-lnear actvaton operaton are ntroduced between the depthwse convoluton and the pontwse convoluton. From our analyss, due to the nature of depthwse convoluton, ths archtecture would lead to a problematc quantzaton model. Therefore, n Fgure 1(c), three major changes are made to make the separable convoluton core layer quantzaton-frendly. 1. and 6 are removed from all depthwse convoluton layers. We beleve that a separable convoluton shall consst of a depthwse convoluton followed by a pontwse convoluton drectly wthout any non-lnear operaton between the two. Ths procedure not only well preserves feature representatons, but s also quantzaton-frendly. 2. All 6 are replaced wth n the rest layers. In the TensorFlow mplementaton of MobleNetV1, 6 s used as the non-lnear actvaton functon. However, we thnk 6 s a very arbtrary number. Although [11] ndcates that 6 can encourage a model learn sparse feature earler, clppng the sgnal at early layers may lead to a quantzaton-unfrendly sgnal dstrbuton, and thus largely decreases the SQNR of the layer output. 3. The L2 Regularzaton on the weghts n all depthwse convoluton layers are enabled durng the tranng. 3.2 A Quantzaton-Frendly MobleNetV1 Model The layer structure of the proposed quantzaton-frendly MobleNetV1 model s shown n Table2, whch follows the overall layer structure defned n [1]. The separable convoluton core layer has been replaced wth the quantzatonfrendly verson as descrbed n the prevous secton. Ths model stll nherts the effcency n terms of the computatonal cost and model sze, whle acheves hgh precson for fxed-pont processor.

5 A Quantzaton-Frendly Separable for MobleNets Table 2. Quantzaton-frendly modfed MobleNetV1 Input Operator Repeat Strde 224x224x3 Conv2d x112x32 DC+PC x112x64 DC+PC x56x128 DC+PC x56x128 DC+PC x28x256 DC+PC x28x256 DC+PC x14x512 DC+PC x14x512 DC+PC x7x1024 DC+PC x7x1024 AvgPool 1 1 1x1x1024 Conv2d x1x1000 Softmax Expermental Results We tran the proposed quantzaton-frendly MobleNetV1 float models usng the TensorFlow tranng framework. We follow the same tranng hyperparameters as MobleNetV1 except that we use one Nvda GeForce GTX TITAN X card and a batch sze of 128 s used durng the tranng. ImageNet2012 dataset s used for tranng and valdaton. Note that the tranng s only requred for float models. The expermental results on takng each change nto the orgnal MobleNetV1 model n both the float ppelne and the 8-bt quantzed ppelne are shown n Fgure 5. In the float ppelne, our traned float model acheves smlar top-1 accuracy as the orgnal MobleNetV1 TF model. In the 8-bt ppelne, by removng the and 6 n all depthwse convoluton layers, the top-1 accuracy of the quantzed model can be dramatcally mproved from 1.80% to 61.50%. In addton, by smply replacng 6 wth, the top-1 accuracy of 8-bt quantzed nference can be further mproved to 67.80%. Furthermore, by enablng the L2 regularzaton on weghts n all depthwse convoluton layers durng the tranng, the overall accuracy of the 8-bt ppelne can be mproved by another 0.23%. From our experments, the proposed quantzaton-frendly MobleNetV1 model acheves an accuracy of 68.03% n the 8-bt quantzed ppelne, whle mantanng an accuracy of 70.77% n the float ppelne for the same model. 5 Concluson and Future Work We proposed an effectve quantzaton-frendly separable convoluton archtecture, and ntegrated t nto MobleNets for mage classfcaton. Wthout reducng the accuracy n the float ppelne, our proposed archtecture shows a sgnfcant accuracy boost n the 8-bt quantzed ppelne. To generalze ths archtecture, we wll keep applyng t on more networks based on separable convoluton, e.g., MobleNetV2 Core Layer Desgn Float Ppelne 8-bt Ppelne Orgnal Our proposed desgns + L2 Regularzer 70.50% 70.55% 70.80% 70.77% 1.80% 61.50% 67.80% 68.03% Fgure 5. Top-1 accuracy wth dfferent core layer desgns on ImageNet2012 valdaton dataset [12], ShuffleNet [13] and verfy ther fxed-pont nference accuracy. Also, we wll apply proposed archtecture to object detecton and nstance segmentaton applcatons. And we wll measure the power and latency wth the proposed quantzaton frendly MobleNets on devce. References [1] A. Howard, M. Zhu, B. Chen, D. Kalenchenko, W. Wang, T. Weyand, M. Andreetto, and H. Adam. Moblenets: Effcent convolutonal neural networks for moble vson applcatons. Apr. 17, 2017, [2] K. Smonyan and A. Zsserman. Very deep convolutonal networks for large-scale mage recognton. Sep.4, 2014, [3] C. Szegedy, W. Lu, Y. Ja, P. Sermanet, S. Reed, D. Anguelov, D. Erhan, V. Vanhoucke, and A. Rabnovch. Gong deeper wth convolutons. In Proceedngs of the IEEE Conference on CVPR, pages 1-9, [4] K. He, X. Zhang, S. Ren, and J. Sun. Deep resdual learnng for mage recognton. Dec. 10, 2015, [5] B. Jacob., S Klgys, B. Chen, M. Zhu, M. Tang, A. Howard, H. Adam, and D. Kalengchenko. Quantzaton and Tranng of Neural Networks for Effcent Integer-Arthmetc-Only Inference. Dec.15, 2017, [6] Google TensorFlow MobleNetV1 Model. moblenet_v1_1.0_224_float_2017_11_08.zp [7] Google TensorFlow InceptonV3 Model. ncepton_v3_2016_08_28.tar.gz [8] Google TensorFlow Framework. [9] S. Loff, and C. Szegedy. : Acceleratng Deep Network Tranng by Reducng Internal Covarate Shft. Feb. 11, 2015, [10] Udo ZÃűlzer. Dgtal Audo Sgnal Processng, Chapter 2 John Wley & Sons, Dec. 15, 1997 [11] A. Krzhevsky. al Deep Belef Networks on CIFAR krz/conv-cfar10-aug2010.pdf [12] M. Sandler, A. Howard, M. Zhu, A. Zhmognov, and L. Chen. Inverted Resduals and Lnear Bottlenecks: Moble Networks for Classfcaton, Detecton and Segmentaton. Jan. 13, 2018, [13] X. Zhang, X. Zhou, M. Ln, and J. Sun. ShuffleNet: An Extremely Effcent al Neural Network for Moble Devces Dec. 7, 2017, [14] J. Cheng, P. Wang, G. L, Q. Hu, and H. Lu. Recent Advances n Effcent Computaton of Deep al Neural Networks Feb. 11, 2018,

LOW-COMPLEXITY VIDEO ENCODER FOR SMART EYES BASED ON UNDERDETERMINED BLIND SIGNAL SEPARATION

LOW-COMPLEXITY VIDEO ENCODER FOR SMART EYES BASED ON UNDERDETERMINED BLIND SIGNAL SEPARATION LOW-COMPLEXITY VIDEO ENCODER FOR SMART EYES BASED ON UNDERDETERMINED BLIND SIGNAL SEPARATION Jng Lu, Fe Qao *, Zhjan Ou and Huazhong Yang Department of Electronc Engneerng, Tsnghua Unversty ABSTRACT Ths

More information

Anchor Box Optimization for Object Detection

Anchor Box Optimization for Object Detection Anchor Box Optmzaton for Object Detecton Yuany Zhong 1, Janfeng Wang 2, Jan Peng 1, and Le Zhang 2 1 Unversty of Illnos at Urbana-Champagn 2 Mcrosoft Research 1 {yuanyz2, janpeng}@llnos.edu, 2 {janfw,

More information

The UCD community has made this article openly available. Please share how this access benefits you. Your story matters!

The UCD community has made this article openly available. Please share how this access benefits you. Your story matters! Provded by the author(s) and Unversty College Dubln Lbrary n accordance wth publsher polces., Please cte the publshed verson when avalable. tle Dynamc Complexty Scalng for Real-me H.264/AVC Vdeo Encodng

More information

Why Take Notes? Use the Whiteboard Capture System

Why Take Notes? Use the Whiteboard Capture System Why Take Notes? Use the Whteboard Capture System L-we He Zhengyou Zhang and Zcheng Lu September, 2002 Techncal Report MSR-TR-2002-89 Mcrosoft Research Mcrosoft Corporaton One Mcrosoft Way Redmond, WA 98052

More information

Optimized PMU placement by combining topological approach and system dynamics aspects

Optimized PMU placement by combining topological approach and system dynamics aspects Optmzed PU placement by combnng topologcal approach and system dynamcs aspects Jonas Prommetta, Jakob Schndler, Johann Jaeger Insttute of Electrcal Energy Systems Fredrch-Alexander-Unversty Erlangen-Nuremberg

More information

Novel Quantization Strategies for Linear Prediction with Guarantees

Novel Quantization Strategies for Linear Prediction with Guarantees Smon S. Du* Ychong Xu* Yuan L Hongyang Zhang Aart Sngh Pulkt Grover Carnege Mellon Unversty, Pttsburgh, PA 15213, USA *: Contrbute equally. SSDU@CS.CMU.EDU YICHONGX@CS.CMU.EDU LIYUANCHRISTY@GMAIL.COM HONGYANZ@CS.CMU.EDU

More information

Cost-Aware Fronthaul Rate Allocation to Maximize Benefit of Multi-User Reception in C-RAN

Cost-Aware Fronthaul Rate Allocation to Maximize Benefit of Multi-User Reception in C-RAN Cost-Aware Fronthaul Rate Allocaton to Maxmze Beneft of Mult-User Recepton n C-RAN Dora Bovz, Chung Shue Chen, Sheng Yang To cte ths verson: Dora Bovz, Chung Shue Chen, Sheng Yang. Cost-Aware Fronthaul

More information

Simon Sheu Computer Science National Tsing Hua Universtity Taiwan, ROC

Simon Sheu Computer Science National Tsing Hua Universtity Taiwan, ROC Mounr A. Tantaou School of Electrcal Engneerng and Computer Scence Unversty of Central Florda Orlando, FL 3286-407-823-393 tantaou@cs.ucf.edu Interacton wth Broadcast Vdeo Ken A. Hua School of Electrcal

More information

Error Concealment Aware Rate Shaping for Wireless Video Transport 1

Error Concealment Aware Rate Shaping for Wireless Video Transport 1 Error Concealment Aware Rate Shapng for Wreless Vdeo Transport 1 Trsta Pe-chun Chen and Tsuhan Chen 2 Abstract Streamng of vdeo, whch s both source- and channel- coded, over wreless networks faces the

More information

The Traffic Image Is Dehazed Based on the Multi Scale Retinex Algorithm and Implementation in FPGA Cui Zhe1, a, Chao Li2, b *, Jiaqi Meng3, c

The Traffic Image Is Dehazed Based on the Multi Scale Retinex Algorithm and Implementation in FPGA Cui Zhe1, a, Chao Li2, b *, Jiaqi Meng3, c 3rd Internatonal Conference on Mechatroncs and Industral Informatcs (ICMII 2015) The Traffc Image Is Dehazed Based on the Mult Scale Retnex Algorthm and Implementaton n FPGA Cu Zhe1, a, Chao L2, b *, Jaq

More information

A Comparative Analysis of Disk Scheduling Policies

A Comparative Analysis of Disk Scheduling Policies A Comparatve Analyss of Dsk Schedulng Polces Toby J. Teorey and Tad B. Pnkerton Unversty of Wsconsn* Fve well-known schedulng polces for movable head dsks are compared usng the performance crtera of expected

More information

Critical Path Reduction of Distributed Arithmetic Based FIR Filter

Critical Path Reduction of Distributed Arithmetic Based FIR Filter Crtcal Path Reducton of strbuted rthmetc Based FIR Flter Sunta Badave epartment of Electrcal and Electroncs Engneerng.I.T, urangabad aharashtra, Inda njal Bhalchandra epartment of Electroncs and Telecommuncaton

More information

Instructions for Contributors to the International Journal of Microwave and Wireless Technologies

Instructions for Contributors to the International Journal of Microwave and Wireless Technologies Instructons for Contrbutors to the Internatonal Journal of Mcrowave and Wreless Technologes Frst A. Author 1, Second Author 1,2, Thrd Author 2 1 Cambrdge Unversty Press, Ednburgh Buldng, Shaftesbury Road,

More information

Decision Support by Interval SMART/SWING Incorporating. Imprecision into SMART and SWING Methods

Decision Support by Interval SMART/SWING Incorporating. Imprecision into SMART and SWING Methods Decson Support by Interval SMART/SWING Incorporatng Imprecson nto SMART and SWING Methods Abstract: Interval judgments are a way of handlng preferental and nformatonal mprecson n multcrtera decson analyss.

More information

Statistics AGAIN? Descriptives

Statistics AGAIN? Descriptives Cal State Northrdge Ψ427 Andrew Answorth PhD Statstcs AGAIN? What do we want to do wth statstcs? Organze and Descrbe patterns n data Takng ncomprehensble data and convertng t to: Tables that summarze the

More information

Hybrid Transcoding for QoS Adaptive Video-on-Demand Services

Hybrid Transcoding for QoS Adaptive Video-on-Demand Services 732 IEEE Transactons on Consumer Electroncs, Vol. 50, No. 2, MAY 2004 Hybrd Transcodng for QoS Adaptve Vdeo-on-Demand Servces Ilhoon Shn and Kern Koh Abstract Transcodng s a core technque that s used n

More information

Correcting Image Placement Errors Using Registration Control (RegC ) Technology In The Photomask Periphery

Correcting Image Placement Errors Using Registration Control (RegC ) Technology In The Photomask Periphery Correctng Image Placement Errors Usng Regstraton Control (RegC ) Technology In The Photomask Perphery Av Cohen 1, Falk Lange 2 Guy Ben-Zv 1, Erez Gratzer 1, Dmtrev Vladmr 1 1. Carl Zess SMS Ltd., Karmel

More information

current activity shows on the top right corner in green. The steps appear in yellow

current activity shows on the top right corner in green. The steps appear in yellow Browzwear Tutorals Tutoral ntroducton Ths tutoral leads you through the best practces of color ways operatons usng an llustrated step by step approach. Each slde shows the actual applcaton at the stage

More information

Technical Information

Technical Information CHEMCUT Techncal Informaton CORPORATION Introducton The Chemcut CC8000 etcher has many new features desgned to reduce the cost of manufacturng and, just as mportantly, the cost of ownershp. Keepng the

More information

Following a musical performance from a partially specified score.

Following a musical performance from a partially specified score. Followng a muscal performance from a partally specfed score. Bryan Pardo and Wllam P. Brmngham Artfcal Intellgence Laboratory Electrcal Engneerng and Computer Scence Dept. and School of Musc The Unversty

More information

Improving Reliability and Energy Efficiency of Disk Systems via Utilization Control

Improving Reliability and Energy Efficiency of Disk Systems via Utilization Control Ths paper appeared n the Proceedngs of the 2th IEEE Symposum on Computers and Communcatons (ISCC'08, Marrakech, Morocco, July 2008. Improvng Relablty and Energy Effcency of Dsk Systems va Utlzaton Control

More information

A Scalable HDD Video Recording Solution Using A Real-time File System

A Scalable HDD Video Recording Solution Using A Real-time File System H. L et al.: A Scalable HDD Vdeo Recordng Soluton Usng A Real-tme Fle System A Scalable HDD Vdeo Recordng Soluton Usng A Real-tme Fle System Hong L, Stephen R. Cumpson Member, IEEE, Robert Jochemsen, Jan

More information

QUICK START GUIDE v0.98

QUICK START GUIDE v0.98 QUICK START GUIDE v0.98 QUICK HELP Q A 1 STEP BY STEP 3 GLOSSARY 2 A B C 1 INSTALLATION 1. Make sure that the hardware nstallaton s performed by a certfed vendor 2. Install OTOTRAK app from Apple s App

More information

SONG STRUCTURE IDENTIFICATION OF JAVANESE GAMELAN MUSIC BASED ON ANALYSIS OF PERIODICITY DISTRIBUTION

SONG STRUCTURE IDENTIFICATION OF JAVANESE GAMELAN MUSIC BASED ON ANALYSIS OF PERIODICITY DISTRIBUTION SOG STRUCTURE IDETIFICATIO OF JAVAESE GAMELA MUSIC BASED O AALYSIS OF PERIODICITY DISTRIBUTIO D. P. WULADARI, Y. K. SUPRAPTO, 3 M. H. PUROMO,,3 Insttut Teknolog Sepuluh opember, Department of Electrcal

More information

System of Automatic Chinese Webpage Summarization Based on The Random Walk Algorithm of Dynamic Programming

System of Automatic Chinese Webpage Summarization Based on The Random Walk Algorithm of Dynamic Programming Send Orders for Reprnts to reprnts@benthamscence.ae The Open Cybernetcs & Systemcs Journal, 205, 9, 35-322 35 Open Access System of Automatc Chnese Webpage Summarzaton Based on The Random Walk Algorthm

More information

Quantization of Three-Bit Logic for LDPC Decoding

Quantization of Three-Bit Logic for LDPC Decoding Proceedngs of the World Congress on Engneerng and Computer Scence 2011 Vol II, October 19-21, 2011, San Francsco, USA Quantzaton of Three-Bt Logc for LDPC Decodng Raymond Moberly and Mchael E. O'Sullvan

More information

Simple Solution for Designing the Piecewise Linear Scalar Companding Quantizer for Gaussian Source

Simple Solution for Designing the Piecewise Linear Scalar Companding Quantizer for Gaussian Source 94 J. NIKOIĆ, Z. PERIĆ,. VEIMIROVIĆ, SIMPE SOUTION FOR DESIGNING THE PIECEWISE INEAR SCAAR Smle Soluton for Desgnng the Pecewse near Scalar Comandng Quantzer for Gaussan Source Jelena NIKOIĆ, Zoran PERIĆ,

More information

Integration of Internet of Thing Technology in Digital Energy Network with Dispersed Generation

Integration of Internet of Thing Technology in Digital Energy Network with Dispersed Generation Amercan Scentfc Research Journal for Engneerng, Technology, and Scences (ASRJETS) ISS (Prnt) 2313-4410, ISS (Onlne) 2313-4402 Global Socety of Scentfc Research and Researchers http://asrjetsjournal.org/

More information

MODELING AND ANALYZING THE VOCAL TRACT UNDER NORMAL AND STRESSFUL TALKING CONDITIONS

MODELING AND ANALYZING THE VOCAL TRACT UNDER NORMAL AND STRESSFUL TALKING CONDITIONS MODELING AND ANALYZING THE VOCAL TRACT UNDER NORMAL AND STRESSFUL TALING CONDITIONS Ismal Shahn and Naeh Botros 2 Electrcal/Electroncs and Comuter Engneerng Deartment Unversty of Sharjah, P. O. Box 27272,

More information

AIAA Optimal Sampling Techniques for Zone- Based Probabilistic Fatigue Life Prediction

AIAA Optimal Sampling Techniques for Zone- Based Probabilistic Fatigue Life Prediction AIAA 2002-383 Optmal Samplng Technques or Zone- Based Probablstc Fatgue Le Predcton M. P. Enrght Southwest Research Insttute San Antono, TX H. R. Mllwater Unversty o Texas at San Antono San Antono, TX

More information

tj tj D... '4,... ::=~--lj c;;j _ ASPA: Automatic speech-pause analyzer* t> ,. "",. : : :::: :1'NTmAC' I

tj tj D... '4,... ::=~--lj c;;j _ ASPA: Automatic speech-pause analyzer* t> ,. ,. : : :::: :1'NTmAC' I ASPA: Automatc speech-pause analyzer* D. GERVERt and G. DNELEY Unversty of Durham, Durham, England ASPA: The Programs Snce the actual detals of nterface samplng, dsk storage routnes, etc., wll depend upon

More information

Accepted Manuscript. An improved artificial bee colony algorithm for flexible job-shop scheduling problem with fuzzy processing time

Accepted Manuscript. An improved artificial bee colony algorithm for flexible job-shop scheduling problem with fuzzy processing time Accepted Manuscrpt An mproved artfcal bee colony algorthm for flexble ob-shop schedulng problem wth fuzzy processng tme Ka Zhou Gao, Ponnuthura Nagaratnam Suganthan, Quan Ke Pan, Tay Jn Chua, Chn Soon

More information

Analysis of Subscription Demand for Pay-TV

Analysis of Subscription Demand for Pay-TV Analyss of Subscrpton Demand for Pay-TV Manabu Shshkura Researcher Insttute for Informaton and Communcatons Polcy 2-1-2 Kasumgasek, Chyoda-ku Tokyo 110-8926 Japan m-shshkura@soumu.go.jp Tel: 03-5253-5496

More information

Modeling Form for On-line Following of Musical Performances

Modeling Form for On-line Following of Musical Performances Modelng Form for On-lne Followng of Muscal Performances Bryan Pardo 1 and Wllam Brmngham 2 1 Computer Scence Department, Northwestern Unversty, 1890 Maple Ave, Evanston, IL 60201 2 Department of Math and

More information

Study on the location of building evacuation indicators based on eye tracking

Study on the location of building evacuation indicators based on eye tracking Study on the locaton of buldng evacuaton ndcators based on eye trackng Yue L Tsnghua Unversty yue-l5@malstsnghuaeducn Png hang Tsnghua Unversty zhangp@malstsnghuaeducn Hu hang Tsnghua Unversty, zhhu@tsnghuaeducn

More information

Automated composer recognition for multi-voice piano compositions using rhythmic features, n-grams and modified cortical algorithms

Automated composer recognition for multi-voice piano compositions using rhythmic features, n-grams and modified cortical algorithms Complex Intell. Syst. (2018) 4:55 65 https://do.org/10.1007/s40747-017-0052-x ORIGINAL ARTICLE Automated composer recognton for mult-voce pano compostons usng rhythmc features, n-grams and modfed cortcal

More information

Reduce Distillation Column Cost by Hybrid Particle Swarm and Ant

Reduce Distillation Column Cost by Hybrid Particle Swarm and Ant From the SelectedWorks of Dr. Sandp Kumar Lahr Summer July 20, 2016 Reduce Dstllaton Column Cost by Hybrd Partcle Swarm and Ant Dr. Sandp k lahr chnmaya lenka Avalable at: https://works.bepress.com/sandp_lahr/33/

More information

arxiv: v1 [cs.cl] 12 Sep 2018

arxiv: v1 [cs.cl] 12 Sep 2018 Powered by TCPDF (www.tcpdf.org) Neural Melody Composton from Lyrcs Hangbo Bao, Shaohan Huang 2, Furu We 2, Le Cu 2, Yu Wu 3, Chuanq Tan 3, Songhao Pao, Mng Zhou 2 School of Computer Scence, Harbn Insttute

More information

Simple VBR Harmonic Broadcasting (SVHB)

Simple VBR Harmonic Broadcasting (SVHB) mple VBR Harmonc Broadcastng (VHB) Hsang-Fu Yu ab, Hung-hang Yang a, Y-Mng hen c, -Mng Tseng a, and hen-y Kuo a a Dep. of omputer cence & Informaton Engneerng, atonal entral Unversty, Tawan b omputer enter,

More information

Small Area Co-Modeling of Point Estimates and Their Variances for Domains in the Current Employment Statistics Survey

Small Area Co-Modeling of Point Estimates and Their Variances for Domains in the Current Employment Statistics Survey Small Area Co-Modelng of Pont Estmates and Ther Varances for Domans n the Current Employment Statstcs Survey Jule Gershunskaya, Terrance D. Savtsky U.S. Bureau of Labor Statstcs FCSM, March 2018 Dsclamer:

More information

Failure Rate Analysis of Power Circuit Breaker in High Voltage Substation

Failure Rate Analysis of Power Circuit Breaker in High Voltage Substation T. Suwanasr, M. T. Hlang and C. Suwanasr / GMSAR Internatonal Journal 8 (2014) 1-6 Falure Rate Analyss of Power Crcut Breaker n Hgh Voltage Substaton Thanapong Suwanasr, May Thandar Hlang and Cattareeya

More information

A STUDY OF TRUMPET ENVELOPES

A STUDY OF TRUMPET ENVELOPES A STUDY OF TRUMPET ENVELOPES Roger B. Dannenberg, Hank Pellern, and Istvan Dereny School of Computer Scence, Carnege Mellon Unversty Pttsburgh, PA 15213 USA rbd@cs.cmu.edu, hank.pellern@andrew.cmu.edu,

More information

Detecting Errors in Blood-Gas Measurement by Analysiswith Two Instruments

Detecting Errors in Blood-Gas Measurement by Analysiswith Two Instruments CLIN. CHEM. 33/4, 512-517 (1987) Detectng Errors n Blood-Gas Measurement by Analysswth Two Instruments LouIs F. Metzger, Wllam B. Stauffer, Ann V. Kruplnskl, Rchard P. MIIlman,3 George S. Cembrowskl,2

More information

INSTRUCTION MANUAL FOR THE INSTALLATION, USE AND MAINTENANCE OF THE REGULATOR GENIUS POWER COMBI

INSTRUCTION MANUAL FOR THE INSTALLATION, USE AND MAINTENANCE OF THE REGULATOR GENIUS POWER COMBI NSTRUCTON MANUAL FOR THE NSTALLATON, USE AND MANTENANCE OF THE REGULATOR GENUS POWER COMB (TRANSLATON OF THE ORGNAL NSTRUCTON MANUAL N TALAN) PRELMNARY VERSON WARRANTY The devce s guaranteed 24 months

More information

User s manual. Digital control relay SVA

User s manual. Digital control relay SVA User s manual Dgtal control relay DISIBEINT ELECTRONIC S.L, has been present n the feld of the manufacture of components for the ndustral automaton for more than years, and mantans n constant evoluton

More information

SKEW DETECTION AND COMPENSATION FOR INTERNET AUDIO APPLICATIONS. Orion Hodson, Colin Perkins, and Vicky Hardman

SKEW DETECTION AND COMPENSATION FOR INTERNET AUDIO APPLICATIONS. Orion Hodson, Colin Perkins, and Vicky Hardman SKEW DETECTION AND COMPENSATION FOR INTERNET AUDIO APPLICATIONS Oron Hodson, Coln Perkns, and Vcky Hardman Department of Computer Scence Unversty College London Gower Street, London, WC1E 6BT, UK. ABSTRACT

More information

Product Information. Manual change system HWS

Product Information. Manual change system HWS Product Informaton HWS HWS Flexble. Compact. Productve. HWS manual change system Manual tool change system wth ntegrated ar feed-through and optonal electrc feed-through Feld of applcaton Excellently sutable

More information

Clock Synchronization in Satellite, Terrestrial and IP Set-top Box for Digital Television

Clock Synchronization in Satellite, Terrestrial and IP Set-top Box for Digital Television Clock Synchronzaton n Satellte, Terrestral and IP Set-top Box for Dgtal Televson THESIS Submtted n partal fulflment of the requrements for the degree of DOCTOR OF PHILOSOPHY by MONIKA JAIN Under the Supervson

More information

Environmental Reviews. Cause-effect analysis for sustainable development policy

Environmental Reviews. Cause-effect analysis for sustainable development policy Envronmental Revews Cause-effect analyss for sustanable development polcy Journal: Envronmental Revews Manuscrpt ID er-2016-0109.r2 Manuscrpt Type: Revew Date Submtted by the Author: 24-Feb-2017 Complete

More information

Lost on the Web: Does Web Distribution Stimulate or Depress Television Viewing?

Lost on the Web: Does Web Distribution Stimulate or Depress Television Viewing? Lost on the Web: Does Web Dstrbuton Stmulate or Depress Televson Vewng? Joel Waldfogel The Wharton School Unversty of Pennsylvana August 10, 2007 Prelmnary comments welcome Abstract In the past few years,

More information

THE IMPORTANCE OF ARM-SWING DURING FORWARD DIVE AND REVERSE DIVE ON SPRINGBOARD

THE IMPORTANCE OF ARM-SWING DURING FORWARD DIVE AND REVERSE DIVE ON SPRINGBOARD THE MPORTANCE OF ARM-SWNG DURNG FORWARD DVE AND REVERSE DVE ON SPRNGBOARD Ken Yokoyama Laboratory of Bomechancs Faculty ofeducaton Kanazawa Unversty Kanazawa, Japan J unjro Nagano Department of Physcal

More information

Product Information. Manual change system HWS

Product Information. Manual change system HWS Product Informaton HWS HWS Flexble. Compact. Productve. HWS manual change system Manual tool change system wth ntegrated ar feed-through and optonal electrc feed-through Feld of applcaton Excellently sutable

More information

Scalable QoS-Aware Disk-Scheduling

Scalable QoS-Aware Disk-Scheduling Scalable QoS-Aware Dsk-Schedulng Wald G. Aref Khaled El-Bassyoun Ibrahm Kamel Mohamed F. Mokbel Department of Computer Scences, urdue Unversty, West Lafayette, IN 47907-1398 anasonc Informaton and Networkng

More information

3 Part differentiation, 20 parameters, 3 histograms Up to patient results (including histograms) can be stored

3 Part differentiation, 20 parameters, 3 histograms Up to patient results (including histograms) can be stored st Techncal Specfcatons Desgned n France Wth a rch past and a professonal experence bult-up over 35 years, SFRI s a French nvatve company commtted to developng preon In Vtro Dst solutons. SFRI has bult

More information

FPGA Implementation of Cellular Automata Based Stream Cipher: YUGAM-128

FPGA Implementation of Cellular Automata Based Stream Cipher: YUGAM-128 ISSN (Prnt) : 2320 3765 ISSN (Onlne): 2278 8875 Internatonal Journal of Advanced Research n Electrcal, Electroncs and Instrumentaton Engneerng An ISO 3297: 2007 Certfed Organzaton Vol. 3, Specal Issue

More information

AN INTERACTIVE APPROACH FOR MULTI-CRITERIA SORTING PROBLEMS

AN INTERACTIVE APPROACH FOR MULTI-CRITERIA SORTING PROBLEMS AN INTERACTIVE APPROACH FOR MULTI-CRITERIA SORTING PROBLEMS A THESIS SUBMITTED TO THE GRADUATE SCHOOL OF NATURAL AND APPLIED SCIENCES OF MIDDLE EAST TECHNICAL UNIVERSITY BY BURAK KESER IN PARTIAL FULFILLMENT

More information

AMP-LATCH* Ultra Novo mm [.025 in.] Ribbon Cable 02 MAR 12 Rev C

AMP-LATCH* Ultra Novo mm [.025 in.] Ribbon Cable 02 MAR 12 Rev C AMP-LATCH* Ultra Novo Applcaton Specfcaton Receptacle Connectors for 114-40056 0.64 mm [.025 n.] Rbbon Cable 02 MAR 12 All numercal values are n metrc unts [wth U.S. customary unts n brackets]. Dmensons

More information

Fast Intra-Prediction Mode Decision in H.264/AVC Based on Macroblock Properties

Fast Intra-Prediction Mode Decision in H.264/AVC Based on Macroblock Properties Fast Intra-Predcton Mode Decson n H.264/AVC Based on Macroblock Propertes Abstract Intra-predcton s a wdely used tecnque n ntra codng. H.264/AVC adopts rate-dstorton optmzaton (RDO) tecnque to obtan te

More information

Loewe bild 7.65 OLED. Set-up options. Loewe bild 7 cover Incl. Back cover. Loewe bild 7 cover kit Incl. Back cover and Speaker cover

Loewe bild 7.65 OLED. Set-up options. Loewe bild 7 cover Incl. Back cover. Loewe bild 7 cover kit Incl. Back cover and Speaker cover Product nformaton Loewe bld 7.65 Page of March 07 Loewe bld 7.65 OLED EU energy effcency class: B Screen dagonal (n cm) / Screen dagonal (n nch): 64 / 65 Power consumpton ON (n W): 80 Annual energy consumpton

More information

Product Information. Universal swivel units SRU-plus

Product Information. Universal swivel units SRU-plus Product Informaton Unversal swvel unts SRU-plus SRU-plus Unversal swvel unts Robust. Fast. Hgh Performance. SRU-plus unversal rotary actuator Unversal unt for pneumatc swvel and turnng movements. Feld

More information

Craig Webre, Sheriff Personnel Division/Law Enforcement Complex 1300 Lynn Street Thibodaux, Louisiana 70301

Craig Webre, Sheriff Personnel Division/Law Enforcement Complex 1300 Lynn Street Thibodaux, Louisiana 70301 DATE OF APPLCATON: Craig Webre, Sheriff Personnel Division/Law Enforcement Complex 1300 Lynn Street Thibodaux, Louisiana 70301 N GENERAL EMAL ADDRESS: For Local Calls - (985) 532-4380 (985) 446-2255 (985)

More information

Discussion Paper Series

Discussion Paper Series Doshsha Unversty Center for the Study of the Creatve Economy Dscusson Paper Seres No. 2013-04 Nonlnear Effects of Superstar Collaboraton: Why the Beatles Succeeded but Broke Up Tadash Yag Dscusson Paper

More information

Multi-Line Acquisition With Minimum Variance Beamforming in Medical Ultrasound Imaging

Multi-Line Acquisition With Minimum Variance Beamforming in Medical Ultrasound Imaging IEEE Transactons on Ultrasoncs, Ferroelectrcs, and Frequency Control, vol. 60, no. 12, Decemer 2013 2521 Mult-Lne Acquston Wth Mnmum Varance Beamformng n Medcal Ultrasound Imagng Ad Ranovch, Zv Fredman,

More information

RIAM Local Centre Woodwind, Brass & Percussion Syllabus

RIAM Local Centre Woodwind, Brass & Percussion Syllabus 8 RIAM Local Centre Woodwnd, Brass & Percusson Syllabus 2015-2018 AURAL REQUIREMENTS AND THEORETICAL QUESTIONS REVISED FOR ALL PRACTICAL SUBJECTS AURAL TESTS From Elementary to Grade V ths area s worth

More information

TRADE-OFF ANALYSIS TOOL FOR INTERACTIVE NONLINEAR MULTIOBJECTIVE OPTIMIZATION Petri Eskelinen 1, Kaisa Miettinen 2

TRADE-OFF ANALYSIS TOOL FOR INTERACTIVE NONLINEAR MULTIOBJECTIVE OPTIMIZATION Petri Eskelinen 1, Kaisa Miettinen 2 Internatonal Conference 20th EURO Mn Conference Contnuous Optmaton and Knowledge-Based Technologes (EurOPT-2008) May 20 23, 2008, Nernga, LITHUANIA ISBN 978-9955-28-283-9 L. Saalausas, G.W. Weber and E.

More information

User Manual. AV Router. High quality VGA RGBHV matrix that distributes signals directly. Controlled via computer.

User Manual. AV Router. High quality VGA RGBHV matrix that distributes signals directly. Controlled via computer. User Manual AV Router Hgh qualty VGA RGBHV matrx that dstrbutes sgnals drectly. Controlled va computer. Notce: : The nmaton contaned n ths document s subject to change wthout notce. SmartAVI makes no warranty

More information

Production of Natural Penicillins by Strains of Penicillium chrysogenutn

Production of Natural Penicillins by Strains of Penicillium chrysogenutn Producton of Natural Pencllns by Strans of Pencllum chrysogenutn a J. FUSK and ЬЕ. WELWRDOVÁ ^Department of Mcrobology and Bochemstry, Slovak Techncal Unversty, Bratslava b Botka, Slovenská Ľupča Receved

More information

Color Monitor. L200p. English. User s Guide

Color Monitor. L200p. English. User s Guide Color Montor L200p User s Gude Englsh Frst Edton (February / 2003) Note : For mportant nformaton, refer to the Montor Safety and Warranty manual that comes wth ths montor. Contents ENGLISH Safety (Read

More information

Loewe bild 5.55 oled. Modular Design Flexible configuration with individual components. Set-up options. TV Monitor

Loewe bild 5.55 oled. Modular Design Flexible configuration with individual components. Set-up options. TV Monitor Product nformaton Loewe bld 5.55 oled Page of 3 Loewe bld 5.55 oled EU energy effcency class: B Screen dagonal (n cm) / Screen dagonal (n nch): 39 / 55 Power consumpton ON (n W): 50 Annual energy consumpton

More information

T541 Flat Panel Monitor User Guide ENGLISH

T541 Flat Panel Monitor User Guide ENGLISH T541 Flat Panel Montor User Gude ENGLISH Frst Edton (June / 2002) Note : For mportant nformaton, refer to the Montor Safety and Warranty manual that comes wth ths montor. Ths publcaton could contan techncal

More information

Conettix D6600/D6100IPv6 Communications Receiver/Gateway Quick Start

Conettix D6600/D6100IPv6 Communications Receiver/Gateway Quick Start Conettx / Communcatons Recever/Gateway Quck Start.0 Parts Lst able : Conettx System Components Qty. Descrpton Conettx Communcatons Recever/Gateway AC power cord Battery cable P660 I/O cable P660 Rack mount

More information

Product Information. Miniature rotary unit ERD

Product Information. Miniature rotary unit ERD Product Informaton ERD ERD Fast. Compact. Flexble. ERD torque motor Powerful torque motor wth absolute encoder and electrc and pneumatc rotary feed-through Feld of applcaton For all applcatons wth exceptonal

More information

(12) Ulllted States Patent (10) Patent N0.: US 8,269,970 B2 P0lid0r et a]. (45) Date of Patent: Sep. 18, 2012

(12) Ulllted States Patent (10) Patent N0.: US 8,269,970 B2 P0lid0r et a]. (45) Date of Patent: Sep. 18, 2012 US008269970B2 (12) Ulllted States Patent (10) Patent N0.: P0ld0r et a]. (45) Date of Patent: Sep. 18, 12 (54) OPTICAL COMPARATOR WITH DIGITAL 6,945,652 B2 9/05 sakqta et a1 GAGE 7,058,109 B2* 6/06 Davs.....

More information

CONNECTIONS GUIDE. To Find Your Hook.up Turn To Page 1

CONNECTIONS GUIDE. To Find Your Hook.up Turn To Page 1 CONNECTIONS GUIDE To Fnd Your Hook.up Turn To Page 1 Connectng TV to Antenna (or Cable Wthout Cable Box) and No VCR (Hook-up 1A)... 2 Monaural VCR (Hook-up 1B)... 3 StereoVCR (Hook-up 1C)... 4 Cable Wth

More information

SWS 160. Moment loading. Technical data. M x max Nm M y max Nm. M z max Nm

SWS 160. Moment loading. Technical data. M x max Nm M y max Nm. M z max Nm Moment loadng M x max. 7170 Nm M y max. 7170 Nm M z max. 3800 Nm Ths s the max. sum of all forces and moments (from acceleraton forces and moments, process forces or moments, emergency stop stuatons, etc.)

More information

JTAG / Boundary Scan. Multidimensional JTAG / Boundary Scan Instrumentation. Get the total Coverage!

JTAG / Boundary Scan. Multidimensional JTAG / Boundary Scan Instrumentation. Get the total Coverage! JTAG / Boundary Scan Multdmensonal JTAG / Boundary Scan Instrumentaton IEEE 1149.6 IEEE 1149.1 IEEE 1149.7 Multdmensonal JTAG / Boundary Scan Instrumentaton IEEE 1149.4 IEEE 1532 Get the total Coverage!

More information

Academic Standards and Calendar Committee Report # : Proposed Academic Calendars , and

Academic Standards and Calendar Committee Report # : Proposed Academic Calendars , and Unversty of Rhode sland DgtalCommons@UR Blls 2004 Academc Standards and Calendar Commttee Report #2003041: Proposed Academc Calendars 200708, 200809 and 200910 Unversty of Rhode sland Follow ths and addtonal

More information

CONNECTIONS GUIDE. To Find Your Hook.up Turn To Page 1

CONNECTIONS GUIDE. To Find Your Hook.up Turn To Page 1 CONNECTIONS GUIDE To Fnd Your Hook.up Turn To Page 1 Connectng TV to Antenna (or Cable Wthout Cable Box) and No VCR (Hook-up 1A)...2 Monaural VCR (Hook-up 1B)...3 Stereo VCR (Hook-up 1C)... 4 Cable Wth

More information

Modular Plug Connectors (Standard and Small Conductor)

Modular Plug Connectors (Standard and Small Conductor) Modular Plug Connectors (Standard and Small Conductor) Applcaton Specfcaton 114-6016 04 APR 11 All numercal values are n metrc unts [wth U.S. customary unts n brackets]. Dmensons are n mllmeters [and nches].

More information

CASH TRANSFER PROGRAMS WITH INCOME MULTIPLIERS: PROCAMPO IN MEXICO

CASH TRANSFER PROGRAMS WITH INCOME MULTIPLIERS: PROCAMPO IN MEXICO FCND DP No. 99 FCND DISCUSSION PAPER NO. 99 CASH TRANSFER PROGRAMS WITH INCOME MULTIPLIERS: PROCAMPO IN MEXICO Elsabeth Sadoulet, Alan de Janvry, and Benjamn Davs Food Consumpton and Nutrton Dvson Internatonal

More information

GENERAL AGREEMENT ON MMra

GENERAL AGREEMENT ON MMra RESTRICTED GENERAL AGREEMENT ON MMra TARIFFS AND TRADE Speeal Dstrbuton Agrculture Commttee A. Remarks IMPORT MEASURES Varable Leves and Other Specal Charges Addendum SWITZERLAND Imports of the products

More information

S Micro--Strip Tool in. S Combination Strip Tool ( ) S Cable Holder Assembly (Used only

S Micro--Strip Tool in. S Combination Strip Tool ( ) S Cable Holder Assembly (Used only Instructon Sheet LghtCrmp* Plus LC 408-10103 (for Jacketed Cable) Connectors 18 AUG 09 Rear Protectve Cap Termnaton CoverG Boot Connector Assembly Crmp Eyelet Duplex Clp G Connector kt s shpped wth these

More information

Turn it on. Your guide to getting the best out of BT Vision

Turn it on. Your guide to getting the best out of BT Vision Avalable n Bralle, large prnt and audo CD. Please call FREE on 8 8 15 for your copy. Turn t on Your gude to gettng the best out of www.bt.com/btvson V.2 28656 Enchantng flms to entertan all the famly Flms

More information

Sealed Circular LC Connector System Plug

Sealed Circular LC Connector System Plug Sealed Crcular LC Connector System Plug Instructon Sheet Kt 1828618- [ ], Receptacle Kt 1828619- [ ], 408-10079 and EMI Receptacle Kt 1985193- [ ] 07 APR 11 Plug Kt 1828618 -[ ] Cable Fttng Receptacle

More information

User guide. Receiver-In-Ear hearing aids. resound.com

User guide. Receiver-In-Ear hearing aids. resound.com User gude Recever-In-Ear hearng ads resound.com 400786011US-17.07-Rev.A.ndd 1 20-07-2017 12:52:40 Left Hearng Ad Rght Hearng Ad Seral number Seral number Model number Model number Recever type Recever

More information

Expressive Musical Timing

Expressive Musical Timing Axel Berndt, Tlo Hähnel Department of Smulaton and Graphcs Otto-von-Guercke Unversty of Magdeburg {aberndt tlo}@sg.cs.un-magdeburg.de Abstract. Tmng s crucal for the qualty of expressve musc performances.

More information

INTERCOM SMART VIDEO DOORBELL. Installation & Configuration Guide

INTERCOM SMART VIDEO DOORBELL. Installation & Configuration Guide INTERCOM SMART VIDEO DOORBELL Installaton & Confguraton Gude ! Important safety nformaton Read ths manual before attemptng to nstall the devce! Falure to observe recommendatons ncluded n ths manual may

More information

A question of character. Loewe Connect ID.

A question of character. Loewe Connect ID. A queston of character. Loewe Connect ID. Modern. Etquette you can learn, character s nnate. You make a clear dstncton between good manners and genune style. Your s s lke yourself: unfussy, busnesslke

More information

JTAG / Boundary Scan. Multidimensional JTAG / Boundary Scan Instrumentation

JTAG / Boundary Scan. Multidimensional JTAG / Boundary Scan Instrumentation JTAG / Boundary Scan Multdmensonal JTAG / Boundary Scan Instrumentaton 2 GOEPEL electronc & JTAG / Boundary Scan COMPANY GOEPEL electronc GmbH GOEPEL electronc s a global company that has been developng

More information

DT-500 OPERATION MANUAL MODE D'EMPLOI MANUAL DE MANEJO MANUAL DE OPERA(_._,O. H.-,lri-D PROJECTOR PROJECTEUR PROYECTOR PROJETOR

DT-500 OPERATION MANUAL MODE D'EMPLOI MANUAL DE MANEJO MANUAL DE OPERA(_._,O. H.-,lri-D PROJECTOR PROJECTEUR PROYECTOR PROJETOR TM PROJECTOR PROJECTEUR PROYECTOR PROJETOR DT-500 OPERATION MANUAL MODE D'EMPLOI MANUAL DE MANEJO MANUAL DE OPERA(_._,O 8 f f 8 H.-,lr-D _I_H DEFINmON_TIM_IA I_T_RFACE Before usng the projector, please

More information

Product Bulletin 40C 40C-10R 40C-20R 40C-114R. Product Description For Solvent, Eco-Solvent, UV and Latex Inkjet and Screen Printing 3-mil vinyl films

Product Bulletin 40C 40C-10R 40C-20R 40C-114R. Product Description For Solvent, Eco-Solvent, UV and Latex Inkjet and Screen Printing 3-mil vinyl films Product Bulletn 40C Revson D, Effectve February 2016 (Replaces C, Apr. 15) 40C-10R 40C-20R 40C-114R Product Descrpton For Solvent, Eco-Solvent, UV and Latex Inkjet and Screen Prntng 3-ml vnyl flms Quck

More information

WPA REGIONAL CONGRESS OSAKA Japan 2015

WPA REGIONAL CONGRESS OSAKA Japan 2015 !!!!!!!!! -1- WPA REGIONAL CONGRESS OSAKA Japan 2015 "! " -2- !!!! -3- " " "!! " " -4- !!!!!!!!!!!!!! -5- !!!!!!!!!!!!!!! -6- WPA REGIONAL CONGRESS OSAKA Japan 2015! -7- ! "!! -8- -9- WPA REGIONAL CONGRESS

More information

Product Information. Universal swivel units SRU-plus 25

Product Information. Universal swivel units SRU-plus 25 Product Informaton SRU-plus Robust. Fast. Hgh Performance. SRU-plus unversal rotary actuator Unversal unt for pneumatc swvel and turnng movements. Feld of applcaton Can be used n ether clean or contamnated

More information

SCTE Broadband Premises Technician (BPT)

SCTE Broadband Premises Technician (BPT) SCTE Broadband Premses Techncan (BPT) Competences Scope The Socety of Cable Telecommuncatons Engneers (SCTE) Broadband Premses Techncan certfcaton descrbes the knowledge of an experenced feld techncan

More information

ELEGT110111C. Servicing & Technology November Pick and place and holding fixtures. Whatever happened to if transformers

ELEGT110111C. Servicing & Technology November Pick and place and holding fixtures. Whatever happened to if transformers THE PROFESSIONAL MAGAZINE FOR ELECTRONICS AND COMPUTER SERVICING ELEGT110111C Servcng & Technology November 1995 Pck and place and holdng fxtures Whatever happened to f transformers 0.S $3 00 1 1> Q.^

More information

zenith Installation and Operating Guide HodelNumber I Z42PQ20 [ PLASHATV

zenith Installation and Operating Guide HodelNumber I Z42PQ20 [ PLASHATV Installaton and Operatng Gude HodelNumber I Z42PQ20 PLASHATV To vew the extended verson of owner's manual that contans the advanced features of ths TV set, vst our webste at http://www.enthservce.com Ths

More information

www. ElectricalPartManuals. com l Basler Electric VOLTAGE REGULATOR FEATURES: CLASS 300 EQUIPMENT AVC63 4 FEATURES AND APPLICATIONS

www. ElectricalPartManuals. com l Basler Electric VOLTAGE REGULATOR FEATURES: CLASS 300 EQUIPMENT AVC63 4 FEATURES AND APPLICATIONS Using enhanced technology, the AVC63-4 voltage regulator is designed for use on 50/60 Hz brushless generators. This encapsulated regulator is economical, small in size, ruggedly constructed, and incorporates

More information

Scene Classification with Inception-7. Christian Szegedy with Julian Ibarz and Vincent Vanhoucke

Scene Classification with Inception-7. Christian Szegedy with Julian Ibarz and Vincent Vanhoucke Scene Classification with Inception-7 Christian Szegedy with Julian Ibarz and Vincent Vanhoucke Julian Ibarz Vincent Vanhoucke Task Classification of images into 10 different classes: Bedroom Bridge Church

More information

Predicting Aesthetic Radar Map Using a Hierarchical Multi-task Network

Predicting Aesthetic Radar Map Using a Hierarchical Multi-task Network Predicting Aesthetic Radar Map Using a Hierarchical Multi-task Network Xin Jin 1,2,LeWu 1, Xinghui Zhou 1, Geng Zhao 1, Xiaokun Zhang 1, Xiaodong Li 1, and Shiming Ge 3(B) 1 Department of Cyber Security,

More information

Printer Specifications

Printer Specifications : Characterfonts:! Fort Pont 7P 0.5 pl Ptch 5cpl, Ocpl, 2cpl Proptlonel Epson Draf!o 0 lo j Epson Cower 0 0 0 Epson Roman O O O 0 Epson San6 Sent 0 O O O Epson Presllge j0 0 ~Epson Scnpt O 0 Epson Sormt

More information