Corporate Credit Rating using Multiclass Classification Models with order Information
|
|
|
- John Atkins
- 9 years ago
- Views:
Transcription
1 Corporate Credit Rating using Multiclass Classification Models with order Information Hyunchul Ahn and Kyoung-Jae Kim Abstract Corporate credit rating prediction using statistical and artificial intelligence (AI) techniques has been one of the attractive research topics in the literature. In recent years, multiclass classification models such as artificial neural network (ANN) or multiclass support vector machine (MSVM) have become a very appealing machine learning approaches due to their good performance. However, most of them have only focused on classifying samples into nominal categories, thus the unique characteristic of the credit rating - ordinality - has been seldom considered in their approaches. This study proposes new types of ANN and MSVM classifiers, which are named OMANN and OMSVM respectively. OMANN and OMSVM are designed to extend binary ANN or SVM classifiers by applying ordinal pairwise partitioning (OPP) strategy. These models can handle ordinal multiple classes efficiently and effectively. To validate the usefulness of these two models, we applied them to the real-world bond rating case. We compared the results of our models to those of conventional approaches. The experimental results showed that our proposed models improve classification accuracy in comparison to typical multiclass classification techniques with the reduced computation resource. Keywords Artificial neural network, Corporate credit rating, Support vector machines, Ordinal pairwise partitioning C I. INTRODUCTION ORPORATE credit ratings are very important element in the market for corporate debt. Information concerning corporate operations is often disseminated to market participants through the changes in credit ratings published by professional rating agencies such as Standard & Poor s (S&P) and Moody s Investor Service. Since these agencies generally require a large amount of fee for the service, and the ratings provided periodically do sometimes not reflect the default risk of the company in time, it may be advantageous to the bond market participants to be able to classify credit ratings before the ratings are published by the agencies. As a result, it is very important for companies (especially, financial companies) to develop a proper model for credit rating [1]. From the perspective of the technical aspects, the credit rating is a typical multiclass classification problem because the rating agencies have ten or more categories of ratings. The professional rating agencies emphasize the importance of This work was supported by the Korea Research Foundation Grant funded by the Korean Government (KRF B00104). H. Ahn is with the School of Management Information Systems, Kookmin University, Jeongneung-dong, Seongbuk-gu, Seoul , Republic of Korea (phone: ; fax: ; [email protected]). K.-j. Kim is with the Department of Management Information Systems, Dongguk University-Seoul, 3-26 Pil-dong, Chung-gu, Seoul , Republic of Korea ( [email protected]). analysts subject judgment in determining credit ratings. However, in practice, a mathematical model using financial variables of companies plays an important role in determining credit ratings since it is convenient to apply, and requires less time and cost. As tools for credit ratings prediction, several statistical and artificial intelligence (AI) techniques have been applied. Among them, artificial neural network (ANN) has been widely used in the area of finance because of their broad applicability to many business problems and preeminent learning ability. Recently, support vector machine (SVM) also becomes popular as a solution for prediction problems because of their robustness and high accuracy. But, SVMs were originally devised for binary classification, so it doesn t fit exactly to multiclass classification just like credit rating [2]. Thus, researchers have tried to extend it to multiclass classification. As a result, various approaches of multiclass SVM (MSVM) are proposed up to now. However, typical ANN and MSVM have focused on classifying samples into nominal categories [3-8]. Even the prior studies applied ANNs or MSVMs to credit rating also applied the typical models that were not designed to reflect the ordinal characteristic of this domain [1,9-11].In this study, we propose a novel approach for multiclass classification, which takes ordinal characteristics into account in order to handle ordinal multiple classes efficiently and effectively. Our models basically combine several binary ANN or SVM classifiers. However, they are different from traditional approaches since they are designed to extend binary classifiers using ordinal pairwise partitioning (OPP) approach [12]. The application of OPP makes them use less classifier, but may predict more accurately because they exploit additional hidden information, the order of the classes. To empirically validate the usefulness of our models, we apply them to a real-world bond rating case. We compared the results of the models to those of traditional ANN and MSVM approaches. II. THEORETICAL BACKGROUND A. Artificial neural network ANN is a computing technology that captures the salient fundamental features of the inputs and recognizes the pattern in the data. The ANN model can discover previously unknown or complex nonlinear relationships in certain data. The ANN model shares the human brain s capacity to learn from a repeated number of inputs, by adjusting the weights that are assigned to the neurons. Through such training, the ANN model can be utilized for both binary and multiclass classification tasks, such as exchange rate or stock price direction prediction, 1783
2 credit rating, churn prediction and even box office success predictions [13]. B. Multiclass support vector machine Conventional SVMs were originally designed for binary classification, which has only one classifier. Thus, in order to perform multi-class classification, conventional SVMs should be modified, and the topics for extending conventional SVMs to MSVMs are still ongoing research issues. In recent five years, a variety of techniques for implementing MSVMs have been proposed. In general, there are two approaches for the extension of SVMs to multiclass problems. The first approach is to decompose the multiclass problems in several binary subproblems. In this approach, MSVMs can be implemented by constructing and combining several binary SVM classifiers. The second approach is directly considering all data in one optimization formulation. In this case, the modification of the conventional training algorithm of SVMs is required. There are different kinds of techniques in each approach [14,15]. In general, there are three popular algorithms for constructing and combining several binary SVM classifiers. The first algorithm is All. This is conceptually the simplest multiclass method. This method constructs k binary SVM classifiers for k-class classification: class 1 (positive) versus all other classes (negative), class 2 versus all other classes,, class k versus all other classes. The second algorithm is One. In this method, the model constructs binary SVM classifiers for all pairs of classes; in total there are k C2 pairs. It means, for every pair of classes, a binary SVM classifier is constructed by solving the underlying optimization problem to maximize the margin between two classes. The decision function assigns an instance to a class which has the largest number of votes, so-called Max Wins (same as vote count, or winner-takes-all) strategy [16,17]. The third algorithm is the directed acyclic graph SVM (DAGSVM). The training phase of this algorithm is similar to the One method using multiple binary classifiers; however DAGSVM uses graph-visiting strategy for testing. The testing phase of DAGSVM requires construction of a rooted binary decision directed acyclic graph (DDAG) using classifiers. Each node of this graph is a binary SVM for a pair of classes, say (p, q). On the topologically lowest level, there are k leaves corresponding to k classification decisions. Every non-leaf node (p, q) has two edges the left edge corresponds to decision not p and the right one corresponds to not q. The choice of the class order in the DDAG list can be arbitrary as shown empirically in [4]. As the algorithms for directly considering all data at once, the method by Weston and Watkins, and the method by Crammer and Singer are generally used. These algorithms may be interpreted as a natural extension of the binary SVM classification problem. Here, in the k-class case, one has to solve single quadratic optimization problem of size ( k l) n which is identical to a binary SVM for the case of k=2 [18]. In a slightly different formulation of QP problem, a bounded formulation, decomposition technique can provide a significant speed-up in the solution of the optimization problem [5,19]. The method by Crammer and Singer is similar to the method by Weston and Watkins, however, it uses less slack variables in the constraints of the optimization problem [3]. Among these five MSVM algorithms, One is used most popularly because it s the simplest, but its prediction performance is generally good [9]. C. Credit rating using artificial intelligence techniques Substantial studies on bond rating prediction using data mining techniques can be found in the literature. These studies can be categorized into three stages. The early days of these studies mainly focused on applicability of statistical techniques such as multiple discriminant analysis (MDA) and logistic regression analysis (LogR). The second stage of the research is application of typical artificial intelligence techniques such as artificial neural networks (ANNs) and case-based reasoning (CBR). Backpropagation neural networks, (BPNs), a kind of ANNs, had been applied most popularly in this stage. However, they suffer from difficulty in selecting a large number of controlling parameters which include relevant input variables, hidden layer size, learning rate, and momentum term. In addition, they require a large amount of data for training model due to degree of freedom constraint. To overcome these limitations, recent studies try to apply MSVMs to credit rating. The study by Huang et al. [9] is the pioneer of the studies that adopted MSVMs for building prediction model of credit rating. They experimented various techniques of MSVMs including One and the method by Crammer and Singer. They also experimented with the different parameters in order to find optimal MSVM model. Finally, they selected the method by Crammer and Singer using a RBF kernel function. They found that this MSVM model outperformed not only BPNs, but also LogR in the prediction of Taiwan and US bond rating. Cao et al. [1] applied All, One, and DAGSVM to the prediction of S&P s bond ratings. For the kernel function, Gaussian RBF is applied and the optimal kernel parameters were investigated by grid search strategy. As a result, they found that DAGSVM showed the best performance among them, and all kinds of MSVM approaches outperformed other comparative multi-class classification technique including LogR, ordered probit regression (OPR) and BPNs. Chen and Shih [10] adopted One approach to build the automatic classification model for issuer credit ratings in Taiwan. Similar to the study by Cao et al. [1], they also adopted Gaussian RBF kernel function and the grid search strategy for searching optimal parameters. They found that MSVM model was superior to BPN and LogR models with the statistical significance. The study by Lee [11] applied the same approach with Chen and Shih [10] for building a corporate credit rating prediction model for Korean companies. He also adopted Gaussian RBF kernel function and the grid search strategy. The experimental results showed that MSVM model significantly outperformed BPNs, MDA and CBR. 1784
3 III. ORDINAL MULTICLASS CLASSIFICATION MODELS Up to now, the multiclass classification techniques applied in corporate credit ratings are mostly designed for the multiclass classification problems whose classes are nominal or categorical, not ordinal. However, a proper modification of the conventional multiclass classification techniques by considering ordinality may improve the performance because of information gain effects. For this motivation, we propose new types of ANN and MSVM models that are optimized for ordinal multiclass classification problems just like credit rating. Our approaches, named OMANN(Ordinal Multiclass ANN) and OMSVM (Ordinal Multiclass SVM), are hybrid algorithms that apply the concept of ordinal pairwise partitioning (OPP) technique to typical ANN and MSVM. OPP is the approach that is designed to enhance the performance of artificial neural networks model for ordinal multiclass classification, proposed by Kwon et al. [12]. The authors noticed that ANNs that are designed to predict multiclass classification problems generally show worse performance than combining several binary ANN classifiers. Thus, they proposed a new method called OPP to combine several binary ANN classifiers considering the order. Thus, in this study, we suggest ordinal pairwise partitioning (OPP) approach as a tool for upgrading conventional ANN as well as MSVM models in order to deal with ordinal classes wisely. The OPP approach partitions the data set into subdata sets with reduced classes in the ordinal and pairwise manner according to the output classes. As shown in Table I, there are four types of OMANNs and OMSVMs according to the partitioning methods and the fusing methods. For the partitioning method, there are TheNext and Followers approaches. TheNext method is similar to One, however, it s much more efficient. In the case of One, all the classifiers for each pair of classes should be developed. But, in TheNext, the binary classifiers for the pairs ( i, i + 1) are constructed where i = 1,2,, k 1 and k is the total number of classes. Consequently, TheNext only constructs k 1 binary classifiers where there are k classes. Contrast to TheNext, Followers is similar to All. But, it is also a little bit more efficient than All. In the case of Followers, the binary classifiers for the pairs ( i, j) are constructed where i = 1,2,, k 1, j = m= i+ 1m, and k is the total number of classes. As a result, Followers also only constructs k 1 binary classifiers, although All constructs k classifiers where there are k classes. Regarding fusing methods, there are forward and backward methods, which implies the reasoning direction. The forward method fuses the binary classifiers in forward direction that is, it determines the highest level of classes first, and the lowest level last. By contrast, the backward one combines the binary classifiers in reverse direction. Thus, it determines the lowest k level of classes first, and the highest level last.the process of OMANN or OMSVM consists of two phases (1) preparation, and (2) interpretation phase. In preparation phase, the proposed models construct individual binary classifiers using training data set. In detail, it first divides the whole training data set into k 1 groups according to the partitioning method. Then, it TABLE I FOUR TYPES OF PROPOSED MODELS AND THEIR EXAMPLE PROCESS OF A 4-CLASS CLASSIFICATION PROBLEM Fusing TheNext classifiers: (1vs2), (2vs3), (3vs4) (1vs2) (2vs3) Determine the class 2 (3vs4) and 4 classifiers: (1vs2), (2vs3), (3vs4) (3vs4) Determine the class 4 (2vs3) (1vs2) and 2 Partitioning Followers classifiers: (1vs2,3,4), (2vs3,4), (3vs4) (1vs2,3,4) (2vs3,4) Determine the class 2 (3vs4) and 4 classifiers: (1vs2), (1,2vs3), (1,2,3vs4) (1,2,3vs4) Determine the class 4 (1,2vs3) (1vs2) and 2 trains k 1 binary ANN or SVM models with each of the divided data sets above. For example, when using TheNext approach, the first phase of OMANN or OMSVM produces three binary classification models Model 1 for the pair of classes (1, 2), Model 2 for the pair of classes (2, 3), and Model 3 for the pair of classes (3, 4) for 4-level classification problems. In interpretation phase, our proposed models determine the class for the input data using the binary classifiers built in the first phase. To do this, it fuses the binary classifiers in the forward direction or backward direction. In the case of above example, the forward method begins with Model 1. If a test data is put into class 1 by Model 1, it is called class 1. Otherwise, the test data is passed on to Model 2. If it is put into class 2 by Model 2, then it is called class 2. Otherwise, Model 3 applies. In Model 3, the test data is finally classified as either class 3 or class 4. Using the same reasoning, the backward method starts with Model 3. That is, if test data is put into class 4, we regard it as class 4. Otherwise, the test data is passed on to the next ANN or SVM model. The remaining procedure is the same as in the forward method but in the reverse order. 1785
4 IV. EXPERIMENTAL DESIGN To validate our models, we applied them to the real world credit rating case in South Korea. Our application is bond rating, which is the most frequently studied credit rating area for specific debt issues or other financial obligations. The research data was collected from National Information and Credit Evaluation, Inc., a major bond rating company in South Korea. We obtained the bond rating results for the year 2002 and various financial variables from 1,295 companies in manufacturing industry in Korea. In Korean bond rating market, bond ratings are divided into 5 classes, A1, A2, A3, B and C. But, we adjust our data to 4 classes by combining B and C ratings into one group because their numbers of samples were TABLE IV THE EXPERIMENTAL RESULTS OF TYPICAL ANN AND MSVM Comparative Models Data Set Hit Ratio Typical ANN Typical MSVM (DAGSVM) Train 69.55% Test 65.35% Validation 65.66% Train/Test 70.84% Validation 67.29% so small, and these ratings are usually treated same as just junk bonds in the market. Original data consisted of 39 financial ratio variables that were known to the features affecting bond rating in previous literatures. Among them, we selected 36 variables by applying independent-samples t-test and, finally, selected 14 variables which are proved to be the most influential in bond rating by applying stepwise statistical method. The selected variables are presented in Table II. In this study, 20% of the data for each class were used for validation and the remaining 80% of data TABLE II DEFINITION OF THE SELECTED INPUT VARIABLES Symbol SHEQ SALE DEBT SAPE NIPS YEAR AETA BDRA FCTC FIRA IACA SBTB CFTA OACF Definition Shareholder's equity Sales Total debt Sales per employee Net income per share Years after founded Accumulated earning to total asset Borrowings-dependency ratio Financing cost to total cost Fixed ratio Inventory assets to current assets Short-term borrowings to total borrowings Cash flow to total assets Cash flows from operating activity were used for training. And, to overcome the scarcity of samples, we adopted 5-fold cross-validation. To validate the superiority of our models performances with sophistication, we applied our proposed models (OMANN and OMSVM) as well as typical ANN and MSVM. As the typical MSVM, we selected DAGSVM algorithm since a prior study reported that it showed the best prediction accuracy among traditional MSVM algorithms [1]. In the case of MSVM models (OMSVM and DAGSVM), the linear kernel, the polynomial kernel and the Gaussian radial basis function are used as the kernel function of SVM. Tay and Cao [20] showed that the upper bound C and the kernel parameter play an important role in the performance of SVMs. Improper selection of these two parameters can cause the overfitting or the underfitting problems. Since there is few general guidance to determine the parameters of SVM, this study varies the parameters including 2 upper bound C, d of polynomial kernel function, and σ of Gaussian RBF kernel function, to select optimal values for the best prediction performance. For the implementation of OMSVM and DAGSVM, we developed post-processing software that combines the results in predefined ways generated from multiple binary SVM classifiers. It was written in Microsoft Visual Basic for Applications for Excel And, as a library for binary SVM classification, we adopted LIBSVM 2.6 provided by Chang and Lin [21]. In the case of ANNs, we adopt standard three-layer back propagation networks and set the number of nodes in the hidden layer as 7, 14, 21 and 28. For the stopping criteria of ANNs, this study allows 50 learning epochs and set the learning rate to 0.1 and the momentum term to 0.1. The hidden nodes use the sigmoid transfer function and the output node uses the linear transfer function. This study allows 14 input nodes because 14 input variables are employed. We implement binary and multiclass ANN models using Neuroshell R4.0. OMANN, similar to OMSVM, is experimented using the post-processing software that combines the results in predefined ways generated from multiple binary ANN classifiers. V. EXPERIMENTAL RESULTS A. OMSVM and Typical MSVM (DAGSVM) Table III shows the hit ratios of the proposed model, OMSVM. As shown this table, Followers + approach showed the best performance (67.98%). For the same fusing method, the prediction accuracies of Followers approach were always higher than ones of TheNext (67.98%>67.36% for forward strategy, 67.60%>67.13%). And, for the same partitioning method, the forward fusing method always outperformed the reverse fusing method (67.36%>67.13% for TheNext, 67.98%>67.60% for Followers). Table IV presents the experimental results of the comparative models. From this table, we can check that OMSVM outperformed conventional MSVM (i.e. DAGSVM). In particular, we are also able to find that OMSVM regardless of its types always showed better prediction performance than DAGSVM except for TheNext+ type. B. OMANN and Typical ANN In Table V, the results of OMANN ANN model that adopted OPP are presented. OMANN produced the prediction accuracy ranging from 66.43% to 67.05%. When considering the prediction accuracy of conventional ANN for the validation 1786
5 Partitioning TheNext Followers TABLE III THE EXPERIMENTAL RESULTS OF OMSVM Fusing Data Set a The best performance for the validation data set. Hit Ratio Train 71.80% Validation 67.36% Train 71.98% Validation 67.13% Train 75.77% Validation 67.98% a Train 73.58% Validation 67.60% data set was 65.66% presented in Table IV, it is believed that OPP approach is able to improve the performances of SVMs as well as ANNs. Nevertheless, its best prediction accuracy (67.05%) was lower than even OMSVM s worst result (67.13%). In general, SVMs are known that they produce more accurate. Thus, it is believed that it would be more effective for bond rating to apply OMSVM rather than OMANN.It is also interesting that the partitioning approach that shows the best performance of OMSVM and OMANN is completely different. As indicated in Table III, Followers outperformed Partitioning TheNext Followers TABLE V THE EXPERIMENTAL RESULTS OF OMANN Fusing Data Set Hit Ratio Train 68.34% Test 66.43% Validation 67.05% a Train 68.27% Test 66.43% Validation 66.98% Train 67.98% Test 66.90% Validation 66.36% Train 67.52% Test 66.59% Validation 66.43% a The best performance for the validation data set. TheNext in OMSVM. However, in the case of OMANN, TheNext outperformed Followers. In the study of Kwon et al. [12], we can also find the same pattern. We think this phenomenon is caused by the fundamental difference between ANN and SVM. As mentioned before, ANN is the method implements the Empirical Risk Minimization principal, and is designed to minimize the training error by repeated learning. Thus, it is easy to be affected by disproportion of the samples. By contrast, SVM is basically free from the problem of sample disproportion because SVM just refers a small subset of training samples, which is called support vectors. In other words, it implements the Structural Risk Minimization principal [1]. Followers approach may provide more detailed information for classification, however, the proportion of the training sample is distorted. As a result, SVM by nature can fully utilize the advantage of Followers approach, but for ANN, misleading the training may happen when using this approach, and it may result in low prediction performance. VI. CONCLUDING REMARKS In this study, we proposed a novel multiclass classification models optimized for credit rating. Contrast to prior studies that just applied conventional ANNs or MSVMs to credit ratings, we suggested a new multiclass classification models, called OMANN and OMSVM, which are designed to use order information when classifying ordinal multiclass problems. To validate the applicability of the proposed models, we applied them to real bond rating case. As a result, we found that OMSVM outperformed a typical MSVM approach, and OMANN also outperformed a typical ANN. And among them, the performance of OMSVM was better than one of OMANN. As a result, we may conclude that OMSVM is effective and efficient classifier for solving ordinal multiclass classification problems like corporate credit rating. Although we applied our models to the domain of credit rating here, they can be applied to any kinds of ordinal multiclass classification problems. For example, in medical diagnostics, doctors may want to build prediction model that classifies patients by the level of severity of a disease. And, in business domain, some marketers may want to build classification model that classifies customers by the level of profitability in order to implement customer relationship management (CRM) strategy. Besides, there are many kinds of application areas, which require accurate ordinal multiclass classification model. Thus, we expect that our proposed models will be able to contribute to other domains or business problems in the future studies. REFERENCES [1] L. Cao, L. K. Guan, and Z. Jingqing, Bond rating using support vector machine, Intell. Data Anal., vol. 10, no. 3, pp , [2] V. Vapnik, The Nature of Statistical Learning Theory. New York: Springer-Verlag, [3] K. Crammer, and Y. Singer, On the learnability and design of output codes for multiclass problems, in Proc. 13th Annu. Conf. Computational Learning Theory, Palo Alto, CA, 2000, pp [4] J. C. Platt, N. Cristianini, and J. Shawe-Taylor, Large margin DAG s for multiclass classification, in Advances in Neural Information Processing Systems, vol. 12, S. A. Solla, T. K. Leen, and K. -R. Muller, Eds. Cambridge, MA: MIT Press, 2000, pp [5] C. -W. Hsu, and C. -J. Lin, A comparison of methods for multiclass support vector machines, IEEE Trans. Neural Networks, vol. 13, no. 2, pp , [6] Z. Shuibo, T. Houjun, H. Zhengzhi, and Z. Haoran, Solving large-scale multiclass learning problems via an efficient support vector classifier, J. Syst. Eng. Electron., vol. 17, no. 4, pp , [7] A. Navia-Vázquez, Compact multi-class support vector machine, Neurocomputing, vol. 71, nos. 1-3, pp , [8] E. D. Übeyli, Multiclass support vector machines for diagnosis of erythemato-squamous disease, Expert Syst. Appl., vol. 35, no. 4, pp , [9] Z. Huang, H. Chen, C. -J. Hsu, W. -H. Chen, and S. Wu, Credit rating analysis with support vector machines and neural networks: A market comparative study, Decis. Support Syst., vol. 37, no. 4, pp , [10] W. -H. Chen, and J. -Y. Shih, A study of Taiwan s issuer credit rating systems using support vector machines, Expert Syst. Appl., vol. 30, no. 3, pp , [11] Y. -C. Lee, Application of support vector machines to corporate credit rating prediction, Expert Syst. Appl., vol. 33, no. 1, pp , [12] Y. S. Kwon, I. Han, and K. C. Lee, Ordinal pairwise partitioning (OPP) approach to neural networks training in bond rating, Intell. Syst. Account. Finance Manag., vol. 6, no. 1, pp ,
6 [13] H. Ahn, J. J. Ahn, H. W. Byun, and K. J. Oh, A novel customer scoring model to encourage the use of mobile value added services, Expert Syst. Appl., vol. 38, no. 9, pp , [14] Y. -C. Wu, Y. -S. Lee, and J. -C. Yang, Robust and efficient multiclass SVM models for phrase pattern recognition, Pattern Recogn., vol. 41, no. 9, pp , [15] A. C. Lorena, and A. C. P. L. F. de Carvalho, Investigation of strategies for the generation of multiclass support vector machines, in New Challenges in Applied Intelligence Techniques, N. T. Nguyen, and R. Katarzyniak, Eds. Berlin, Germany: Springer-Verlag, 2008, pp [16] J. Friedman, Another approach to polychtomous classification, Technical Report, Stanford University, [17] U. Kreβel, Pairwise classification and support vector machines, in Advances in Kernal s: Support Vector Learning, ch. 15, B. Schölkopf, C. Burges, and A. J. Smola, Eds. Cambridge, MA: MIT Press, 1999, pp [18] J. Weston, and C. Watkins, Support vector machines for multiclass pattern recognition, in Proc. 7th European Symp. Artificial Neural Networks, Bruges, Belgium, 1999, pp [19] C. -W. Hsu, and C. -J. Lin, A simple decomposition method for support vector machines, Mach. Learn., vol. 46, nos. 1-3, pp , [20] F. E. H. Tay, and L. J. Cao, Application of support vector machines in financial time series forecasting, Omega, vol. 29, no. 4, pp , [21] C. -C. Chang, and C. -J. Lin, LIBSVM : a library for support vector machines, Software available at
HYBRID PROBABILITY BASED ENSEMBLES FOR BANKRUPTCY PREDICTION
HYBRID PROBABILITY BASED ENSEMBLES FOR BANKRUPTCY PREDICTION Chihli Hung 1, Jing Hong Chen 2, Stefan Wermter 3, 1,2 Department of Management Information Systems, Chung Yuan Christian University, Taiwan
Large Margin DAGs for Multiclass Classification
S.A. Solla, T.K. Leen and K.-R. Müller (eds.), 57 55, MIT Press (000) Large Margin DAGs for Multiclass Classification John C. Platt Microsoft Research Microsoft Way Redmond, WA 9805 [email protected]
Comparing the Results of Support Vector Machines with Traditional Data Mining Algorithms
Comparing the Results of Support Vector Machines with Traditional Data Mining Algorithms Scott Pion and Lutz Hamel Abstract This paper presents the results of a series of analyses performed on direct mail
Financial time series forecasting using support vector machines
Neurocomputing 55 (2003) 307 319 www.elsevier.com/locate/neucom Financial time series forecasting using support vector machines Kyoung-jae Kim Department of Information Systems, College of Business Administration,
Support Vector Machines Explained
March 1, 2009 Support Vector Machines Explained Tristan Fletcher www.cs.ucl.ac.uk/staff/t.fletcher/ Introduction This document has been written in an attempt to make the Support Vector Machines (SVM),
DOUBLE ENSEMBLE APPROACHES TO PREDICTING FIRMS CREDIT RATING
DOUBLE ENSEMBLE APPROACHES TO PREDICTING FIRMS CREDIT RATING Jungeun Kwon, Business School, Korea University, Seoul, Republic of Korea, [email protected] Keunho Choi * Business School, Korea University,
Equity forecast: Predicting long term stock price movement using machine learning
Equity forecast: Predicting long term stock price movement using machine learning Nikola Milosevic School of Computer Science, University of Manchester, UK [email protected] Abstract Long
SUPPORT VECTOR MACHINE (SVM) is the optimal
130 IEEE TRANSACTIONS ON NEURAL NETWORKS, VOL. 19, NO. 1, JANUARY 2008 Multiclass Posterior Probability Support Vector Machines Mehmet Gönen, Ayşe Gönül Tanuğur, and Ethem Alpaydın, Senior Member, IEEE
Neural Networks and Support Vector Machines
INF5390 - Kunstig intelligens Neural Networks and Support Vector Machines Roar Fjellheim INF5390-13 Neural Networks and SVM 1 Outline Neural networks Perceptrons Neural networks Support vector machines
Artificial Neural Networks and Support Vector Machines. CS 486/686: Introduction to Artificial Intelligence
Artificial Neural Networks and Support Vector Machines CS 486/686: Introduction to Artificial Intelligence 1 Outline What is a Neural Network? - Perceptron learners - Multi-layer networks What is a Support
Machine Learning in FX Carry Basket Prediction
Machine Learning in FX Carry Basket Prediction Tristan Fletcher, Fabian Redpath and Joe D Alessandro Abstract Artificial Neural Networks ANN), Support Vector Machines SVM) and Relevance Vector Machines
Support Vector Machines with Clustering for Training with Very Large Datasets
Support Vector Machines with Clustering for Training with Very Large Datasets Theodoros Evgeniou Technology Management INSEAD Bd de Constance, Fontainebleau 77300, France [email protected] Massimiliano
Which Is the Best Multiclass SVM Method? An Empirical Study
Which Is the Best Multiclass SVM Method? An Empirical Study Kai-Bo Duan 1 and S. Sathiya Keerthi 2 1 BioInformatics Research Centre, Nanyang Technological University, Nanyang Avenue, Singapore 639798 [email protected]
Neural network models: Foundations and applications to an audit decision problem
Annals of Operations Research 75(1997)291 301 291 Neural network models: Foundations and applications to an audit decision problem Rebecca C. Wu Department of Accounting, College of Management, National
SURVIVABILITY OF COMPLEX SYSTEM SUPPORT VECTOR MACHINE BASED APPROACH
1 SURVIVABILITY OF COMPLEX SYSTEM SUPPORT VECTOR MACHINE BASED APPROACH Y, HONG, N. GAUTAM, S. R. T. KUMARA, A. SURANA, H. GUPTA, S. LEE, V. NARAYANAN, H. THADAKAMALLA The Dept. of Industrial Engineering,
New Ensemble Combination Scheme
New Ensemble Combination Scheme Namhyoung Kim, Youngdoo Son, and Jaewook Lee, Member, IEEE Abstract Recently many statistical learning techniques are successfully developed and used in several areas However,
Predictive time series analysis of stock prices using neural network classifier
Predictive time series analysis of stock prices using neural network classifier Abhinav Pathak, National Institute of Technology, Karnataka, Surathkal, India [email protected] Abstract The work pertains
Introduction to Machine Learning and Data Mining. Prof. Dr. Igor Trajkovski [email protected]
Introduction to Machine Learning and Data Mining Prof. Dr. Igor Trakovski [email protected] Neural Networks 2 Neural Networks Analogy to biological neural systems, the most robust learning systems
Multiple Kernel Learning on the Limit Order Book
JMLR: Workshop and Conference Proceedings 11 (2010) 167 174 Workshop on Applications of Pattern Analysis Multiple Kernel Learning on the Limit Order Book Tristan Fletcher Zakria Hussain John Shawe-Taylor
International Journal of Computer Science Trends and Technology (IJCST) Volume 3 Issue 3, May-June 2015
RESEARCH ARTICLE OPEN ACCESS Data Mining Technology for Efficient Network Security Management Ankit Naik [1], S.W. Ahmad [2] Student [1], Assistant Professor [2] Department of Computer Science and Engineering
Prediction of Stock Performance Using Analytical Techniques
136 JOURNAL OF EMERGING TECHNOLOGIES IN WEB INTELLIGENCE, VOL. 5, NO. 2, MAY 2013 Prediction of Stock Performance Using Analytical Techniques Carol Hargreaves Institute of Systems Science National University
A Simple Introduction to Support Vector Machines
A Simple Introduction to Support Vector Machines Martin Law Lecture for CSE 802 Department of Computer Science and Engineering Michigan State University Outline A brief history of SVM Large-margin linear
Forecasting Of Indian Stock Market Index Using Artificial Neural Network
Forecasting Of Indian Stock Market Index Using Artificial Neural Network Proposal Page 1 of 8 ABSTRACT The objective of the study is to present the use of artificial neural network as a forecasting tool
Neural Network Applications in Stock Market Predictions - A Methodology Analysis
Neural Network Applications in Stock Market Predictions - A Methodology Analysis Marijana Zekic, MS University of Josip Juraj Strossmayer in Osijek Faculty of Economics Osijek Gajev trg 7, 31000 Osijek
Statistical Learning for Short-Term Photovoltaic Power Predictions
Statistical Learning for Short-Term Photovoltaic Power Predictions Björn Wolff 1, Elke Lorenz 2, Oliver Kramer 1 1 Department of Computing Science 2 Institute of Physics, Energy and Semiconductor Research
The Combination Forecasting Model of Auto Sales Based on Seasonal Index and RBF Neural Network
, pp.67-76 http://dx.doi.org/10.14257/ijdta.2016.9.1.06 The Combination Forecasting Model of Auto Sales Based on Seasonal Index and RBF Neural Network Lihua Yang and Baolin Li* School of Economics and
Support Vector Machine. Tutorial. (and Statistical Learning Theory)
Support Vector Machine (and Statistical Learning Theory) Tutorial Jason Weston NEC Labs America 4 Independence Way, Princeton, USA. [email protected] 1 Support Vector Machines: history SVMs introduced
How To Identify A Churner
2012 45th Hawaii International Conference on System Sciences A New Ensemble Model for Efficient Churn Prediction in Mobile Telecommunication Namhyoung Kim, Jaewook Lee Department of Industrial and Management
Predict Influencers in the Social Network
Predict Influencers in the Social Network Ruishan Liu, Yang Zhao and Liuyu Zhou Email: rliu2, yzhao2, [email protected] Department of Electrical Engineering, Stanford University Abstract Given two persons
SVM Ensemble Model for Investment Prediction
19 SVM Ensemble Model for Investment Prediction Chandra J, Assistant Professor, Department of Computer Science, Christ University, Bangalore Siji T. Mathew, Research Scholar, Christ University, Dept of
Early defect identification of semiconductor processes using machine learning
STANFORD UNIVERISTY MACHINE LEARNING CS229 Early defect identification of semiconductor processes using machine learning Friday, December 16, 2011 Authors: Saul ROSA Anton VLADIMIROV Professor: Dr. Andrew
CS 2750 Machine Learning. Lecture 1. Machine Learning. http://www.cs.pitt.edu/~milos/courses/cs2750/ CS 2750 Machine Learning.
Lecture Machine Learning Milos Hauskrecht [email protected] 539 Sennott Square, x5 http://www.cs.pitt.edu/~milos/courses/cs75/ Administration Instructor: Milos Hauskrecht [email protected] 539 Sennott
Data Mining - Evaluation of Classifiers
Data Mining - Evaluation of Classifiers Lecturer: JERZY STEFANOWSKI Institute of Computing Sciences Poznan University of Technology Poznan, Poland Lecture 4 SE Master Course 2008/2009 revised for 2010
A fast multi-class SVM learning method for huge databases
www.ijcsi.org 544 A fast multi-class SVM learning method for huge databases Djeffal Abdelhamid 1, Babahenini Mohamed Chaouki 2 and Taleb-Ahmed Abdelmalik 3 1,2 Computer science department, LESIA Laboratory,
Introduction to Support Vector Machines. Colin Campbell, Bristol University
Introduction to Support Vector Machines Colin Campbell, Bristol University 1 Outline of talk. Part 1. An Introduction to SVMs 1.1. SVMs for binary classification. 1.2. Soft margins and multi-class classification.
Evaluation of Machine Learning Techniques for Green Energy Prediction
arxiv:1406.3726v1 [cs.lg] 14 Jun 2014 Evaluation of Machine Learning Techniques for Green Energy Prediction 1 Objective Ankur Sahai University of Mainz, Germany We evaluate Machine Learning techniques
Classification algorithm in Data mining: An Overview
Classification algorithm in Data mining: An Overview S.Neelamegam #1, Dr.E.Ramaraj *2 #1 M.phil Scholar, Department of Computer Science and Engineering, Alagappa University, Karaikudi. *2 Professor, Department
Electroencephalography Analysis Using Neural Network and Support Vector Machine during Sleep
Engineering, 23, 5, 88-92 doi:.4236/eng.23.55b8 Published Online May 23 (http://www.scirp.org/journal/eng) Electroencephalography Analysis Using Neural Network and Support Vector Machine during Sleep JeeEun
Artificial Neural Network, Decision Tree and Statistical Techniques Applied for Designing and Developing E-mail Classifier
International Journal of Recent Technology and Engineering (IJRTE) ISSN: 2277-3878, Volume-1, Issue-6, January 2013 Artificial Neural Network, Decision Tree and Statistical Techniques Applied for Designing
A Health Degree Evaluation Algorithm for Equipment Based on Fuzzy Sets and the Improved SVM
Journal of Computational Information Systems 10: 17 (2014) 7629 7635 Available at http://www.jofcis.com A Health Degree Evaluation Algorithm for Equipment Based on Fuzzy Sets and the Improved SVM Tian
An Introduction to Data Mining
An Introduction to Intel Beijing [email protected] January 17, 2014 Outline 1 DW Overview What is Notable Application of Conference, Software and Applications Major Process in 2 Major Tasks in Detail
A hybrid financial analysis model for business failure prediction
Available online at www.sciencedirect.com Expert Systems with Applications Expert Systems with Applications 35 (2008) 1034 1040 www.elsevier.com/locate/eswa A hybrid financial analysis model for business
Survey on Multiclass Classification Methods
Survey on Multiclass Classification Methods Mohamed Aly November 2005 Abstract Supervised classification algorithms aim at producing a learning model from a labeled training set. Various
Credit rating analysis with support vector machines and neural networks: a market comparative study
Decision Support Systems 37 (2004) 543 558 www.elsevier.com/locate/dsw Credit rating analysis with support vector machines and neural networks: a market comparative study Zan Huang a, *, Hsinchun Chen
Towards applying Data Mining Techniques for Talent Mangement
2009 International Conference on Computer Engineering and Applications IPCSIT vol.2 (2011) (2011) IACSIT Press, Singapore Towards applying Data Mining Techniques for Talent Mangement Hamidah Jantan 1,
Predict the Popularity of YouTube Videos Using Early View Data
000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050
Evaluation of Feature Selection Methods for Predictive Modeling Using Neural Networks in Credits Scoring
714 Evaluation of Feature election Methods for Predictive Modeling Using Neural Networks in Credits coring Raghavendra B. K. Dr. M.G.R. Educational and Research Institute, Chennai-95 Email: [email protected]
Combining SOM and GA-CBR for Flow Time Prediction in Semiconductor Manufacturing Factory
Combining SOM and GA-CBR for Flow Time Prediction in Semiconductor Manufacturing Factory Pei-Chann Chang 12, Yen-Wen Wang 3, Chen-Hao Liu 2 1 Department of Information Management, Yuan-Ze University, 2
Intrusion Detection via Machine Learning for SCADA System Protection
Intrusion Detection via Machine Learning for SCADA System Protection S.L.P. Yasakethu Department of Computing, University of Surrey, Guildford, GU2 7XH, UK. [email protected] J. Jiang Department
Predictive Data modeling for health care: Comparative performance study of different prediction models
Predictive Data modeling for health care: Comparative performance study of different prediction models Shivanand Hiremath [email protected] National Institute of Industrial Engineering (NITIE) Vihar
Flexible Neural Trees Ensemble for Stock Index Modeling
Flexible Neural Trees Ensemble for Stock Index Modeling Yuehui Chen 1, Ju Yang 1, Bo Yang 1 and Ajith Abraham 2 1 School of Information Science and Engineering Jinan University, Jinan 250022, P.R.China
Artificial Neural Network and Non-Linear Regression: A Comparative Study
International Journal of Scientific and Research Publications, Volume 2, Issue 12, December 2012 1 Artificial Neural Network and Non-Linear Regression: A Comparative Study Shraddha Srivastava 1, *, K.C.
Applied Mathematical Sciences, Vol. 7, 2013, no. 112, 5591-5597 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ams.2013.
Applied Mathematical Sciences, Vol. 7, 2013, no. 112, 5591-5597 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ams.2013.38457 Accuracy Rate of Predictive Models in Credit Screening Anirut Suebsing
Operations Research and Knowledge Modeling in Data Mining
Operations Research and Knowledge Modeling in Data Mining Masato KODA Graduate School of Systems and Information Engineering University of Tsukuba, Tsukuba Science City, Japan 305-8573 [email protected]
BACK CALCULATION PROCEDURE FOR THE STIFFNESS MODULUS OF CEMENT TREATED BASE LAYERS USING COMPUTATIONAL INTELLIGENCE BASED MODELS
BACK CALCULATION PROCEDURE FOR THE STIFFNESS MODULUS OF CEMENT TREATED BASE LAYERS USING COMPUTATIONAL INTELLIGENCE BASED MODELS Maryam Miradi [email protected] André.A. A. Molenaar * [email protected]
A Prediction Model for Taiwan Tourism Industry Stock Index
A Prediction Model for Taiwan Tourism Industry Stock Index ABSTRACT Han-Chen Huang and Fang-Wei Chang Yu Da University of Science and Technology, Taiwan Investors and scholars pay continuous attention
Supply Chain Forecasting Model Using Computational Intelligence Techniques
CMU.J.Nat.Sci Special Issue on Manufacturing Technology (2011) Vol.10(1) 19 Supply Chain Forecasting Model Using Computational Intelligence Techniques Wimalin S. Laosiritaworn Department of Industrial
AUTOMATION OF ENERGY DEMAND FORECASTING. Sanzad Siddique, B.S.
AUTOMATION OF ENERGY DEMAND FORECASTING by Sanzad Siddique, B.S. A Thesis submitted to the Faculty of the Graduate School, Marquette University, in Partial Fulfillment of the Requirements for the Degree
DATA MINING-BASED PREDICTIVE MODEL TO DETERMINE PROJECT FINANCIAL SUCCESS USING PROJECT DEFINITION PARAMETERS
DATA MINING-BASED PREDICTIVE MODEL TO DETERMINE PROJECT FINANCIAL SUCCESS USING PROJECT DEFINITION PARAMETERS Seungtaek Lee, Changmin Kim, Yoora Park, Hyojoo Son, and Changwan Kim* Department of Architecture
Knowledge Based Descriptive Neural Networks
Knowledge Based Descriptive Neural Networks J. T. Yao Department of Computer Science, University or Regina Regina, Saskachewan, CANADA S4S 0A2 Email: [email protected] Abstract This paper presents a
To improve the problems mentioned above, Chen et al. [2-5] proposed and employed a novel type of approach, i.e., PA, to prevent fraud.
Proceedings of the 5th WSEAS Int. Conference on Information Security and Privacy, Venice, Italy, November 20-22, 2006 46 Back Propagation Networks for Credit Card Fraud Prediction Using Stratified Personalized
A Hybrid Forecasting Methodology using Feature Selection and Support Vector Regression
A Hybrid Forecasting Methodology using Feature Selection and Support Vector Regression José Guajardo, Jaime Miranda, and Richard Weber, Department of Industrial Engineering, University of Chile Abstract
Beating the MLB Moneyline
Beating the MLB Moneyline Leland Chen [email protected] Andrew He [email protected] 1 Abstract Sports forecasting is a challenging task that has similarities to stock market prediction, requiring time-series
A Study on the Comparison of Electricity Forecasting Models: Korea and China
Communications for Statistical Applications and Methods 2015, Vol. 22, No. 6, 675 683 DOI: http://dx.doi.org/10.5351/csam.2015.22.6.675 Print ISSN 2287-7843 / Online ISSN 2383-4757 A Study on the Comparison
Making Sense of the Mayhem: Machine Learning and March Madness
Making Sense of the Mayhem: Machine Learning and March Madness Alex Tran and Adam Ginzberg Stanford University [email protected] [email protected] I. Introduction III. Model The goal of our research
Chapter 12 Discovering New Knowledge Data Mining
Chapter 12 Discovering New Knowledge Data Mining Becerra-Fernandez, et al. -- Knowledge Management 1/e -- 2004 Prentice Hall Additional material 2007 Dekai Wu Chapter Objectives Introduce the student to
MAXIMIZING RETURN ON DIRECT MARKETING CAMPAIGNS
MAXIMIZING RETURN ON DIRET MARKETING AMPAIGNS IN OMMERIAL BANKING S 229 Project: Final Report Oleksandra Onosova INTRODUTION Recent innovations in cloud computing and unified communications have made a
Novelty Detection in image recognition using IRF Neural Networks properties
Novelty Detection in image recognition using IRF Neural Networks properties Philippe Smagghe, Jean-Luc Buessler, Jean-Philippe Urban Université de Haute-Alsace MIPS 4, rue des Frères Lumière, 68093 Mulhouse,
Support Vector Machine (SVM)
Support Vector Machine (SVM) CE-725: Statistical Pattern Recognition Sharif University of Technology Spring 2013 Soleymani Outline Margin concept Hard-Margin SVM Soft-Margin SVM Dual Problems of Hard-Margin
Lecture 6. Artificial Neural Networks
Lecture 6 Artificial Neural Networks 1 1 Artificial Neural Networks In this note we provide an overview of the key concepts that have led to the emergence of Artificial Neural Networks as a major paradigm
Prediction Model for Crude Oil Price Using Artificial Neural Networks
Applied Mathematical Sciences, Vol. 8, 2014, no. 80, 3953-3965 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ams.2014.43193 Prediction Model for Crude Oil Price Using Artificial Neural Networks
Comparing Support Vector Machines, Recurrent Networks and Finite State Transducers for Classifying Spoken Utterances
Comparing Support Vector Machines, Recurrent Networks and Finite State Transducers for Classifying Spoken Utterances Sheila Garfield and Stefan Wermter University of Sunderland, School of Computing and
How can we discover stocks that will
Algorithmic Trading Strategy Based On Massive Data Mining Haoming Li, Zhijun Yang and Tianlun Li Stanford University Abstract We believe that there is useful information hiding behind the noisy and massive
The Artificial Prediction Market
The Artificial Prediction Market Adrian Barbu Department of Statistics Florida State University Joint work with Nathan Lay, Siemens Corporate Research 1 Overview Main Contributions A mathematical theory
Chapter 2 The Research on Fault Diagnosis of Building Electrical System Based on RBF Neural Network
Chapter 2 The Research on Fault Diagnosis of Building Electrical System Based on RBF Neural Network Qian Wu, Yahui Wang, Long Zhang and Li Shen Abstract Building electrical system fault diagnosis is the
Predicting the Risk of Heart Attacks using Neural Network and Decision Tree
Predicting the Risk of Heart Attacks using Neural Network and Decision Tree S.Florence 1, N.G.Bhuvaneswari Amma 2, G.Annapoorani 3, K.Malathi 4 PG Scholar, Indian Institute of Information Technology, Srirangam,
Knowledge Discovery from patents using KMX Text Analytics
Knowledge Discovery from patents using KMX Text Analytics Dr. Anton Heijs [email protected] Treparel Abstract In this white paper we discuss how the KMX technology of Treparel can help searchers
Data Mining for Knowledge Management. Classification
1 Data Mining for Knowledge Management Classification Themis Palpanas University of Trento http://disi.unitn.eu/~themis Data Mining for Knowledge Management 1 Thanks for slides to: Jiawei Han Eamonn Keogh
Social Media Mining. Data Mining Essentials
Introduction Data production rate has been increased dramatically (Big Data) and we are able store much more data than before E.g., purchase data, social media data, mobile phone data Businesses and customers
Data Mining Algorithms Part 1. Dejan Sarka
Data Mining Algorithms Part 1 Dejan Sarka Join the conversation on Twitter: @DevWeek #DW2015 Instructor Bio Dejan Sarka ([email protected]) 30 years of experience SQL Server MVP, MCT, 13 books 7+ courses
CHARACTERISTICS IN FLIGHT DATA ESTIMATION WITH LOGISTIC REGRESSION AND SUPPORT VECTOR MACHINES
CHARACTERISTICS IN FLIGHT DATA ESTIMATION WITH LOGISTIC REGRESSION AND SUPPORT VECTOR MACHINES Claus Gwiggner, Ecole Polytechnique, LIX, Palaiseau, France Gert Lanckriet, University of Berkeley, EECS,
Multiclass Classification. 9.520 Class 06, 25 Feb 2008 Ryan Rifkin
Multiclass Classification 9.520 Class 06, 25 Feb 2008 Ryan Rifkin It is a tale Told by an idiot, full of sound and fury, Signifying nothing. Macbeth, Act V, Scene V What Is Multiclass Classification? Each
Class #6: Non-linear classification. ML4Bio 2012 February 17 th, 2012 Quaid Morris
Class #6: Non-linear classification ML4Bio 2012 February 17 th, 2012 Quaid Morris 1 Module #: Title of Module 2 Review Overview Linear separability Non-linear classification Linear Support Vector Machines
Data Mining using Artificial Neural Network Rules
Data Mining using Artificial Neural Network Rules Pushkar Shinde MCOERC, Nasik Abstract - Diabetes patients are increasing in number so it is necessary to predict, treat and diagnose the disease. Data
BOOSTING - A METHOD FOR IMPROVING THE ACCURACY OF PREDICTIVE MODEL
The Fifth International Conference on e-learning (elearning-2014), 22-23 September 2014, Belgrade, Serbia BOOSTING - A METHOD FOR IMPROVING THE ACCURACY OF PREDICTIVE MODEL SNJEŽANA MILINKOVIĆ University
Feature Selection using Integer and Binary coded Genetic Algorithm to improve the performance of SVM Classifier
Feature Selection using Integer and Binary coded Genetic Algorithm to improve the performance of SVM Classifier D.Nithya a, *, V.Suganya b,1, R.Saranya Irudaya Mary c,1 Abstract - This paper presents,
International Journal of Computer Science Trends and Technology (IJCST) Volume 2 Issue 3, May-Jun 2014
RESEARCH ARTICLE OPEN ACCESS A Survey of Data Mining: Concepts with Applications and its Future Scope Dr. Zubair Khan 1, Ashish Kumar 2, Sunny Kumar 3 M.Tech Research Scholar 2. Department of Computer
Search Taxonomy. Web Search. Search Engine Optimization. Information Retrieval
Information Retrieval INFO 4300 / CS 4300! Retrieval models Older models» Boolean retrieval» Vector Space model Probabilistic Models» BM25» Language models Web search» Learning to Rank Search Taxonomy!
Research Article Forecasting Computer Products Sales by Integrating Ensemble Empirical Mode Decomposition and Extreme Learning Machine
Mathematical Problems in Engineering Volume 212, Article ID 83121, 15 pages doi:1.1155/212/83121 Research Article Forecasting Computer Products Sales by Integrating Ensemble Empirical Mode Decomposition
FRAUD DETECTION IN ELECTRIC POWER DISTRIBUTION NETWORKS USING AN ANN-BASED KNOWLEDGE-DISCOVERY PROCESS
FRAUD DETECTION IN ELECTRIC POWER DISTRIBUTION NETWORKS USING AN ANN-BASED KNOWLEDGE-DISCOVERY PROCESS Breno C. Costa, Bruno. L. A. Alberto, André M. Portela, W. Maduro, Esdras O. Eler PDITec, Belo Horizonte,
Comparison of Non-linear Dimensionality Reduction Techniques for Classification with Gene Expression Microarray Data
CMPE 59H Comparison of Non-linear Dimensionality Reduction Techniques for Classification with Gene Expression Microarray Data Term Project Report Fatma Güney, Kübra Kalkan 1/15/2013 Keywords: Non-linear
Sub-class Error-Correcting Output Codes
Sub-class Error-Correcting Output Codes Sergio Escalera, Oriol Pujol and Petia Radeva Computer Vision Center, Campus UAB, Edifici O, 08193, Bellaterra, Spain. Dept. Matemàtica Aplicada i Anàlisi, Universitat
Scalable Developments for Big Data Analytics in Remote Sensing
Scalable Developments for Big Data Analytics in Remote Sensing Federated Systems and Data Division Research Group High Productivity Data Processing Dr.-Ing. Morris Riedel et al. Research Group Leader,
Analecta Vol. 8, No. 2 ISSN 2064-7964
EXPERIMENTAL APPLICATIONS OF ARTIFICIAL NEURAL NETWORKS IN ENGINEERING PROCESSING SYSTEM S. Dadvandipour Institute of Information Engineering, University of Miskolc, Egyetemváros, 3515, Miskolc, Hungary,
Hong Kong Stock Index Forecasting
Hong Kong Stock Index Forecasting Tong Fu Shuo Chen Chuanqi Wei [email protected] [email protected] [email protected] Abstract Prediction of the movement of stock market is a long-time attractive topic
