Integration of Rules from a Random Forest

Size: px
Start display at page:

Download "Integration of Rules from a Random Forest"

Transcription

1 2011 Internatonal Conference on Informaton and Electroncs Engneerng IPCSIT vol.6 (2011) (2011) IACSIT Press, Sngapore Integraton of Rules from a Random Forest Naphaporn Srkulvrya 1 and Sukree Snthupnyo 2 1 Department of Computer Engneerng, Chulalongkorn Unversty, Bangkok, Thaland E-mal: naphaporn.s@student.chula.ac.th 2 Department of Computer Engneerng, Chulalongkorn Unversty, Bangkok, Thaland E-mal: sukree.s@chula.ac.th Abstract. Random forests s an effectve predcton tool wdely used n data mnng. However, the usage and human comprehensveness of the rules obtaned from a forest s a dffcult task because of an amount of rules, whch are patterns of the data, from a number of trees. Moreover, some rules conflct wth other rules. Ths paper thus proposes a new method whch can ntegrate rules from multple trees n a Random Forest whch can help mprove the comprehensveness of the rules. The experments show that the rules obtaned from our method yelded the better results and also reduced the nconsstent condton between rules from dfferent decson trees n the same forest. Keywords: Random Forests, rules ntegraton, Decson Trees. 1. Introducton Ensemble method s a popular machne learnng technque whch has been nterested n data mnng communtes. It s wdely accepted that the accuracy from the ensemble of several weak classfers s usually better than a sngle classfer gven the same amount of tranng nformaton. A number of effectve ensemble algorthms have been nvented durng the past 15 years, such as Baggng (Breman, 1996), Boostng (Freund and Schapre, 1996), Archng (Breman, 1998) and Random Forests (Breman, 2001). Random Forests [1] s an ensemble classfer proposed by Breman. It constructs a seres of classfcaton trees whch wll be used to classfy a new example. The dea used to create a classfer model s constructng multple decson trees, each of whch uses a subset of attrbutes randomly selected from the whole orgnal set of attrbutes. However, the rules generated by exstng ensemble technques sometmes conflct wth the rules generated from another classfer. Ths may lead to a problem when we want to combne all rule set nto a sngle rule set. Therefore, several works ntend to ncrease the accuracy of the classfers. In ths paper, we present an approach whch can ntegrate rules from multple decson trees. Our method s amed at ncrementally ntegratng a par of rules. The newly ntegrated rules wll replace ts orgnal rules. The replacement process wll be repeated untl a stoppng crteron s met. Fnally, the new set of rules wll be used to classfy a new data. 2. Random Forests The Random Forests [1] s an effectve predcton tool n data mnng. It employs the Baggng method to produce a randomly sampled set of tranng data for each of the trees. Ths Random Forests method also sem-randomly selects splttng features; a random subset of a gven sze s produced from the space of possble splttng features. The best splttng s feature determnstcally selected from that subset. A pseudo code of random forest constructon s shown n Fgure 1. To classfy a test nstance, the Random Forests classfes the nstance by smply combnng all results from each of the trees n the forest. The method used to combne the results can be as smple as predctng the class obtaned from the hghest number of trees. 194

2 Algorthm 1: Pseudo code for the random forest algorthm To generate c classfers: for = 1 to c do Randomly sample the tranng data D wth replacement to produce Create a root node, Call BuldTree( N ) end for N contanng D BuldTree(N): f N contans nstances of only one class then return else Randomly select x% of the possble splttng features n N Select the feature F wth the hghest nformaton gan to splt on Create f chld nodes of N, N 1,..., N f, where F has f possble values ( F 1,, for = 1 to f do Set the contents of N to D, where D s all nstances n N that match F Call BuldTree( N ) end for end f D F ) f 3. Methodology Fg. 1: The pseudo code of Random Forest algorthm [17] 3.1. Extractng Rules from Decson Tree A method for extractng rules from a decson tree [11] s qute smple. A rule can be extracted from a path lnkng from the root to a leaf node. All nodes n the path are gathered and connected to each other usng conjunctve operatons. Fg. 2: An example of decson tree For example, a decson tree for classfyng the person who get sunburned after sunbathe s shown n Fg. 2. A rule of sunburned person can be obtaned from the root node har color and ts value blonde lnkng to the node loton used and ts value no. So that the extracted rule wll be IF har color s blonde and loton used s no, THEN sunburned. All obtaned rules from the tree n Fg. 2 are lsted below. (1) IF har color s blonde AND loton used s no THEN nothng happens. (2) IF har color s blonde AND loton used s yes THEN the person gets sunburned. (3) IF har color s red THEN the person gets sunburned (4) IF har color s brown THEN nothng happens 3.2. Integraton of Rules from Random Forests 195

3 We have proposed a new method to ntegrate rules from random forests whch has the followng steps. 1. Remove redundancy condtons In ths step, we wll remove the more general condtons whch appear n the same rule wth more specfc condtons. For example: IF weght>40 AND weght>70 AND weght>80 AND weght<150 AND heght<180 THEN fgure=fat We can see that the condton weght>80 s more specfc than weght>40 and weght>70 so weght>40 and weght>70 are removed. The fnal rule wll be IF weght>80 AND weght<150 AND heght<180 THEN fgure=fat 2. For every par decson trees 2.1 Remove redundancy rules. For example: Rule 1: IF thckness=thn AND lace=glue THEN report=mnor Rule 2: IF thckness=thn AND lace=glue THEN report=mnor New Rule: IF thckness=thn AND lace=glue THEN report=mnor 2.2 Remove all conflcts rules. The rules wth the same condtons but dfferent consequences must be removed. For example: Rule 1: IF face=soft AND age>3 THEN toy=doll Rule 2: IF face=soft AND age>3 THEN toy=elastc New Rule: Remove more specfc rules. The rules wth a condton set whch s a superset of another rule should be removed. For example: Rule 1: IF fur=short AND nose=yes AND tal=yes THEN type=bear Rule 2: IF fur=short AND ear=yes AND nose=yes AND tal=yes THEN type=bear Rule 3: IF nose=yes AND tal=yes THEN type=bear New Rule: IF nose=yes AND tal=yes THEN type=bear 2.4 Extend the range of contnuous condtons. The rules wth the range of the same attrbute can be combned nto the wdest one. For example: Rule 1: IF duty=recordng AND perod<3 AND perod>1.5 THEN wage=1500 Rule 2: IF duty=recordng AND perod<2 AND perod>1 THEN wage=1500 New Rule: IF duty=recordng AND perod<3 AND perod>1 THEN wage= Dvde range of condtons. The rules of dfferent classes wth the same attrbute whch has overlapped range should be dvded nto several parts. For example: Rule 1: IF credt=yes AND money>20000 THEN allow=yes Rule 2: IF credt=yes AND money<40000 THEN allow=no New Rule 1: IF credt=yes AND money>=40000 THEN allow=yes New Rule 2: IF credt=yes AND money<=20000 THEN allow=no Rule 3: IF usage>100 AND payment=pad THEN promoton=false Rule 4: IF usage>=200 AND usage<400 AND payment=pad THEN promoton=true 196

4 New Rule 3: IF usage>100 AND usage<200 AND payment=pad THEN promoton=false New Rule 4: IF usage>=200 AND usage<400 AND payment=pad THEN promoton=true New Rule 5: IF usage>=400 AND payment=pad THEN promoton=false 2.6 If percent of accuracy of new rules on the valdaton set s stll mproved, repeat Output the new rule set 4. Experments 4.1. Data Sets We used seven datasets from UCI Machne Learnng Repostory [15], namely Balance Scale, Blood Transfuson, Haberman's Survval, Irs, Lver Dsorders, Pma Indans Dabetes Database, and Statlog. Moreover, we compared our proposed method to Random Forests and C4.5 [7] usng a standard 10-fold Cross Valdaton. In each tranng set, a valdaton set whch was used to fnd the best new rule set conssted of 20% of the number of tranng examples n the orgnal tranng set. The remanng was used to tran a Random Forest. In ths experment, we used WEKA [14] as our learnng tool Expermental Results Because the order of the rules whch are ntegrated can affect the fnal results, we dvded our rule ntegraton method nto two ways,.e. ntegrate the hghest accurate rule frst (RFh) and ntegrate the lower accurate rule frst (RFl). The results obtaned from our experments are shown n Table 1. Accuracy (%) Data Set Random RFh RFl Forests C4.5 Balance Scale Blood Transfuson Haberman's Survval Irs Lver Dsorders Pma Indans Dabetes Database Statlog Table1. The average of accuracy percent of predctng result by ntegratng rules compare wth Random Forest and C Concluson We have been proposed a new method whch can ntegrate rules obtaned from several trees n a Random Forest. The results from seven datasets from UCI machne learnng repostory show that our method yelds the better classfcaton results than the orgnal random forest and the ordnary decson tree. Moreover, the rule set from our ntegraton method can help users when they use the rule set. The rules from dfferent decson trees may conflct wth rules from another tree. Our method can remove these nconsstent condtons and output a new rule set whch can be better appled to classfy unseen data. 6. Acknowledgements Ths work was supported by the Thaland Research Fund (TRF). 7. References [1] L. Breman. Random Forests. Machne Learnng, 45(1):5-32,

5 [2] L. Breman, J.H. Fredman, R.A. Olshen, and C.J. Stone. Classfcaton and Regresson Trees. Wadswort, Belmont, [3] Y. Zhang, S. Burer, and W. N. Street. Ensemble Prunng va Sem-defnte Programmng. Journal of Machne Learnng Research, 7: , [4] A.V. Assche, and H. Blockeel. Seeng the Forest through the Trees: Learnng a Comprehensble Model from an Ensemble. In Proceedngs of ECML, , [5] G. Sen, E. Yang, and S. Akar. Yeld Modelng wth Rule Ensembles. 18th Annual IEEE/SEMI Advanced Semconductor Manufacturng Conference, Stresa, Italy, [6] G. Sen, and J. Elder. From Trees to Forest and Rule Sets, A Unfed Overvew of Ensemble Methods. 13th Internatonal Conference on Knowledge Dscovery and Data Mnng (KDD), [7] J. R. Qunlan. Generatng Producton Rules from Decson Trees. In Proceedngs of the 10th Internatonal Conference on Artfcal Intellgence, [8] Z.-H. Zhou, and W. Tang. Selectve Ensemble of Decson Trees. Nanjng , Natonal Laboratory for Novel Software Technology, Chna, [9] D. Optz, and R. Macln. Popular Ensemble Methods: An Emprcal Study. Journal of Artfcal Intellgence Research 11: , [10] I.H. Wtten, and E. Frank. Attrbute-Relatonal Fle Format. Unversty of Wakato, New Zealand, [11] B. Kjsrkul. Artfcal Intellgence. Department of Computer Engneer, Faculty of Engneerng, Chulalongkorn Unversty, 2003 (n Tha). [12] W. Thongmee. An Approach of Soft Prunng for Decson Tree Usng Fuzzfcaton. In Proceedng of the Thrd Internatonal Conference on Intellgent Technologes, [13] L. Breman, and A. Cutler. Random Forests. Avalable: [14] M. Hall, E. Frank, G. Holmes, B. Pfahrnger, P. Reutemann, and I. H. Wtten. The WEKA Data Mnng Software: An Update. SIGKDD Exploratons, Volume 11, Issue 1, [15] A. Asuncon, and D.J. Newman. UCI Machne Learnng Repostory. Department of Informaton and Computer Scence, Unversty of Calforna, Avalable: [16] R. E. Banfeld, O. Lawrence, K.W. Bowyer, and W. P. Kegelmeyer. A Comparson of Decson Tree Ensemble Creaton Technques. IEEE Transacton on Pattern Analyss and Machne Intellgence, [17] G. Anderson. PhD thess: Random Relatonal Rules

Prediction algorithm for users Retweet Times

Prediction algorithm for users Retweet Times , pp.9-3 http://dx.do.org/0.457/astl.05.83.03 Predcton algorthm for users Retweet Tmes Hahao Yu, Xu Feng Ba,ChengZhe Huang, Haolang Q Helongang Insttute of Technology, Harbn, Chna Abstract. In vew of the

More information

Classification and Regression Trees and MLP Neural Network to Classify Water Quality of Canals in Bangkok, Thailand

Classification and Regression Trees and MLP Neural Network to Classify Water Quality of Canals in Bangkok, Thailand Internatonal Journal of Intellgent Computng Research (IJICR), Volume 1, Issue 1/, March/June 010 Classfcaton and Regresson Trees and MLP eural etwork to Classfy Water Qualty of Canals n Bangkok, Thaland

More information

Analysis Online Shopping Behavior of Consumer Using Decision Tree Leiyue Yao 1, a, Jianying Xiong 2,b

Analysis Online Shopping Behavior of Consumer Using Decision Tree Leiyue Yao 1, a, Jianying Xiong 2,b Advanced Materals Research Onlne: 2011-07-04 ISSN: 1662-8985, Vols. 271-273, pp 891-894 do:10.4028/www.scentfc.net/amr.271-273.891 2011 Trans Tech Publcatons, Swtzerland Analyss Onlne Shoppng Behavor of

More information

Consumption capability analysis for Micro-blog users based on data mining

Consumption capability analysis for Micro-blog users based on data mining Consumpton capablty analyss for Mcro-blog users based on data mnng ABSTRACT Yue Sun Bejng Unversty of Posts and Telecommuncaton Bejng, Chna Emal: sunmoon5723@gmal.com Data mnng s an effectve method of

More information

Customer segmentation, return and risk management: An emprical analysis based on BP neural network

Customer segmentation, return and risk management: An emprical analysis based on BP neural network Avalable onlne www.jocpr.com Journal of Chemcal and Pharmaceutcal Research, 204, 6(6):698-703 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 Customer segmentaton, return and rsk management: An emprcal

More information

Experiments with Protocols for Service Negotiation

Experiments with Protocols for Service Negotiation PROCEEDINGS OF THE WORKSHOP ON APPLICATIONS OF SOFTWARE AGENTS ISBN 978-86-7031-188-6, pp. 25-31, 2011 Experments wth Protocols for Servce Negotaton Costn Bădcă and Mhnea Scafeş Unversty of Craova, Software

More information

MULTIPLE FACILITY LOCATION ANALYSIS PROBLEM WITH WEIGHTED EUCLIDEAN DISTANCE. Dileep R. Sule and Anuj A. Davalbhakta Louisiana Tech University

MULTIPLE FACILITY LOCATION ANALYSIS PROBLEM WITH WEIGHTED EUCLIDEAN DISTANCE. Dileep R. Sule and Anuj A. Davalbhakta Louisiana Tech University MULTIPLE FACILITY LOCATION ANALYSIS PROBLEM WITH WEIGHTED EUCLIDEAN DISTANCE Dleep R. Sule and Anuj A. Davalbhakta Lousana Tech Unversty ABSTRACT Ths paper presents a new graphcal technque for cluster

More information

Calculation and Prediction of Energy Consumption for Highway Transportation

Calculation and Prediction of Energy Consumption for Highway Transportation Calculaton and Predcton of Energy Consumpton for Hghway Transportaton Feng Qu, Wenquan L *, Qufeng Xe, Peng Zhang, Yueyng Huo School of Transportaton, Southeast Unversty, Nanjng 210096, Chna; *E-mal: wenql@seu.edu.cn

More information

Development and production of an Aggregated SPPI. Final Technical Implementation Report

Development and production of an Aggregated SPPI. Final Technical Implementation Report Development and producton of an Aggregated SPP Fnal Techncal mplementaton Report Marcus Frdén, Ulf Johansson, Thomas Olsson Servces Producer Prce ndces, Prce Statstcs Unt, Statstcs Sweden 2010 ntroducton

More information

A Batch Splitting Job Shop Scheduling Problem with bounded batch sizes under Multiple-resource Constraints using Genetic Algorithm

A Batch Splitting Job Shop Scheduling Problem with bounded batch sizes under Multiple-resource Constraints using Genetic Algorithm A Batch Splttng Job Shop Schedulng Problem wth bounded batch szes under ultple-resource Constrants usng Genetc Algorthm WANG Ha-yan,ZHAO Yan-we* Key Laboratory of echancal manufacture and Automaton of

More information

Construction of Control Chart Based on Six Sigma Initiatives for Regression

Construction of Control Chart Based on Six Sigma Initiatives for Regression 2018 IJSRST Volume 4 Issue 2 Prnt ISSN: 2395-6011 Onlne ISSN: 2395-602X Themed Secton: Scence and Technology Constructon of Control Chart Based on Sx Sgma Intatves for Regresson ABSTRACT R. Radhakrshnan

More information

Product Innovation Risk Management based on Bayesian Decision Theory

Product Innovation Risk Management based on Bayesian Decision Theory Advances n Management & Appled Economcs, vol., no., 0, - ISS: 79-7 (prnt verson), 79-7 (onlne) Internatonal Scentfc Press, 0 Product Innovaton Rsk Management based on Bayesan Decson Theory Yngchun Guo

More information

Supporting Information

Supporting Information 1 2 3 4 Supportng Informaton Novel Approach for In-stu Recovery of Lthum Carbonate from Spent Lthum Ion Batteres Usng Vacuum Metallurgy Jefeng Xao a, Ja L a,b*, Zhenmng Xu a 5 a School of Envronmental

More information

OVERVIEW OF 2007 E-DEFENSE BLIND ANALYSIS CONTEST RESULTS

OVERVIEW OF 2007 E-DEFENSE BLIND ANALYSIS CONTEST RESULTS The th World Conference on Earthquake Engneerng October -,, Beng, Chna OVERVIEW OF E-DEFENSE BLIND ANALYSIS CONTEST RESULTS Makoto Ohsak, Kazuhko Kasa, Tsuyosh Hkno and Yuch Matsuoka Assocate Professor,

More information

A TABU SEARCH FOR MULTIPLE MULTI-LEVEL REDUNDANCY ALLOCATION PROBLEM IN SERIES-PARALLEL SYSTEMS

A TABU SEARCH FOR MULTIPLE MULTI-LEVEL REDUNDANCY ALLOCATION PROBLEM IN SERIES-PARALLEL SYSTEMS Internatonal Journal of Industral Engneerng, 18(3), 120-129, 2011. A TABU SEACH FO MULTIPLE MULTI-LEVEL EDUNDANCY ALLOCATION POBLEM IN SEIES-PAALLEL SYSTEMS Kl-Woong Jang and Jae-Hwan Km Department of

More information

A STUDY ON THE FACTORS AFFECTING THE ECONOMICAL LIFE OF HEAVY CONSTRUCTION EQUIPMENT

A STUDY ON THE FACTORS AFFECTING THE ECONOMICAL LIFE OF HEAVY CONSTRUCTION EQUIPMENT A STUDY ON THE FACTORS AFFECTING THE ECONOMICAL LIFE OF HEAVY CONSTRUCTION EQUIPMENT Hongqn Fan and Zhgang Jn Department of Buldng and Real Estate, The Hong Kong Polytechnc Unversty, Kowloon, Hong Kong

More information

Planning of work schedules for toll booth collectors

Planning of work schedules for toll booth collectors Lecture Notes n Management Scence (0) Vol 4: 6 4 4 th Internatonal Conference on Appled Operatonal Research, Proceedngs Tadbr Operatonal Research Group Ltd All rghts reserved wwwtadbrca ISSN 00-0050 (Prnt),

More information

Supplier selection and evaluation using multicriteria decision analysis

Supplier selection and evaluation using multicriteria decision analysis Suppler selecton and evaluaton usng multcrtera decson analyss Stratos Kartsonaks 1, Evangelos Grgorouds 2, Mchals Neofytou 3 1 School of Producton Engneerng and Management, Techncal Unversty of Crete,

More information

An Implicit Rating based Product Recommendation System

An Implicit Rating based Product Recommendation System An Implct Ratng based Product Recommendaton System Cheh-Yuan Tsa Department of Industral Engneerng and Management Yuan Ze Unversty, Taoyuan Cty, Tawan Tel: (+886) 3-463-8800 ext. 2512, Emal: cytsa@saturn.yzu.edu.tw

More information

Introducing Ensemble Methods to Predict the Performance of Waste Water Treatment Plants (WWTP)

Introducing Ensemble Methods to Predict the Performance of Waste Water Treatment Plants (WWTP) Introducng Ensemble Methods to Predct the Performance of Waste Water Treatment Plants (WWTP) Bharat B. Gulyan and Arsha Fathma Abstract Optmzaton and control of waste water treatment plants (WWTP) s an

More information

RVFL-Based Optical Fiber Intrusion Signal Recognition With Multi-Level Wavelet Decomposition as Feature

RVFL-Based Optical Fiber Intrusion Signal Recognition With Multi-Level Wavelet Decomposition as Feature PHOONIC SENSORS / Vol. 8, No. 3, 218: 234 241 RVFL-Based Optcal Fber Intruson Sgnal Recognton Wth Mult-Level Wavelet Decomposton as Feature Yanpng WANG 1, Danjun GONG 1, Lpng PANG 2*, and Dan YANG 1 1

More information

A Two-Echelon Inventory Model for Single-Vender and Multi-Buyer System Through Common Replenishment Epochs

A Two-Echelon Inventory Model for Single-Vender and Multi-Buyer System Through Common Replenishment Epochs A Two-Echelon Inventory Model for Sngle-Vender and Mult-Buyer System Through Common Replenshment Epochs Wen-Jen Chang and Chh-Hung Tsa Instructor Assocate Professor Department of Industral Engneerng and

More information

Incremental online PCA for automatic motion learning of eigen behaviour. Xianhua Jiang and Yuichi Motai*

Incremental online PCA for automatic motion learning of eigen behaviour. Xianhua Jiang and Yuichi Motai* 296 Int. J. Intellgent Systems Technologes and Applcatons, Vol. x, No. x, 200x Incremental onlne PCA for automatc moton learnng of egen behavour Xanhua Jang and Yuch Mota* Department of Electrcal and Computer

More information

Prediction of Hourly Generated Electric Power Using Artificial Neural Network for Combined Cycle Power Plant

Prediction of Hourly Generated Electric Power Using Artificial Neural Network for Combined Cycle Power Plant Internatonal Journal of Electrcal Energy, Vol. 4, No., June 016 Predcton of Hourly Generated Electrc Power Usng Artfcal Neural Network for Combned Cycle Power Plant Bayram Akdemr Electrc and Electroncs

More information

Wei Zheng College of Science, Hebei North University, Zhangjiakou , Hebei, China

Wei Zheng College of Science, Hebei North University, Zhangjiakou , Hebei, China do:10.21311/001.39.5.17 An Improved CHI Feature Selecton Method for Chnese Text Classfcaton We Zheng College of Scence, Hebe North Unversty, Zhangjakou 075000, Hebe, Chna Hadong Wang Lbrary of Hebe Insttute

More information

A Group Decision Making Method for Determining the Importance of Customer Needs Based on Customer- Oriented Approach

A Group Decision Making Method for Determining the Importance of Customer Needs Based on Customer- Oriented Approach Proceedngs of the 010 Internatonal Conference on Industral Engneerng and Operatons Management Dhaka, Bangladesh, January 9 10, 010 A Group Decson Makng Method for Determnng the Importance of Customer Needs

More information

Market Segmentation of Inbound Business Tourists to Thailand by Binding of Unsupervised and Supervised Learning Techniques

Market Segmentation of Inbound Business Tourists to Thailand by Binding of Unsupervised and Supervised Learning Techniques 334 JOURNAL OF SOFTWARE, VOL. 9, NO. 5, MAY 204 Market Segmentaton of Inbound Busness Toursts to Thaland by Bndng of Unsupervsed and Supervsed Learnng Technques Anongnart Srvhok Department of Computer

More information

Using Data Mining Techniques for Estimating Minimum, Maximum and Average Daily Temperature Values

Using Data Mining Techniques for Estimating Minimum, Maximum and Average Daily Temperature Values World Academy of cence, Engneerng and Technology Usng Data Mnng Technques for Estmatng Mnmum, Maxmum and Average Daly Temperature Values. Kotsants, A. Kostoulas,. Lykouds, A. Argrou, K. Menagas Internatonal

More information

Evaluating Clustering Methods for Multi-Echelon (r,q) Policy Setting

Evaluating Clustering Methods for Multi-Echelon (r,q) Policy Setting Proceedngs of the 2007 Industral Engneerng Research Conference G. Bayraksan W. Ln Y. Son and R. Wysk eds. Evaluatng Clusterng Methods for Mult-Echelon (r) Polcy Settng Vkram L. Desa M.S.; Manuel D. Rossett

More information

The Credit Risk Assessment Model of Internet Supply Chain Finance: Multi-Criteria Decision-Making Model with the Principle of Variable Weight

The Credit Risk Assessment Model of Internet Supply Chain Finance: Multi-Criteria Decision-Making Model with the Principle of Variable Weight Journal of Computer and Communcatons, 2017, 5, 20-30 http://www.scrp.org/journal/jcc ISSN Onlne: 2327-5227 ISSN Prnt: 2327-5219 The Credt Rsk Assessment Model of Internet Supply Chan Fnance: Mult-Crtera

More information

The Credit Risk Assessment Model of Internet Supply Chain Finance: Multi-Criteria Decision-Making Model with the Principle of Variable Weight

The Credit Risk Assessment Model of Internet Supply Chain Finance: Multi-Criteria Decision-Making Model with the Principle of Variable Weight Journal of Computer and Communcatons, 2016, 4, 1-11 http://www.scrp.org/journal/jcc ISSN Onlne: 2327-5227 ISSN Prnt: 2327-5219 The Credt Rsk Assessment Model of Internet Supply Chan Fnance: Mult-Crtera

More information

Simulation of Steady-State and Dynamic Behaviour of a Plate Heat Exchanger

Simulation of Steady-State and Dynamic Behaviour of a Plate Heat Exchanger Journal of Energy and Power Engneerng 10 (016) 555-560 do: 10.1765/1934-8975/016.09.006 D DAVID PUBLISHING Smulaton of Steady-State and Dynamc Behavour of a Plate Heat Exchanger Mohammad Aqeel Sarareh

More information

Evaluation Method for Enterprises EPR Project Risks

Evaluation Method for Enterprises EPR Project Risks , pp.350-354 http://dx.do.org/10.14257/astl.2016. Evaluaton Method for Enterprses EPR Project Rsks L-Yongmng 1,2 1 College of Economcs and Management, Nanjng Unversty of Aeronautcs and Astronautcs, Nanjng,

More information

A SIMULATION STUDY OF QUALITY INDEX IN MACHINE-COMPONF~T GROUPING

A SIMULATION STUDY OF QUALITY INDEX IN MACHINE-COMPONF~T GROUPING A SMULATON STUDY OF QUALTY NDEX N MACHNE-COMPONF~T GROUPNG By Hamd Sefoddn Assocate Professor ndustral and Manufacturng Engneerng Department Unversty of Wsconsn-Mlwaukee Manocher Djassem Assstant Professor

More information

Adaptive Neuro Fuzzy Inference System (ANFIS) for Prediction of Groundwater Quality Index in Matar Taluka and Nadiad Taluka

Adaptive Neuro Fuzzy Inference System (ANFIS) for Prediction of Groundwater Quality Index in Matar Taluka and Nadiad Taluka Internatonal Journal of Scence and Research (IJSR) ISSN (nlne): 2319-7064 Index Coperncus Value (2013): 6.14 Impact Factor (2013): 4.438 Adaptve Neuro Fuzzy Inference System (ANFIS) for Predcton of Groundwater

More information

Qiang Yang and Hong Cheng

Qiang Yang and Hong Cheng From: ICAPS-3 Proceedngs. Copyrght 23, AAAI (www.aaa.org). All rghts reserved. Plannng for Marketng Campagns Qang Yang and Hong Cheng Department of Computer Scence Hong Kong Unversty of Scence and Technology

More information

Cross Channel Optimized Marketing by Reinforcement Learning

Cross Channel Optimized Marketing by Reinforcement Learning Cross Channel Optmzed Marketng by Renforcement Learnng Naok Abe, Naval Verma and Chd Apte Mathematcal Scences Dept. IBM T. J. Watson Res. Ctr. Yorktown Heghts, NY 10598 nabe, nverma, apte@us.bm.com Robert

More information

Optimal Operation of a Wind and Fuel Cell Power Plant Based CHP System for Grid-Parallel Residential Micro-Grid

Optimal Operation of a Wind and Fuel Cell Power Plant Based CHP System for Grid-Parallel Residential Micro-Grid Optmal Operaton of a Wnd and Fuel Cell Power Plant Based CHP System for Grd-Parallel Resdental Mcro-Grd M. Y. EL-SHARKH, M. TARIOVE, A. RAHMA, M. S. ALAM Department of Electrcal and Computer Engneerng,

More information

SIMULATION RESULTS ON BUFFER ALLOCATION IN A CONTINUOUS FLOW TRANSFER LINE WITH THREE UNRELIABLE MACHINES

SIMULATION RESULTS ON BUFFER ALLOCATION IN A CONTINUOUS FLOW TRANSFER LINE WITH THREE UNRELIABLE MACHINES Advances n Producton Engneerng & Management 6 (2011) 1, 15-26 ISSN 1854-6250 Scentfc paper SIMULATION RESULTS ON BUFFER ALLOCATION IN A CONTINUOUS FLOW TRANSFER LINE WITH THREE UNRELIABLE MACHINES Sörensen,

More information

1 Basic concepts for quantitative policy analysis

1 Basic concepts for quantitative policy analysis 1 Basc concepts for quanttatve polcy analyss 1.1. Introducton The purpose of ths Chapter s the ntroducton of basc concepts of quanttatve polcy analyss. They represent the components of the framework adopted

More information

Modeling of LDO-fired Rotary Furnace Parameters using Adaptive Network-based Fuzzy Inference System

Modeling of LDO-fired Rotary Furnace Parameters using Adaptive Network-based Fuzzy Inference System The Internatonal Journal Of Engneerng And Scence (IJES) Volume 4 Issue 8 Pages PP -38-43 2015 ISSN (e): 2319 1813 ISSN (p): 2319 1805 Modelng of LDO-fred Rotary Furnace Parameters usng Adaptve Network-based

More information

MALAY ARABIC LETTERS RECOGNITION AND SEARCHING

MALAY ARABIC LETTERS RECOGNITION AND SEARCHING Internatonal Journal of Scence and Appled echnology MALAY ARABIC LEERS RECOGNIION AND SEARCHING *Correspondng author Sukamto 1, Elfzar 2*, Mara Erna 3 1 Informaton System Department, Unversty of Rau, Indonesa

More information

The Identification of Human Cassette Exons based on SVM

The Identification of Human Cassette Exons based on SVM I.J. Engneerng and Manufacturng 2011, 1, 57-64 Publshed Onlne February 2011 n MECS (http://www.mecs-press.net) DOI: 10.5815/em.2011.01.09 Avalable onlne at http://www.mecs-press.net/em The Identfcaton

More information

RIGOROUS MODELING OF A HIGH PRESSURE ETHYLENE-VINYL ACETATE (EVA) COPOLYMERIZATION AUTOCLAVE REACTOR. I-Lung Chien, Tze Wei Kan and Bo-Shuo Chen

RIGOROUS MODELING OF A HIGH PRESSURE ETHYLENE-VINYL ACETATE (EVA) COPOLYMERIZATION AUTOCLAVE REACTOR. I-Lung Chien, Tze Wei Kan and Bo-Shuo Chen RIGOROUS MODELING OF A HIGH PRESSURE ETHYLENE-VINYL ACETATE (EVA) COPOLYMERIZATION AUTOCLAVE REACTOR I-Lung Chen, Tze We an and Bo-Shuo Chen Department of Chemcal Engneerng, Natonal Tawan Unversty of Scence

More information

Researches on the best-fitted talents recommendation algorithm

Researches on the best-fitted talents recommendation algorithm Researches on the best-ftted talents recommendaton algorthm Shjun ao, Zhuo 2, Lang Zhang. he sxth faculty of Informaton Engneerng, Unversty, Zhengzhou 45000, Chna E-mal: ysj@zzu.edu.cn 2. he sxth faculty

More information

WISE 2004 Extended Abstract

WISE 2004 Extended Abstract WISE 2004 Extended Abstract Does the Internet Complement Other Marketng Channels? Evdence from a Large Scale Feld Experment Erc Anderson Kellogg School of Management, Northwestern Unversty Erk Brynjolfsson

More information

The Estimation of Thin Film Properties by Neural Network

The Estimation of Thin Film Properties by Neural Network Automaton, Control and Intellgent Systems 2016; 4(2): 15-20 http://www.scencepublshnggroup.com/j/acs do: 10.11648/j.acs.20160402.12 ISS: 2328-5583 (Prnt); ISS: 2328-5591 (Onlne) The Estmaton of Thn Flm

More information

MEASURING USER S PERCEPTION AND OPINION OF SOFTWARE QUALITY

MEASURING USER S PERCEPTION AND OPINION OF SOFTWARE QUALITY MEASURING USER S PERCEPTION AND OPINION OF SOFTWARE QUALITY Dmtrs Stavrnouds, Computer Technology Insttute, Greece Mchals Xenos, Patras Unversty, Greece Pavlos Peppas, Macquare Unversty, Australa Dmtrs

More information

Numerical Analysis about Urban Climate Change by Urbanization in Shanghai

Numerical Analysis about Urban Climate Change by Urbanization in Shanghai Numercal Analyss about Urban Clmate Change by Urbanzaton n Shangha Hafeng L 1, Wejun Gao 2 and Tosho Ojma 3 1 Research Assocate, School of Scence and Engneerng, Waseda Unversty, Japan 2 Assocate Professor,

More information

A Similarity-Based Approach for the All-Time Demand Prediction of New Automotive Spare Parts

A Similarity-Based Approach for the All-Time Demand Prediction of New Automotive Spare Parts Proceedngs of the 51 st Hawa Internatonal Conference on System Scences 2018 A Smlarty-Based Approach for the All-Tme Demand Predcton of New Automotve Spare Parts Danel Steuer Karlsruhe Insttute of Technology

More information

Genetic Algorithm based Modification of Production Schedule for Variance Minimisation of Energy Consumption

Genetic Algorithm based Modification of Production Schedule for Variance Minimisation of Energy Consumption , 22-24 October, 2014, San Francsco, USA Genetc Algorthm based Modfcaton of Producton Schedule for Varance Mnmsaton of Energy Consumpton C. Duerden, L.-K. Shark, G. Hall, J. Howe Abstract Typcal manufacturng

More information

A NOVEL PARTICLE SWARM OPTIMIZATION APPROACH FOR SOFTWARE EFFORT ESTIMATION

A NOVEL PARTICLE SWARM OPTIMIZATION APPROACH FOR SOFTWARE EFFORT ESTIMATION Farhad S. Gharehchopogh, I. Malek, Seyyed R. Khaze. A novel partcle swarm optmzaton approach for software effort estmaton. Internatonal Journal of Academc Research Part A; 2014; 6(2), 69-76. DOI: 10.7813/2075-4124.2014/6-2/A.12

More information

Financial Distress Prediction of K-means Clustering Based on Genetic Algorithm and Rough Set Theory

Financial Distress Prediction of K-means Clustering Based on Genetic Algorithm and Rough Set Theory 505 A publcaton of CHEMICAL ENGINEERING TRANSACTIONS VOL. 51, 2016 Guest Edtors: Tchun Wang, Hongyang Zhang, Le Tan Copyrght 2016, AIDIC Servz S.r.l., ISBN 978-88-95608-43-3; ISSN 2283-9216 The Italan

More information

Implementation of Supplier Evaluation and. Ranking by Improved TOPSIS

Implementation of Supplier Evaluation and. Ranking by Improved TOPSIS Appled Mathematcal Scences, Vol. 7, 2013, no. 46, 2265 2270 HIKARI Ltd, www.m-hkar.com Implementaton of Suppler Ealuaton and Rankng by Improed TOPSIS C. Katha Department of Mathematcs Sathyabama Unersty,

More information

Research on the Process of Runoff and Sediment-production in the Shunjiagou Small Watershed by Applying Automatic Measurement System

Research on the Process of Runoff and Sediment-production in the Shunjiagou Small Watershed by Applying Automatic Measurement System Research on the Process of Runoff and -producton n the Shunjagou Small Watershed by Applyng Automatc Measurement System Zhou Janghong, Le Tngwu College of Hydraulc and Cvl Engneerng, Chna Agrcultural Unversty,

More information

LIFE CYCLE ENVIRONMENTAL IMPACTS ASSESSMENT FOR RESIDENTIAL BUILDINGS IN CHINA

LIFE CYCLE ENVIRONMENTAL IMPACTS ASSESSMENT FOR RESIDENTIAL BUILDINGS IN CHINA Proceedngs: Indoor Ar 2005 LIFE CYCLE ENVIRONMENTAL IMPACTS ASSESSMENT FOR RESIDENTIAL BUILDINGS IN CHINA DJ Gu 1,*, JJ Lu 1, LJ Gu 1 1 Department of Buldng Scence, School of Archtecture, Tsnghua Unversty,

More information

Experimental Validation of a Suspension Rig for Analyzing Road-induced Noise

Experimental Validation of a Suspension Rig for Analyzing Road-induced Noise Expermental Valdaton of a Suspenson Rg for Analyzng Road-nduced Nose Dongwoo Mn 1, Jun-Gu Km 2, Davd P Song 3, Yunchang Lee 4, Yeon June Kang 5, Kang Duc Ih 6 1,2,3,4,5 Seoul Natonal Unversty, Republc

More information

The ranks of Indonesian and Japanese industrial sectors: A further study

The ranks of Indonesian and Japanese industrial sectors: A further study Journal of Physcs: Conference Seres PAPER OPEN ACCESS The ranks of Indonesan and Japanese ndustral sectors: A further study To cte ths artcle: Ubadllah Zuhd 2017 J. Phys.: Conf. Ser. 820 012029 Vew the

More information

A Scenario-Based Objective Function for an M/M/K Queuing Model with Priority (A Case Study in the Gear Box Production Factory)

A Scenario-Based Objective Function for an M/M/K Queuing Model with Priority (A Case Study in the Gear Box Production Factory) Proceedngs of the World Congress on Engneerng 20 Vol I WCE 20, July 6-8, 20, London, U.K. A Scenaro-Based Objectve Functon for an M/M/K Queung Model wth Prorty (A Case Study n the Gear Box Producton Factory)

More information

Adaptive Noise Reduction for Engineering Drawings Based on Primitives and Noise Assessment

Adaptive Noise Reduction for Engineering Drawings Based on Primitives and Noise Assessment Adaptve ose Reducton for Engneerng Drawngs Based on Prmtves and ose Assessment Jng Zhang Wan Zhang Lu Wenyn Department of Computer Scence, Cty Unversty of Hong Kong, Hong Kong SAR, PR Chna {jzhang,wanzhang,

More information

Study on Productive Process Model Basic Oxygen Furnace Steelmaking Based on RBF Neural Network

Study on Productive Process Model Basic Oxygen Furnace Steelmaking Based on RBF Neural Network IJCSI Internatonal Journal of Computer Scence Issues, Vol., Issue 3, No 2, May 24 ISSN (Prnt): 694-84 ISSN (Onlne): 694-784 www.ijcsi.org 7 Study on Productve Process Model Basc Oxygen Furnace Steelmakng

More information

Application of Ant colony Algorithm in Cloud Resource Scheduling Based on Three Constraint Conditions

Application of Ant colony Algorithm in Cloud Resource Scheduling Based on Three Constraint Conditions , pp.215-219 http://dx.do.org/10.14257/astl.2016.123.40 Applcaton of Ant colony Algorthm n Cloud Resource Schedulng Based on Three Constrant Condtons Yang Zhaofeng, Fan Awan Computer School, Pngdngshan

More information

A study on Fast Predicting the Washability Curve of Coal

A study on Fast Predicting the Washability Curve of Coal Avalable onlne at www.scencedrect.com Proceda Envronmental Scences (20) 580 584 A study on Fast Predctng the Washablty Curve of Coal Zhang Ze-ln, Yang Jan-guo, Wang Yu-lng, Xa Wen-Cheng, Lng Xang-yang

More information

Evaluation of Quality Management Performance in Office of President using Modified Public Sector Management Quality Award (PMQA) Model

Evaluation of Quality Management Performance in Office of President using Modified Public Sector Management Quality Award (PMQA) Model Evaluaton of Qualty Management Performance n Offce of Presdent usng Modfed Publc Sector Management Qualty Award (PMQA) Model Thoedtda Thpparate 1 untcha Kongkaew, Sunantha. Ompan 1. Lecturer, Faculty of

More information

A Multi-Product Reverse Logistics Model for Third Party Logistics

A Multi-Product Reverse Logistics Model for Third Party Logistics 2011 Internatonal Conference on Modelng, Smulaton and Control IPCSIT vol.10 (2011) (2011) IACSIT Press, Sngapore A Mult-Product Reverse Logstcs Model for Thrd Party Logstcs Tsa-Yun Lao, Agatha Rachmat

More information

EXPERIMENTAL DETERMINATION OF THERMAL CHARACTERISTICS OF MUNICIPAL SOLID WASTE

EXPERIMENTAL DETERMINATION OF THERMAL CHARACTERISTICS OF MUNICIPAL SOLID WASTE EXPERIMENTAL DETERMINATION OF THERMAL CHARACTERISTICS OF MUNICIPAL SOLID WASTE Vyacheslav Bukhmrov 1, *, Olga Kolbaba 1, and Raml Gabtov 1 1 Ivanovo State Power Engneerng Unversty, 153003 Ivanovo, Russa

More information

Spatial difference of regional carbon emissions in China

Spatial difference of regional carbon emissions in China Avalable onlne www.jocpr.com Journal of Chemcal and Pharmaceutcal Research, 2014, 6(7): 2741-2745 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 Spatal dfference of regonal carbon emssons n Chna

More information

Sporlan Valve Company

Sporlan Valve Company F21O-10-12 LMTED: M & W What s a TEV Settng? For years Sporlan and every other manufacturer oftevs has used regulated arflow and controlled temperature baths to establsh a "factory" settng. Typcally the

More information

Journal of Applied Research and Technology ISSN: Centro de Ciencias Aplicadas y Desarrollo Tecnológico.

Journal of Applied Research and Technology ISSN: Centro de Ciencias Aplicadas y Desarrollo Tecnológico. Journal of Appled Research and Technology ISSN: 1665-6423 jart@aleph.cnstrum.unam.mx Centro de Cencas Aplcadas y Desarrollo Tecnológco Méxco Dng, Y. R.; Ca, Y. J.; Sun, P. D.; Chen, B. The Use of Combned

More information

EVALUATING THE PERFORMANCE OF SUPPLY CHAIN SIMULATIONS WITH TRADEOFFS BETWEEN MULITPLE OBJECTIVES. Pattita Suwanruji S. T. Enns

EVALUATING THE PERFORMANCE OF SUPPLY CHAIN SIMULATIONS WITH TRADEOFFS BETWEEN MULITPLE OBJECTIVES. Pattita Suwanruji S. T. Enns Proceedngs of the 00 Wnter Smulaton Conference R.G. Ingalls, M. D. Rossett, J. S. Smth, and B. A. Peters, eds. EVALUATING THE PERFORMANCE OF SUPPLY CHAIN SIMULATIONS WITH TRADEOFFS BETWEEN MULITPLE OBJECTIVES

More information

International Trade and California Employment: Some Statistical Tests

International Trade and California Employment: Some Statistical Tests Internatonal Trade and Calforna Employment: Some Statstcal Tests Professor Dwght M. Jaffee Fsher Center for Real Estate and Urban Economcs Haas School of Busness Unversty of Calforna Berkeley CA 94720-1900

More information

552. o December January February 558.6

552. o December January February 558.6 9 AverLgtopLEentucky and C 1 Kentucky Bluegrass Locatons All treatments receved P, K and S (1) All comparsons receved 150 lbs. of ntrogen n a sngle applcaton. Ave. Yeld lbs. Month of Seed Per Acre Applcaton

More information

Heat Transfer Model of Casted Heat Exchanger in Summer Condition Yu Jie 1,2,a, Ni Weichen 1,2,b and You Shijun 3,c

Heat Transfer Model of Casted Heat Exchanger in Summer Condition Yu Jie 1,2,a, Ni Weichen 1,2,b and You Shijun 3,c Internatonal Conference on Intellgent Systems Research and Mechatroncs Engneerng (ISRME 205) Heat Transfer Model of Casted Heat Exchanger n Summer Condton Yu Je,2,a, N Wechen,2,b and You Shjun 3,c School

More information

K vary over their feasible values. This allows

K vary over their feasible values. This allows Proceedngs of the 2007 INFORMS Smulaton Socety Research Workshop. MULTI-PRODUCT CYCLE TIME AND THROUGHPUT EVALUATION VIA SIMULATION ON DEMAND John W. Fowler Gerald T. Mackulak Department of Industral Engneerng

More information

FIN DESIGN FOR FIN-AND-TUBE HEAT EXCHANGER WITH MICROGROOVE SMALL DIAMETER TUBES FOR AIR CONDITIONER

FIN DESIGN FOR FIN-AND-TUBE HEAT EXCHANGER WITH MICROGROOVE SMALL DIAMETER TUBES FOR AIR CONDITIONER FIN DESIGN FOR FIN-AND-TUBE HEAT EXCHANGER WITH MICROGROOVE SMALL DIAMETER TUBES FOR AIR CONDITIONER Yfeng Gao (a), J Song (a), Jngdan Gao (b), Guolang Dng (b)* (a) Internatonal Copper Assocaton Shangha

More information

Optimization of e-learning Model Using Fuzzy Genetic Algorithm

Optimization of e-learning Model Using Fuzzy Genetic Algorithm Optmzaton of e-learnng Model Usng Fuzzy Genetc Algorthm Receved: 00?????? 2012, Accepted: 00????? 2013 M. A. Afshar Kazem Assocate professor, Informaton Technology Management Department, Electrnc Branch,

More information

Identifying Factors that Affect the Downtime of a Production Process

Identifying Factors that Affect the Downtime of a Production Process Identfyng Factors that Affect the Downtme of a Producton Process W. Nallaperuma 1 *, U. Ekanayake 1, Ruwan Punch-Manage 2 1 Department of Physcal scences, Rajarata Unversty, Sr Lanka 2 Department of Statstcs

More information

CYCLE TIME VARIANCE MINIMIZATION FOR WIP BALANCE APPROACHES IN WAFER FABS. Zhugen Zhou Oliver Rose

CYCLE TIME VARIANCE MINIMIZATION FOR WIP BALANCE APPROACHES IN WAFER FABS. Zhugen Zhou Oliver Rose Proceedngs of the 013 Wnter Smulaton Conference R. Pasupathy, S.-H. Km, A. Tolk, R. Hll, and M. E. Kuhl, eds CYCLE TIME VARIANCE MINIMIZATION FOR WIP BALANCE APPROACHES IN WAFER FABS Zhugen Zhou Olver

More information

Churn Analysis of a Product of Application Search in Mobile Platform

Churn Analysis of a Product of Application Search in Mobile Platform Economy Informatcs vol. 13, no. 1/2013 5 Churn Analyss of a Product of Applcaton Search n Moble Platform Gábor SZŰCS, Attla KISS Inter-Unversty Centre for Telecommuncatons and Informatcs, H-4028 Kassa

More information

Mapping Regulations to Industry-Specific Taxonomies

Mapping Regulations to Industry-Specific Taxonomies Mappng Regulatons to Industry-Specfc Taxonomes Chn Pang Cheng cpcheng@stanford.edu Glora T. Lau glau@stanford.edu Kncho H. Law law@stanford.edu ABSTRACT For each ndustry, there exst many taxonomes that

More information

COMPARING TWO NONLINEAR STRUCTURES FOR SECONDARY AIR PROCESS MODELLING

COMPARING TWO NONLINEAR STRUCTURES FOR SECONDARY AIR PROCESS MODELLING Control 004, Unversty of Bath, UK, September 004 COMPARING WO NONLINEAR SRUCURES FOR SECONDARY AIR PROCE MODELLING K. Leppäkosk, M. Paloranta and E. Ikonen Fax: +58 8 55 49, Emal: kmmo.leppakosk@oulu.f,

More information

Research on the Evaluation of Corporate Social Responsibility under the Background of Low Carbon Economy

Research on the Evaluation of Corporate Social Responsibility under the Background of Low Carbon Economy http://jba.scedupress.com Internatonal Journal of Busness Admnstraton Vol. 7, No. 5; 2016 Research on the Evaluaton of Corporate Socal Responsblty under the Background of Low Carbon Economy Xaofang Zhang

More information

Study on trade-off of time-cost-quality in construction project based on BIM XU Yongge 1, a, Wei Ya 1, b

Study on trade-off of time-cost-quality in construction project based on BIM XU Yongge 1, a, Wei Ya 1, b Internatonal Conference on Economcs, Socal Scence, Arts, Educaton and Management Engneerng (ESSAEME 205) Study on trade-off of tme-cost-qualty n constructon project based on BIM XU Yongge, a, We Ya, b

More information

High impact force attenuation of reinforced concrete systems

High impact force attenuation of reinforced concrete systems Structures Under Shock and Impact XII 273 Hgh mpact force attenuaton of renforced concrete systems Y. Km, T. El-Korch & K. S. Arsava Department of Cvl and Envronmental Engneerng, Worcester Polytechnc Insttute

More information

Development of a Quality Control Programme for steel production: A case study

Development of a Quality Control Programme for steel production: A case study IOSR Journal of Mechancal and Cvl Engneerng (IOSR-JMCE) e-iss: 2278-1684,p-ISS: 2320-334X, Volume 11, Issue 5 Ver. I (Sep- Oct. 2014), PP 73-81 Development of a Qualty Control Programme for steel producton:

More information

Modelling of Fatigue life of 6082 T6 Al-alloy based on Genetic Programming

Modelling of Fatigue life of 6082 T6 Al-alloy based on Genetic Programming Modellng of Fatgue lfe of 6082 T6 Al-alloy based on Genetc Programmng J. R. Mohanty Department of Mechancal Engneerng, Veer Surendra Sa Unversty of Technology, Burla, Sambalpur (Odsha), In ABSTRACT: The

More information

The 27th Annual Conference of the Japanese Society for Artificial Intelligence, Shu-Chen Cheng Guan-Yu Chen I-Chun Pan

The 27th Annual Conference of the Japanese Society for Artificial Intelligence, Shu-Chen Cheng Guan-Yu Chen I-Chun Pan 2C4-IOS-3c-6 An estmaton method of tem dffculty ndex combned wth the partcle swarm optmzaton algorthm for the computerzed adaptve testng Shu-Chen Cheng Guan-Yu Chen I-Chun Pan Department of Computer Scence

More information

ASSESSMENT OF THE IMPACT OF DECAY CORRECTION IN THE DOSE-TO- CURIE METHOD FOR LONG-TERM STORED RADIOACTIVE WASTE DRUMS

ASSESSMENT OF THE IMPACT OF DECAY CORRECTION IN THE DOSE-TO- CURIE METHOD FOR LONG-TERM STORED RADIOACTIVE WASTE DRUMS ASSESSMENT OF THE IMPACT OF DECAY CORRECTION IN THE DOSE-TO- CURIE METHOD FOR LONG-TERM STORED RADIOACTIVE WASTE DRUMS K. H. Hwang, S. C. Lee, S. H. Kang, K. J. Lee Korea Advanced Insttute of Scence and

More information

Evaluation and Comparison of Different Machine Learning Methods to Predict Outcome of Tuberculosis Treatment Course

Evaluation and Comparison of Different Machine Learning Methods to Predict Outcome of Tuberculosis Treatment Course Journal of Intellgent Learnng Systems and Applcatons, 2013, 5, 184-193 http://dx.do.org/10.4236/lsa.2013.53020 Publshed Onlne August 2013 (http://www.scrp.org/ournal/lsa) Evaluaton and Comparson of Dfferent

More information

Content-Based Cross-Domain Recommendations Using Segmented Models

Content-Based Cross-Domain Recommendations Using Segmented Models Content-Based Cross-Doman Recommendatons Usng Segmented Models Shaghayegh Saheb Intellgent Systems Program Unversty of Pttsburgh Pttsburgh, PA shs106@ptt.edu ABSTRACT Cross-Doman Recommendaton s a new

More information

A Real-time Planning and Scheduling Model in RFID-enabled Manufacturing

A Real-time Planning and Scheduling Model in RFID-enabled Manufacturing Proceedngs of the 2014 Internatonal Conference on Industral Engneerng and Operatons Management Bal, Indonesa, January 7 9, 2014 A Real-tme Plannng and Schedulng Model n RFID-enabled Manufacturng Ray Y.

More information

TOWARDS A SUPPLY CHAIN SIMULATION REFERENCE MODEL FOR THE SEMICONDUCTOR INDUSTRY

TOWARDS A SUPPLY CHAIN SIMULATION REFERENCE MODEL FOR THE SEMICONDUCTOR INDUSTRY Proceedngs of the 2011 Wnter Smulaton Conference S. Jan, R.R. Creasey, J. Hmmelspach, K.P. Whte, and M. Fu, eds. TOWARDS A SUPPLY CHAIN SIMULATION REFERENCE MODEL FOR THE SEMICONDUCTOR INDUSTRY Hans Ehm

More information

Risk Assessment Using AHP in South Indian Construction Companies: A Case Study

Risk Assessment Using AHP in South Indian Construction Companies: A Case Study Internatonal Journal of Engneerng, Management & Scences (IJEMS) ISSN-2348 3733, Volume-2, Issue-5, May 2015 Rsk Assessment Usng AHP n South Indan Constructon Companes: A Case Study Parvathy.P, ShvaprasadH.C,

More information

PREDICTION OF SEWAGE QUALITY BASED ON FUSION OF BPNETWORKS

PREDICTION OF SEWAGE QUALITY BASED ON FUSION OF BPNETWORKS INTERNATIONAL JOURNAL ON SMART SENSING AND INTELLIGENT SYSTEMS VOL. 9, NO. 2, JUNE 2016 PREDICTION OF SEWAGE QUALITY BASED ON FUSION OF BPNETWORKS Ljuan Wang School of Electroncs and Informaton Engneerng

More information

MODELLING AND SIMULATION OF TEAM EFFECTIVENESS EMERGED FROM MEMBER-TASK INTERACTION. Shengping Dong Bin Hu Jiang Wu

MODELLING AND SIMULATION OF TEAM EFFECTIVENESS EMERGED FROM MEMBER-TASK INTERACTION. Shengping Dong Bin Hu Jiang Wu Proceedngs of the 2008 Wnter Smulaton Conference S. J. Mason, R. R. Hll, L. Mönch, O. Rose, T. Jefferson, J. W. Fowler eds. MODELLING AND SIMULATION OF TEAM EFFECTIVENESS EMERGED FROM MEMBER-TASK INTERACTION

More information

Port Customer Credit Risk Prediction Based on Internal and External Information Fusion

Port Customer Credit Risk Prediction Based on Internal and External Information Fusion Send Orders for Reprnts to reprnts@benthamscence.ae The Open Cybernetcs & Systemcs Journal, 2015, 9, 1323-1328 1323 Open Access Port Customer Credt Rsk Predcton Based on Internal and External Informaton

More information

A formal analysis of a conventional job evaluation system

A formal analysis of a conventional job evaluation system s ö d e r t ö r n s h ö g s k o l a ( u n v e r s t y c o l l e g e ) Stg Blomskog A formal analyss of a conventonal job evaluaton system workng paper 007:5 REPORT 007-09-3 A formal analyss of a conventonal

More information

An Artificial Neural Network Method For Optimal Generation Dispatch With Multiple Fuel Options

An Artificial Neural Network Method For Optimal Generation Dispatch With Multiple Fuel Options An Artfcal Neural Network Method For Optmal Generaton Dspatch Wth Multple Fuel Optons S.K. Dash Department of Electrcal Engneerng, Gandh Insttute for Technologcal Advancement,Badaraghunathpur,Madanpur,

More information

Active Learning for Decision-Making

Active Learning for Decision-Making Actve Learnng for Decson-Makng Maytal Saar-Tsechansky Foster Provost Department of Management Scence and Informaton Systems, Red McCombs School of Busness, e Unversty of Texas at Austn, Austn, Texas 78712,

More information

Comparison of robust M estimator, S estimator & MM estimator with Wiener based denoising filter for gray level image denoising with Gaussian noise

Comparison of robust M estimator, S estimator & MM estimator with Wiener based denoising filter for gray level image denoising with Gaussian noise Comparson of robust M estmator, S estmator & MM estmator wth Wener based denosng flter for gray level mage denosng wth Gaussan nose Mr. Pratyaksh A Maru Electroncs and Communcaton Department, Dr. Jvraj

More information