Group recommender systems: exploring underlying information of the user space

Size: px
Start display at page:

Download "Group recommender systems: exploring underlying information of the user space"

Transcription

1 2013 BRICS Congress on 1st Computational BRICS Countries Intelligence Congress & on 11th Computational Brazilian Congress Intelligence on Computational Intelligence Group recommender systems: exploring underlying information of the user space Pedro Rougemont Filipe Braida do Carmo br Marden Braga Pasinato Carlos Eduardo Mello UFRRJ Geraldo Zimbrão Abstract This work proposes a new methodology for the Group Recommendation problem. In this approach we choose the Most Representative User (MRU) as the group medoid in a user space projection, and then generate the recommendation list based on his preferences. We evaluate our proposal by using the well-known dataset Movielens. We have taken two different measures so as to evaluate the group recommender strategies. The obtained results seem promising and our strategy has shown an empirical robustness compared with the baselines in the literature. Keywords group recommender systems; space transformation; singular value decomposition; social choice theory I. INTRODUCTION Recommender Systems arise as a powerful tool on the Web, aiming primarily at e-commerce applications. It has been attracting attention from both the academia and industry due to its capability to leverage cross-sales and to improve customer satisfaction and loyalty [1]. The social aspect of the recommendation has been disregarded by the mainstream algorithms which rely heavily on Machine Learning (ML) and Datamining (DM) techniques [2]. In response to that, Social Recommendation and Group Recommendation emerged as new areas of investigation in the academia. Social Recommendation tries to incorporate the social network of users in the single-user recommendation [3]. The goal of Group Recommendation, in the other hand, is to recommend items for groups of users instead of a single individual [4]. Some activities have an inherent plural context associated to them such as watching a movie, travelling, choosing a restaurant and many others. These kinds of activities bring up the challenge of conciliating different personal preferences into a common choice. Therefore, traditional recommender algorithms cannot address this type of recommendation due to its individual properties. Suppose that a group of people are in a room listening to the same songs. In order to make this experience more pleasing, one could propose a playlist that best suits all users simultaneously. Suppose also that the preferences of each user are known beforehand in the format of ratings. In this scenario, one question emerges: is it possible to choose a playlist that meets all the users preferences? Group Recommender systems try to respond this question by decomposing the problem into four major steps: Preference Elicitation, Preference Aggregation, Recommendation and Negotiation. The first step, Preference Elicitation, consists in acquiring the several individual users ratings towards their consumed items, e.g., songs, movies, places. This can be performed explicitly, when users manually give ratings by assigning reviews to items, or one could implicitly infer the user ratings according to the time he spent in the webpage, how many times he listened to the song, and so forward. The second step, Preference Aggregation, performs the transformation from individual preferences to group preferences. It estimates a Group Utility Function (GUF) that measures the item s utility value to the group which will be used as input in the Recommendation step. This can be done in several ways as described in [5]. The Recommendation step basically takes the GUF output for every item and decides which items should be included in the limited recommendation list. The TOP-K criterion is the simplest and most used implementation for this step [6]. The last step, Negotiation, is optional for most Group Recommender Systems. After presenting the recommended items to the group, users may disagree about the result and interact to each other in order to achieve a common solution. This step gives them manners to interact, haggle and decide about the acceptance or rejection of some or all items. More extensive research over this theme can be found in the literature of Decision Support Systems (DSS) [7]. This work proposes a new methodology to tackle the Preference Aggregation step based on the Most Representative User (MRU). All users are mapped into a low-dimension feature space then the user closest to all others (medoid of the user cluster) is computed and elected as the MRU. The MRU preferences are used as the group preference in order to compute the recommendation. This paper is organized in 5 sections. In the second section we describe the related works and the baseline strategies. In the third section, we explain in details our proposal and we outline its advantages. In the fourth section, we describe our experiments and we present the results in the fifth section. At last, we present our conclusions and outline future works. II. RELATED WORK A. Individual Recommender Systems Collaborative Filtering (CF) algorithms have emerged as an effective way of implementing traditional, i.e., individual Recommender Systems, in contrast with /13 $ IEEE DOI /BRICS-CCI.&.CBIC /BRICS-CCI-CBIC

2 Content-based algorithms. The CF algorithms rely solely on the similarities between users to compute the recommendation, disregarding the contextual information about the user and the item. They can be classified into two major categories: memory-based or model-based. The first can also be called heuristic-based since it computes the ratings predictions using some heuristic. The later tries to create a model that simulates the user behavior in giving ratings. Matrix Factorization (MF) and Machine Learning (ML) algorithms have been extensively explored to this task, using the known ratings as training set [2]. The ratings are stored in a matrix called user-item matrix, where lines represents users and columns represents items. Thus, the element r ij is the rating assigned by user i to item j according to the example in TABLE 1. In many applications, it is common to have a large number of users and items, but a small number of evaluations. Therefore, the user-item matrix is usually very sparse, i.e., with many unfilled positions. In spite of that, CF methods have shown a good performance in predicting those unfilled positions [2]. TABLE 1 WAITING ROOM EXAMPLE: GROUP PREFERENCES i 1 i 2 i 3 i 4 i 5 i 6 i 7 i 8 u u u u The Singular Value Decomposition (SVD) is a particular MF technique that excelled among the others CF algorithms. Besides the good prediction results, SVDbased algorithms offer a way to map users and items into a customized feature space. The number of dimensions in this feature space can be arbitrarily low and each dimension is a latent variable that can assume several interpretations. This can be very useful in the task of clustering users and items, because it provides a straightforward way to compute the distance between them which the distance between the points in the lowdimension feature space [8]. B. Group Recommender Systems Group Recommender System (GRS) has its foundations on Social Choice Theory (SCT) [9] in contrast with traditional Recommender System (RS), since group behavior towards a recommendation have social implications that cannot be taken into account by traditional RS, due to its individualistic framework. SCT doesn t address the whole set of matters discussed in GRS, but provides valuable results and approaches to support the GRS research. In Masthoff first studies [10], an experiment was conducted exposing volunteers to a group of three fictitious users which had their preferences defined for ten movieclips. The participants were asked which movieclips should be recommended to this group, with the constraint that only a subset of them would be watched - starting from one to seven. Her conclusions were that the human decision follows some common patterns or strategies to solve this task, being the three most frequent ones: Average: The group preference is computed, for each item, by taking the simple mean of users preferences. Afterwards, the RS sorts the set of items in descendant order and recommends the TOP-K items. For example, considering TABLE 1, the first item in the group recommendation list would be i 7, and i 8 would appear on top of i 6. Least Misery: The group preference is computed, for each item, by taking the highest of the lowest scores. The motivation to this criterion is to penalize items that leave one user or more in a situation of misery. In our example, i 4 would precede i 8 even though the second one has a better average, since i 4 lowest score is higher than i 8 s. Average without Misery: Same as Average, except that items with a score lower than certain threshold are disregarded. For example, suppose in TABLE 1, the threshold is equals 1, so i 8 wouldn t be eligible for recommendation. Besides these three strategies, there are many other preference aggregation strategies suggested in literature, such as: Borda Count, Most Pleasure, Spearman Footrule, and many others found in [10]. The user preferences aggregation is not the only approach to this step, there are other documented alternatives such as the ones describe in [5]: To create a user profile representing the group, for which a recommendation will be made; To aggregate individual recommendations C. Measuring Recommendation Quality After recommending the items to the group, one needs to measure the recommendation performance, i.e., if the recommended item correspond to the group s preference. There are many measures that can be applied to this task. However, they are often based in comparing their ability to minimize a mutual distance between all lists of users preferences. Several of these measures and distance definitions are explained in [11]. In this section, we describe two of them: the Kendall Tau and the ndcg. The Kendall Tau coefficient () computes a measure of correlation between two lists. This indicates how distant the lists are to each other in terms of position shifts. A high score given by the Kendall Tau coefficient means that it is required few position shifts in order to match the two lists. To find the optimal solution in a set of lists, known as Kemeny optimal aggregation, one would have to maximize simultaneously for each distinct user preferences (l) with the recommendation list (r) under a set of items (I), as follows: where: = (n c n d ) / (½ n (n-1)) (1) n c = (i, j) in I: i < j, l i < l j and r i < r j n d = (i, j) in I: i < j, l i < l j but r i > r j Computing the Kemeny optimal is proven to be NPhard [5] and several heuristics try to obtain a good approximation of it. A cheaper alternative is to minimize Spearman Footrule distance or one of its variations. In 541

3 [12], this approach is chosen as a strategy for Group Recommendation. However, this classical measure lacks some properties pertinent to a good recommender. It is incapable of distinguishing ordering disagreement between the top and the bottom of the recommendation list, punishing both with the same emphasis. It is clear that the main interest of the GRS is to guarantee good matches between individual preferences and the first K items in the recommendation list, since the remaining will be discarded. A metric capable of addressing this issue is the Normalized Cumulative Discounted Gain (ndcg) which uses a scoring function that decays with the position of the item in the recommendation list [13]. Many works in GRS makes use of ndcg to measure the quality of strategies [12] [6]. Besides GRS, this it is widely used in Search Engines research. In this paper, both Kendall Tau and ndcg were considered. III. PROPOSED GROUP RECOMMENDATION The main assumption of the proposed group recommendation strategy lies in searching for patterns that could represent the group as a whole. The idea consists in creating a sort of stereotype for the entire group: the Most Representative User (MRU) or the medoid user. Then one can recommend items to this user that represents the complete group. In order to find the MRU, or the medoid user, it is plausible to assume that this user should be the most similar user to all others, in the sense that, his/her preferences should be the most general for the entire group. Thus, one should look for the user who is, according to some distance measure, in the densest local region. In order to implement this proposal, the user-item matrix A, containing the ratings, is decomposed by the SVD factorization from which one obtains the matrices U, S, and V T. The matrix U represents the users in a features space of latent variables [14]. This linear algebra operation allows us to build a new space of features where the user projection can be analyzed. A NxM = U NN S NM V T MM = Σσ i U i V i (4) In the equation (4), matrix A is factorized by the SVD algorithm into a product of two orthogonal matrices U and V T with a diagonal matrix S. The matrix U carries information about the rows in A, and therefore the most significant columns of U, namely U f, works as a latent user space [15]. Over U f, it is possible to calculate the user that minimizes the Euclidian distance (or some other distance) over all others and use his preferences as the recommendation list. To illustrate a scenario where this Preference Aggregation technique could improve the recommender performance, consider the Kendall Tau coefficient. The performance of the proposed approach will be compared to Average strategy in the toy example on TABLE 2. The reader may note that all columns means are equal to 3.5, thus the Average strategy will behave like the Random strategy. An example of a recommendation list given by this strategy could be the list l avg = {i 1, i 2, i 3, i 4, i 5, i 6, i 7, i 8 }. The MRU computed for this example will be user u 2, whose preferences are represented by l mru = {i 5, i 8, i 6, i 1, i 2, i 4, i 7, i 3 }. Thus, the average Kendall Tau coefficient for each strategies are (l avg ) ~ and (l mru ) ~ , where equal to 1 would be the perfect hypothetical recommendation. This limit is unreachable given that users preferences are not the same. In fact, among the possible permutations of items, the l mru is the Kemeny optimal, scoring the maximum value, besides four other solutions for this example. TABLE 2 SECOND SCENARIO USER PREFERENCES i 1 i 2 i 3 i 4 i 5 i 6 i 7 i 8 u u u u IV. METHODOLOGY PROTOCOL The experiments were conducted as close as possible to the methodology described by [12] and resumed in Fig. 1. We implemented only three of the five group strategies covered in [12], in addition to the MRU described in section III. It was assumed that items already consumed by any user in the group should not be eligible for recommendation. The input data consists of a sparse user-item matrix, the public Movielens dataset containing ratings. The missing values in this matrix are fulfilled with the ratings predictions given by a traditional RS, the Regulared SVD [14]. The work proposed in [12] applies the TOP-K step to all recommendation lists before computing the ndcg. Due to the lack of ratings in common between the truncated recommendations and the test set, the execution of this step may lead to improperly high results of ndcg and insufficient data for computing the Kendall Tau coefficient. In our experiments, the TOP-K step was performed separately by intersecting each user test data. Input U = {u 1, u 2,, u n } user set I = {i 1, i 2,, i m } item set R n m sparse preferences matrix Preprocess Split R into test set Q and training set P Fill P using Collaborative Filtering Split the user base in K groups U k of same size For each U kq Separate P k and Q k, containing only ratings from u U k For each aggregation strategy S t, generate L t = S t (U k ), the list of items recommended by S t to U k Generate the ideal list L I from Q k for each u U k Compute ndcg and Kendall Tau of each L t against L I separately for each u U k Figure 1. Experiment pseudocode. 542

4 An individual Recommender System dataset was chosen, because there are few datasets available on the web for the purpose of testing Group Recommender Systems (GRS). As seen in works such as [5], [16] or [17], many authors choose to build their own system in order to test new theories and those datasets are not made available afterwards. Another problem faced by researches is that most available datasets for Group Recommendation are too domain-specific and cannot be reused in other experiments. V. RESULTS The experiments performed for this article were conducted considering the following variations in the training data: Group inner similarity o Random groups o High inner similarity groups o ¼ Outliers groups o Low inner similarity groups Group size o 4 members o 8 members o 20 members (random groups only) Item set o All items o High variance only (75 percentile) There were innumerous variations that could be taken into account, but after some experiments we selected the most promising attributes to evaluate. The group recommender strategies tested were Average, Most Representative User, Least Misery and Random. The measures ndcg and Kendall Tau coefficient were compared in terms of shape using the quartiles, mean and standard deviation of its values along several iterations of a same scenario. For random groups scenarios, Fig. 2 and TABLE 3 reveal that, in the long run, both Average and Most Representative User strategies break even in all aspects of ndcg: a mean of approximately 0.87; the same standard deviation and quartiles. Least Misery seems unable to approach them, with mean around 0.7 and Random strategy keeps the mean around 0.5. The shapes and proportions are maintained for group sizes of 4, 8 and 20. The Random groups Kendall Tau coefficient shown in TABLE 4 demonstrates that the MRU strategy was capable of obtaining the best mean in all cases. The possible reasons for that will be further discussed later at the end of this section. Figure 2. Quartiles representation of ndcg for random groups of 8 users TABLE 3 RANDOM GROUPS NDCG STATISTICS Strategy 4users 8users 20 users Average MRU Least Misery Random TABLE 4 RANDOM GROUPS KENDALL TAU STATISTICS Strategy 4 users 8 users 20 users Average MRU Least Misery Random In the next experiment, the selection of group users was conducted according to the group inner similarity, so as to have groups of high and low similarity. This selection also considers groups composed of a 75% high similarity and a 25% of outlier minority. The group sizes were of four and eight users. Items were also divided in two sets, one considering the entire set of items and other composed only by items that have a great variance over the ratings, i.e., the most polemical items in the set. TABLE 5 SECOND EXPERIMENT SCENARIOS Scenario Inner Similarity Size Item Set 1 High Inner Similarity 4 All Items 2 High Inner Similarity 4 High Variance 3 High Inner Similarity 8 All Items 4 High Inner Similarity 8 High Variance 5 25% Outlier 4 All Items 6 25% Outlier 4 High Variance 7 25% Outlier 8 All Items 8 25% Outlier 8 High Variance 9 Low Inner Similarity 4 All Items 10 Low Inner Similarity 4 High Variance 11 Low Inner Similarity 8 All Items 12 Low Inner Similarity 8 High Variance 543

5 The results obtained for ndcg are summarized in TABLE 6 for High Inner Similarity, 25% Outlier and Low Inner Similarity group formations, respectively. The impact brought by items with high variance (even rows of TABLE 6) is notorious compared to the set of all items (the previous odd rows in the same table) on the strategies Average and MRU. However, it seems that Least Misery is more resilient in this aspect, where high variance items do not significantly change its performance. Both Average and MRU perform almost identically over this measure, surpassing the others with a higher mean and lower variance in almost all cases. TABLE 6 NDCG FOR GROUPS OF HIGH INNER SIMILARITY Scenario Average MRU Least Misery Random The relation of results with Kendall Tau coefficient is presented in TABLE 7. We note here a constant advantage in MRU s mean compared to Average strategy under this measure. Both strategies carry the same variance and are overcome by Least Misery when subject to the High Variance item set. Least Misery also proves to be very stable in terms of variance in all scenarios, contrasting with the others, whose results degenerate under High Variance set. TABLE 7 KENDALL TAU FOR GROUPS OF HIGH INNER SIMILARITY Scenario Average MRU Least Misery Random 1 0,13 0,16 0,16 0,16 0,14 0,14 0 0,15 2 0,07 0,51 0,09 0,51 0,11 0,19 0,02 0,48 3 0,11 0,18 0,16 0,18 0,13 0,14 0 0,17 4 0,06 0,53 0,09 0,53 0,12 0,18 0 0,52 5 0,12 0,17 0,15 0,18 0,13 0,14 0 0,16 6 0,06 0,54 0,09 0,54 0,1 0,2 0,01 0,52 7 0,1 0,2 0,15 0,2 0,12 0,14 0 0,19 8 0,05 0,56 0,08 0,56 0,12 0,2-0,02 0,55 9 0,11 0,17 0,14 0,18 0,11 0,15-0,01 0, ,05 0,63 0,08 0,63 0,11 0,21-0,02 0, ,1 0,2 0,15 0,2 0,11 0,16-0,01 0, ,05 0,64 0,1 0,64 0,12 0,21-0,01 0,64 As previously mentioned in section II, the Kendall Tau coefficient and the ndcg are significantly different in their target measurements. With this in mind, the results presented in TABLE 6 and TABLE 7 demonstrates that the MRU strategy, compared to the baselines, is capable of delivering mean results as good as the Average strategy, but with reduced disagreement. Moreover, MRU shows improvement in the relevance of recommended items, compared to Least Misery, as ndcg points out. However, both MRU and the Average strategy present similar behavior in the set with High Variance items under the Kendall Tau coefficient. This can be explained by the nature of those heuristics, which could be classified as Consensus-based. In other words, both strategies are wired to find consensus among the users and they suffer when the set contains polemical items that cause disagreement. The Least Misery strategy is immune to this situation, since it belongs to another class of heuristic, Borderlinebased. Those heuristics establish a threshold value, according to the ratings, and choose the items that are further away from this value. Yet, there is one major problem with this kind of strategies, since users may learn how to manipulate the threshold in their favor. There are cases where even the Average strategy can be manipulated by users. In this sense, the MRU strategy has shown to be more robust than all the others considered in the experiments, but a formalized prove of this property is yet to be investigated. VI. CONCLUSION AND FUTURE WORK This work presents a new approach to the Group Recommendation problem. The Most Representative User (MRU) strategy consists in exploiting underlying information in the user space so that we can measure distance functions between users, e.g. Euclidian distance, Cosine distance, etc.. By doing so, it is possible to compute the user who has the least distance to all the others (medoid user) and use him as the stereotype of the group itself. Therefore, the group recommendations can be computed as the recommendations to the most representative user. This approach has shown good results compared with the baseline approaches in the literature. Beyond that, the MRU strategy has presented an empirical robustness to the problem of recommendation manipulation that was not verified in the other strategies. This justifies further investigation on the properties of this strategy. REFERENCES [1] J. B. Schafer, J. Konstan and J. Riedi, Recommender systems in e- commerce, in Proceedings of the 1st ACM conference on Electronic commerce, 1999, p [2] G. Adomavicius and A. Tuzhilin, Toward the next generation of recommender systems: A survey of the state-of-the-art and possible extensions, Knowledge and Data Engineering, IEEE Transactions on, vol. 17, n o 6, p , [3] I. Guy and D. Carmel, Social recommender systems, in Proceedings of the 20th international conference companion on World wide web, 2011, p [4] G. Popescu and P. Pu, Group recommender systems as a voting problem, EPFL Technical report,

6 [5] A. Jameson, More than the sum of its members: challenges for group recommender systems, in Proceedings of the working conference on Advanced visual interfaces, 2004, p [6] S. Amer-Yahia, S. B. Roy, A. Chawlat, G. Das, e C. Yu, Group recommendation: Semantics and efficiency, Proceedings of the VLDB Endowment, vol. 2, n o 1, p , [7] E. Bellucci and J. Zeleznikow, A comparative study of negotiation decision support systems, in System Sciences, 1998., Proceedings of the Thirty-First Hawaii International Conference on, 1998, vol. 1, p [8] Y. Koren, R. Bell and C. Volinsky, Matrix factorization techniques for recommender systems. [9] K. J. Arrow, Social Choice and Individual Values, Yale University, [10] J. Masthoff, Modeling a group of television viewers, in Proceedings of the Workshop Future tv, in Intelligent Tutoring Systems Conference, 2002, p [11] Rank Aggregation Methods for the Web. [Online]. Available at: [Last access: 17-abr-2013]. [12] L. Baltrunas, T. Makcinskas and F. Ricci, Group recommendations with rank aggregation and collaborative filtering, in Proceedings of the fourth ACM conference on Recommender systems, 2010, p [13] R. Kumar and S. Vassilvitskii, Generalized distances between rankings, WWW 10 Proceedings of the 19th international conference on World wide web, p , [14] A. Paterek, Improving regularized singular value decomposition for collaborative filtering, in Proceedings of KDD cup and workshop, 2007, vol. 2007, p [15] D. J. Bartholomew, M. Knott and I. Moustaki, Latent Variable Models and Factor Analysis: A Unified Approach, 3 o ed. Wiley, [16] K. McCarthy, L. McGinty, B. Smythand and M. Salamo, Social interaction in the cats group recommender, in Workshop on the social navigation and community based adaptation technologies, [17] Z. Yu, X. Zhou, Y. Hao and J. Gu, TV Program Recommendation for Multiple Viewers Based on user Profile Merging, User Modeling and User-Adapted Interaction, vol. 16, n o 1, p , jun

A Comparison of Collaborative Filtering Methods for Medication Reconciliation

A Comparison of Collaborative Filtering Methods for Medication Reconciliation A Comparison of Collaborative Filtering Methods for Medication Reconciliation Huanian Zheng, Rema Padman, Daniel B. Neill The H. John Heinz III College, Carnegie Mellon University, Pittsburgh, PA, 15213,

More information

Towards More Confident Recommendations: Improving Recommender Systems Using Filtering Approach Based on Rating Variance

Towards More Confident Recommendations: Improving Recommender Systems Using Filtering Approach Based on Rating Variance Towards More Confident Recommendations: Improving Recommender Systems Using Filtering Approach Based on Rating Variance Gediminas Adomavicius gedas@umn.edu Sreeharsha Kamireddy 2 skamir@cs.umn.edu YoungOk

More information

On the Combination of Collaborative and Item-based Filtering

On the Combination of Collaborative and Item-based Filtering On the Combination of Collaborative and Item-based Filtering Manolis Vozalis 1 and Konstantinos G. Margaritis 1 University of Macedonia, Dept. of Applied Informatics Parallel Distributed Processing Laboratory

More information

Rank Aggregation and Belief Revision Dynamics

Rank Aggregation and Belief Revision Dynamics Rank Aggregation and Belief Revision Dynamics Igor Volzhanin (ivolzh01@mail.bbk.ac.uk), Ulrike Hahn (u.hahn@bbk.ac.uk), Dell Zhang (dell.z@ieee.org) Birkbeck, University of London London, WC1E 7HX UK Stephan

More information

Overcoming Accuracy-Diversity Tradeoff in Recommender Systems: A Variance-Based Approach

Overcoming Accuracy-Diversity Tradeoff in Recommender Systems: A Variance-Based Approach Overcoming Accuracy-Diversity Tradeoff in Recommender Systems: A Variance-Based Approach Gediminas Adomavicius gedas@umn.edu YoungOk Kwon ykwon@csom.umn.edu Department of Information and Decision Sciences

More information

Identification of Tissue Independent Cancer Driver Genes

Identification of Tissue Independent Cancer Driver Genes Identification of Tissue Independent Cancer Driver Genes Alexandros Manolakos, Idoia Ochoa, Kartik Venkat Supervisor: Olivier Gevaert Abstract Identification of genomic patterns in tumors is an important

More information

Chapter 1. Introduction

Chapter 1. Introduction Chapter 1 Introduction 1.1 Motivation and Goals The increasing availability and decreasing cost of high-throughput (HT) technologies coupled with the availability of computational tools and data form a

More information

Exploiting Implicit Item Relationships for Recommender Systems

Exploiting Implicit Item Relationships for Recommender Systems Exploiting Implicit Item Relationships for Recommender Systems Zhu Sun, Guibing Guo, and Jie Zhang School of Computer Engineering, Nanyang Technological University, Singapore School of Information Systems,

More information

CHAPTER 3 RESEARCH METHODOLOGY

CHAPTER 3 RESEARCH METHODOLOGY CHAPTER 3 RESEARCH METHODOLOGY 3.1 Introduction 3.1 Methodology 3.1.1 Research Design 3.1. Research Framework Design 3.1.3 Research Instrument 3.1.4 Validity of Questionnaire 3.1.5 Statistical Measurement

More information

ITEM-LEVEL TURST-BASED COLLABORATIVE FILTERING FOR RECOMMENDER SYSTEMS

ITEM-LEVEL TURST-BASED COLLABORATIVE FILTERING FOR RECOMMENDER SYSTEMS ITEM-LEVEL TURST-BASED COLLABORATIVE FILTERING FOR RECOMMENDER SYSTEMS Te- Min Chag Department of Information Management, National Sun Yat-sen University temin@mail.nsysu.edu.tw Wen- Feng Hsiao Department

More information

Stability of Collaborative Filtering Recommendation Algorithms 1

Stability of Collaborative Filtering Recommendation Algorithms 1 Stability of Collaborative Filtering Recommendation Algorithms GEDIMINAS ADOMAVICIUS, University of Minnesota JINGJING ZHANG, University of Minnesota The paper explores stability as a new measure of recommender

More information

Technical Specifications

Technical Specifications Technical Specifications In order to provide summary information across a set of exercises, all tests must employ some form of scoring models. The most familiar of these scoring models is the one typically

More information

Using Perceptual Grouping for Object Group Selection

Using Perceptual Grouping for Object Group Selection Using Perceptual Grouping for Object Group Selection Hoda Dehmeshki Department of Computer Science and Engineering, York University, 4700 Keele Street Toronto, Ontario, M3J 1P3 Canada hoda@cs.yorku.ca

More information

Chapter 14: More Powerful Statistical Methods

Chapter 14: More Powerful Statistical Methods Chapter 14: More Powerful Statistical Methods Most questions will be on correlation and regression analysis, but I would like you to know just basically what cluster analysis, factor analysis, and conjoint

More information

An Efficient Service Rating Forecasting by Exploring Social Mobile User s Geographical Locations

An Efficient Service Rating Forecasting by Exploring Social Mobile User s Geographical Locations An Efficient Service Rating Forecasting by Exploring Social Mobile User s Geographical Locations P. Sarika 1, Dr. A.P. Siva Kumar 2 P.G. Student, Department of CSE, JNTUA College of Engineering, Ananthapuramu,

More information

COST EFFECTIVENESS STATISTIC: A PROPOSAL TO TAKE INTO ACCOUNT THE PATIENT STRATIFICATION FACTORS. C. D'Urso, IEEE senior member

COST EFFECTIVENESS STATISTIC: A PROPOSAL TO TAKE INTO ACCOUNT THE PATIENT STRATIFICATION FACTORS. C. D'Urso, IEEE senior member COST EFFECTIVENESS STATISTIC: A PROPOSAL TO TAKE INTO ACCOUNT THE PATIENT STRATIFICATION FACTORS ABSTRACT C. D'Urso, IEEE senior member The solution here proposed can be used to conduct economic analysis

More information

De-Biasing User Preference Ratings in Recommender Systems

De-Biasing User Preference Ratings in Recommender Systems Gediminas Adomavicius University of Minnesota Minneapolis, MN gedas@umn.edu De-Biasing User Preference Ratings in Recommender Systems Jesse Bockstedt University of Arizona Tucson, AZ bockstedt@email.arizona.edu

More information

Recognizing Scenes by Simulating Implied Social Interaction Networks

Recognizing Scenes by Simulating Implied Social Interaction Networks Recognizing Scenes by Simulating Implied Social Interaction Networks MaryAnne Fields and Craig Lennon Army Research Laboratory, Aberdeen, MD, USA Christian Lebiere and Michael Martin Carnegie Mellon University,

More information

The Role of Emotions in Context-aware Recommendation

The Role of Emotions in Context-aware Recommendation The Role of Emotions in Context-aware Recommendation Yong Zheng, Robin Burke, Bamshad Mobasher Center for Web Intelligence School of Computing, DePaul University Chicago, Illinois, USA {yzheng8, rburke,

More information

The Long Tail of Recommender Systems and How to Leverage It

The Long Tail of Recommender Systems and How to Leverage It The Long Tail of Recommender Systems and How to Leverage It Yoon-Joo Park Stern School of Business, New York University ypark@stern.nyu.edu Alexander Tuzhilin Stern School of Business, New York University

More information

Unit 1 Exploring and Understanding Data

Unit 1 Exploring and Understanding Data Unit 1 Exploring and Understanding Data Area Principle Bar Chart Boxplot Conditional Distribution Dotplot Empirical Rule Five Number Summary Frequency Distribution Frequency Polygon Histogram Interquartile

More information

WDHS Curriculum Map Probability and Statistics. What is Statistics and how does it relate to you?

WDHS Curriculum Map Probability and Statistics. What is Statistics and how does it relate to you? WDHS Curriculum Map Probability and Statistics Time Interval/ Unit 1: Introduction to Statistics 1.1-1.3 2 weeks S-IC-1: Understand statistics as a process for making inferences about population parameters

More information

Information-Theoretic Outlier Detection For Large_Scale Categorical Data

Information-Theoretic Outlier Detection For Large_Scale Categorical Data www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 3 Issue 11 November, 2014 Page No. 9178-9182 Information-Theoretic Outlier Detection For Large_Scale Categorical

More information

CSE 258 Lecture 1.5. Web Mining and Recommender Systems. Supervised learning Regression

CSE 258 Lecture 1.5. Web Mining and Recommender Systems. Supervised learning Regression CSE 258 Lecture 1.5 Web Mining and Recommender Systems Supervised learning Regression What is supervised learning? Supervised learning is the process of trying to infer from labeled data the underlying

More information

How to Create Better Performing Bayesian Networks: A Heuristic Approach for Variable Selection

How to Create Better Performing Bayesian Networks: A Heuristic Approach for Variable Selection How to Create Better Performing Bayesian Networks: A Heuristic Approach for Variable Selection Esma Nur Cinicioglu * and Gülseren Büyükuğur Istanbul University, School of Business, Quantitative Methods

More information

Linear Regression Analysis

Linear Regression Analysis Linear Regression Analysis WILEY SERIES IN PROBABILITY AND STATISTICS Established by WALTER A. SHEWHART and SAMUEL S. WILKS Editors: David J. Balding, Peter Bloomfield, Noel A. C. Cressie, Nicholas I.

More information

Clustering mass spectrometry data using order statistics

Clustering mass spectrometry data using order statistics Proteomics 2003, 3, 1687 1691 DOI 10.1002/pmic.200300517 1687 Douglas J. Slotta 1 Lenwood S. Heath 1 Naren Ramakrishnan 1 Rich Helm 2 Malcolm Potts 3 1 Department of Computer Science 2 Department of Wood

More information

Cognitive Neuroscience History of Neural Networks in Artificial Intelligence The concept of neural network in artificial intelligence

Cognitive Neuroscience History of Neural Networks in Artificial Intelligence The concept of neural network in artificial intelligence Cognitive Neuroscience History of Neural Networks in Artificial Intelligence The concept of neural network in artificial intelligence To understand the network paradigm also requires examining the history

More information

An Escalation Model of Consciousness

An Escalation Model of Consciousness Bailey!1 Ben Bailey Current Issues in Cognitive Science Mark Feinstein 2015-12-18 An Escalation Model of Consciousness Introduction The idea of consciousness has plagued humanity since its inception. Humans

More information

Analysis and Interpretation of Data Part 1

Analysis and Interpretation of Data Part 1 Analysis and Interpretation of Data Part 1 DATA ANALYSIS: PRELIMINARY STEPS 1. Editing Field Edit Completeness Legibility Comprehensibility Consistency Uniformity Central Office Edit 2. Coding Specifying

More information

A NOVEL VARIABLE SELECTION METHOD BASED ON FREQUENT PATTERN TREE FOR REAL-TIME TRAFFIC ACCIDENT RISK PREDICTION

A NOVEL VARIABLE SELECTION METHOD BASED ON FREQUENT PATTERN TREE FOR REAL-TIME TRAFFIC ACCIDENT RISK PREDICTION OPT-i An International Conference on Engineering and Applied Sciences Optimization M. Papadrakakis, M.G. Karlaftis, N.D. Lagaros (eds.) Kos Island, Greece, 4-6 June 2014 A NOVEL VARIABLE SELECTION METHOD

More information

How Does Analysis of Competing Hypotheses (ACH) Improve Intelligence Analysis?

How Does Analysis of Competing Hypotheses (ACH) Improve Intelligence Analysis? How Does Analysis of Competing Hypotheses (ACH) Improve Intelligence Analysis? Richards J. Heuer, Jr. Version 1.2, October 16, 2005 This document is from a collection of works by Richards J. Heuer, Jr.

More information

CSE 255 Assignment 9

CSE 255 Assignment 9 CSE 255 Assignment 9 Alexander Asplund, William Fedus September 25, 2015 1 Introduction In this paper we train a logistic regression function for two forms of link prediction among a set of 244 suspected

More information

Recommender Systems in Computer Science and Information Systems - a Landscape of Research

Recommender Systems in Computer Science and Information Systems - a Landscape of Research Recommender Systems in Computer Science and Information Systems - a Landscape of Research Dietmar Jannach 1, Markus Zanker 2, Mouzhi Ge 3, and Marian Gröning 1 1 TU Dortmund, 44227 Dortmund, Germany {Dietmar.Jannach,

More information

Pilot Study: Clinical Trial Task Ontology Development. A prototype ontology of common participant-oriented clinical research tasks and

Pilot Study: Clinical Trial Task Ontology Development. A prototype ontology of common participant-oriented clinical research tasks and Pilot Study: Clinical Trial Task Ontology Development Introduction A prototype ontology of common participant-oriented clinical research tasks and events was developed using a multi-step process as summarized

More information

An Empirical Study of Process Conformance

An Empirical Study of Process Conformance An Empirical Study of Process Conformance Sivert Sørumgård 1 Norwegian University of Science and Technology 3 December 1996 Abstract An experiment was carried out at the Norwegian University of Science

More information

Modeling Sentiment with Ridge Regression

Modeling Sentiment with Ridge Regression Modeling Sentiment with Ridge Regression Luke Segars 2/20/2012 The goal of this project was to generate a linear sentiment model for classifying Amazon book reviews according to their star rank. More generally,

More information

MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES OBJECTIVES

MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES OBJECTIVES 24 MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES In the previous chapter, simple linear regression was used when you have one independent variable and one dependent variable. This chapter

More information

TITLE: A Data-Driven Approach to Patient Risk Stratification for Acute Respiratory Distress Syndrome (ARDS)

TITLE: A Data-Driven Approach to Patient Risk Stratification for Acute Respiratory Distress Syndrome (ARDS) TITLE: A Data-Driven Approach to Patient Risk Stratification for Acute Respiratory Distress Syndrome (ARDS) AUTHORS: Tejas Prahlad INTRODUCTION Acute Respiratory Distress Syndrome (ARDS) is a condition

More information

A Scoring Policy for Simulated Soccer Agents Using Reinforcement Learning

A Scoring Policy for Simulated Soccer Agents Using Reinforcement Learning A Scoring Policy for Simulated Soccer Agents Using Reinforcement Learning Azam Rabiee Computer Science and Engineering Isfahan University, Isfahan, Iran azamrabiei@yahoo.com Nasser Ghasem-Aghaee Computer

More information

Group Recommender Systems: Combining Individual Models

Group Recommender Systems: Combining Individual Models Chapter 21 Group Recommender Systems: Combining Individual Models Judith Masthoff Abstract This chapter shows how a system can recommend to a group of users by aggregating information from individual user

More information

Sawtooth Software. The Number of Levels Effect in Conjoint: Where Does It Come From and Can It Be Eliminated? RESEARCH PAPER SERIES

Sawtooth Software. The Number of Levels Effect in Conjoint: Where Does It Come From and Can It Be Eliminated? RESEARCH PAPER SERIES Sawtooth Software RESEARCH PAPER SERIES The Number of Levels Effect in Conjoint: Where Does It Come From and Can It Be Eliminated? Dick Wittink, Yale University Joel Huber, Duke University Peter Zandan,

More information

Chapter 4 DESIGN OF EXPERIMENTS

Chapter 4 DESIGN OF EXPERIMENTS Chapter 4 DESIGN OF EXPERIMENTS 4.1 STRATEGY OF EXPERIMENTATION Experimentation is an integral part of any human investigation, be it engineering, agriculture, medicine or industry. An experiment can be

More information

Convergence Principles: Information in the Answer

Convergence Principles: Information in the Answer Convergence Principles: Information in the Answer Sets of Some Multiple-Choice Intelligence Tests A. P. White and J. E. Zammarelli University of Durham It is hypothesized that some common multiplechoice

More information

Data Mining. Outlier detection. Hamid Beigy. Sharif University of Technology. Fall 1395

Data Mining. Outlier detection. Hamid Beigy. Sharif University of Technology. Fall 1395 Data Mining Outlier detection Hamid Beigy Sharif University of Technology Fall 1395 Hamid Beigy (Sharif University of Technology) Data Mining Fall 1395 1 / 17 Table of contents 1 Introduction 2 Outlier

More information

Statistics and Probability

Statistics and Probability Statistics and a single count or measurement variable. S.ID.1: Represent data with plots on the real number line (dot plots, histograms, and box plots). S.ID.2: Use statistics appropriate to the shape

More information

11/18/2013. Correlational Research. Correlational Designs. Why Use a Correlational Design? CORRELATIONAL RESEARCH STUDIES

11/18/2013. Correlational Research. Correlational Designs. Why Use a Correlational Design? CORRELATIONAL RESEARCH STUDIES Correlational Research Correlational Designs Correlational research is used to describe the relationship between two or more naturally occurring variables. Is age related to political conservativism? Are

More information

Dynamic Control Models as State Abstractions

Dynamic Control Models as State Abstractions University of Massachusetts Amherst From the SelectedWorks of Roderic Grupen 998 Dynamic Control Models as State Abstractions Jefferson A. Coelho Roderic Grupen, University of Massachusetts - Amherst Available

More information

Formulating Emotion Perception as a Probabilistic Model with Application to Categorical Emotion Classification

Formulating Emotion Perception as a Probabilistic Model with Application to Categorical Emotion Classification Formulating Emotion Perception as a Probabilistic Model with Application to Categorical Emotion Classification Reza Lotfian and Carlos Busso Multimodal Signal Processing (MSP) lab The University of Texas

More information

Multi-level approaches to understanding and preventing obesity: analytical challenges and new directions

Multi-level approaches to understanding and preventing obesity: analytical challenges and new directions Multi-level approaches to understanding and preventing obesity: analytical challenges and new directions Ana V. Diez Roux MD PhD Center for Integrative Approaches to Health Disparities University of Michigan

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 5 Issue 1, Jan Feb 2017

International Journal of Computer Science Trends and Technology (IJCST) Volume 5 Issue 1, Jan Feb 2017 RESEARCH ARTICLE Classification of Cancer Dataset in Data Mining Algorithms Using R Tool P.Dhivyapriya [1], Dr.S.Sivakumar [2] Research Scholar [1], Assistant professor [2] Department of Computer Science

More information

Results & Statistics: Description and Correlation. I. Scales of Measurement A Review

Results & Statistics: Description and Correlation. I. Scales of Measurement A Review Results & Statistics: Description and Correlation The description and presentation of results involves a number of topics. These include scales of measurement, descriptive statistics used to summarize

More information

PCA Enhanced Kalman Filter for ECG Denoising

PCA Enhanced Kalman Filter for ECG Denoising IOSR Journal of Electronics & Communication Engineering (IOSR-JECE) ISSN(e) : 2278-1684 ISSN(p) : 2320-334X, PP 06-13 www.iosrjournals.org PCA Enhanced Kalman Filter for ECG Denoising Febina Ikbal 1, Prof.M.Mathurakani

More information

Marriage Matching with Correlated Preferences

Marriage Matching with Correlated Preferences Marriage Matching with Correlated Preferences Onur B. Celik Department of Economics University of Connecticut and Vicki Knoblauch Department of Economics University of Connecticut Abstract Authors of experimental,

More information

CHAPTER 3 METHOD AND PROCEDURE

CHAPTER 3 METHOD AND PROCEDURE CHAPTER 3 METHOD AND PROCEDURE Previous chapter namely Review of the Literature was concerned with the review of the research studies conducted in the field of teacher education, with special reference

More information

Introduction to Machine Learning. Katherine Heller Deep Learning Summer School 2018

Introduction to Machine Learning. Katherine Heller Deep Learning Summer School 2018 Introduction to Machine Learning Katherine Heller Deep Learning Summer School 2018 Outline Kinds of machine learning Linear regression Regularization Bayesian methods Logistic Regression Why we do this

More information

Improved Intelligent Classification Technique Based On Support Vector Machines

Improved Intelligent Classification Technique Based On Support Vector Machines Improved Intelligent Classification Technique Based On Support Vector Machines V.Vani Asst.Professor,Department of Computer Science,JJ College of Arts and Science,Pudukkottai. Abstract:An abnormal growth

More information

A Cooperative Multiagent Architecture for Turkish Sign Tutors

A Cooperative Multiagent Architecture for Turkish Sign Tutors A Cooperative Multiagent Architecture for Turkish Sign Tutors İlker Yıldırım Department of Computer Engineering Boğaziçi University Bebek, 34342, Istanbul, Turkey ilker.yildirim@boun.edu.tr 1 Introduction

More information

Answers to end of chapter questions

Answers to end of chapter questions Answers to end of chapter questions Chapter 1 What are the three most important characteristics of QCA as a method of data analysis? QCA is (1) systematic, (2) flexible, and (3) it reduces data. What are

More information

Selection and Combination of Markers for Prediction

Selection and Combination of Markers for Prediction Selection and Combination of Markers for Prediction NACC Data and Methods Meeting September, 2010 Baojiang Chen, PhD Sarah Monsell, MS Xiao-Hua Andrew Zhou, PhD Overview 1. Research motivation 2. Describe

More information

Reveal Relationships in Categorical Data

Reveal Relationships in Categorical Data SPSS Categories 15.0 Specifications Reveal Relationships in Categorical Data Unleash the full potential of your data through perceptual mapping, optimal scaling, preference scaling, and dimension reduction

More information

SUPPLEMENTARY INFORMATION. Table 1 Patient characteristics Preoperative. language testing

SUPPLEMENTARY INFORMATION. Table 1 Patient characteristics Preoperative. language testing Categorical Speech Representation in the Human Superior Temporal Gyrus Edward F. Chang, Jochem W. Rieger, Keith D. Johnson, Mitchel S. Berger, Nicholas M. Barbaro, Robert T. Knight SUPPLEMENTARY INFORMATION

More information

Chapter 11. Experimental Design: One-Way Independent Samples Design

Chapter 11. Experimental Design: One-Way Independent Samples Design 11-1 Chapter 11. Experimental Design: One-Way Independent Samples Design Advantages and Limitations Comparing Two Groups Comparing t Test to ANOVA Independent Samples t Test Independent Samples ANOVA Comparing

More information

Reliability of Ordination Analyses

Reliability of Ordination Analyses Reliability of Ordination Analyses Objectives: Discuss Reliability Define Consistency and Accuracy Discuss Validation Methods Opening Thoughts Inference Space: What is it? Inference space can be defined

More information

TWO HANDED SIGN LANGUAGE RECOGNITION SYSTEM USING IMAGE PROCESSING

TWO HANDED SIGN LANGUAGE RECOGNITION SYSTEM USING IMAGE PROCESSING 134 TWO HANDED SIGN LANGUAGE RECOGNITION SYSTEM USING IMAGE PROCESSING H.F.S.M.Fonseka 1, J.T.Jonathan 2, P.Sabeshan 3 and M.B.Dissanayaka 4 1 Department of Electrical And Electronic Engineering, Faculty

More information

MRI Image Processing Operations for Brain Tumor Detection

MRI Image Processing Operations for Brain Tumor Detection MRI Image Processing Operations for Brain Tumor Detection Prof. M.M. Bulhe 1, Shubhashini Pathak 2, Karan Parekh 3, Abhishek Jha 4 1Assistant Professor, Dept. of Electronics and Telecommunications Engineering,

More information

Statistics 571: Statistical Methods Summer 2003 Final Exam Ramón V. León

Statistics 571: Statistical Methods Summer 2003 Final Exam Ramón V. León Name: Statistics 571: Statistical Methods Summer 2003 Final Exam Ramón V. León This exam is closed-book and closed-notes. However, you can use up to twenty pages of personal notes as an aid in answering

More information

Machine Learning to Inform Breast Cancer Post-Recovery Surveillance

Machine Learning to Inform Breast Cancer Post-Recovery Surveillance Machine Learning to Inform Breast Cancer Post-Recovery Surveillance Final Project Report CS 229 Autumn 2017 Category: Life Sciences Maxwell Allman (mallman) Lin Fan (linfan) Jamie Kang (kangjh) 1 Introduction

More information

Mapping the mind. Submitted by: Fumiaki Katagiri Ivelisse Lazzarini Florence Singer Shai Shen-Orr

Mapping the mind. Submitted by: Fumiaki Katagiri Ivelisse Lazzarini Florence Singer Shai Shen-Orr Mapping the mind New England Complex Systems Institute One-Week Intensive Course: Complex Physical, Biological and Social Systems MIT, January 6-10, 2003 Supervisor: Prof. Yaneer Bar-Yam Submitted by:

More information

Discovering Meaningful Cut-points to Predict High HbA1c Variation

Discovering Meaningful Cut-points to Predict High HbA1c Variation Proceedings of the 7th INFORMS Workshop on Data Mining and Health Informatics (DM-HI 202) H. Yang, D. Zeng, O. E. Kundakcioglu, eds. Discovering Meaningful Cut-points to Predict High HbAc Variation Si-Chi

More information

Understanding user preferences and goals in recommender systems

Understanding user preferences and goals in recommender systems Understanding user preferences and goals in recommender systems Martijn Willemsen Human-Technology Interaction EnCHIReS Workshop ACM EICS 26 June 2017 Netflix tradeoffs popularity, diversity and accuracy

More information

SAMPLING ERROI~ IN THE INTEGRATED sysrem FOR SURVEY ANALYSIS (ISSA)

SAMPLING ERROI~ IN THE INTEGRATED sysrem FOR SURVEY ANALYSIS (ISSA) SAMPLING ERROI~ IN THE INTEGRATED sysrem FOR SURVEY ANALYSIS (ISSA) Guillermo Rojas, Alfredo Aliaga, Macro International 8850 Stanford Boulevard Suite 4000, Columbia, MD 21045 I-INTRODUCTION. This paper

More information

Spatiotemporal clustering of synchronized bursting events in neuronal networks

Spatiotemporal clustering of synchronized bursting events in neuronal networks Spatiotemporal clustering of synchronized bursting events in neuronal networks Uri Barkan a David Horn a,1 a School of Physics and Astronomy, Tel Aviv University, Tel Aviv 69978, Israel Abstract in vitro

More information

Test-Driven Development

Test-Driven Development On the Influence of Test-Driven Development on Software Design by SzeChernTan School of Informatics University of Edinburgh 12 February 2009 Agenda Introduction Overview of paper Experimental design Results

More information

Using Probabilistic Reasoning to Develop Automatically Adapting Assistive

Using Probabilistic Reasoning to Develop Automatically Adapting Assistive From: AAAI Technical Report FS-96-05. Compilation copyright 1996, AAAI (www.aaai.org). All rights reserved. Using Probabilistic Reasoning to Develop Automatically Adapting Assistive Technology Systems

More information

Chapter 11: Advanced Remedial Measures. Weighted Least Squares (WLS)

Chapter 11: Advanced Remedial Measures. Weighted Least Squares (WLS) Chapter : Advanced Remedial Measures Weighted Least Squares (WLS) When the error variance appears nonconstant, a transformation (of Y and/or X) is a quick remedy. But it may not solve the problem, or it

More information

CHAPTER 2. MEASURING AND DESCRIBING VARIABLES

CHAPTER 2. MEASURING AND DESCRIBING VARIABLES 4 Chapter 2 CHAPTER 2. MEASURING AND DESCRIBING VARIABLES 1. A. Age: name/interval; military dictatorship: value/nominal; strongly oppose: value/ ordinal; election year: name/interval; 62 percent: value/interval;

More information

Modeling Health Related Quality of Life among Cancer Patients Using an Integrated Inference System and Linear Regression

Modeling Health Related Quality of Life among Cancer Patients Using an Integrated Inference System and Linear Regression International Journal of Pharma Medicine and Biological Sciences Vol. 4, No. 1, January 2015 Modeling Health Related Quality of Life among Cancer Patients Using an Integrated Inference System and Linear

More information

AC : USABILITY EVALUATION OF A PROBLEM SOLVING ENVIRONMENT FOR AUTOMATED SYSTEM INTEGRATION EDUCA- TION USING EYE-TRACKING

AC : USABILITY EVALUATION OF A PROBLEM SOLVING ENVIRONMENT FOR AUTOMATED SYSTEM INTEGRATION EDUCA- TION USING EYE-TRACKING AC 2012-4422: USABILITY EVALUATION OF A PROBLEM SOLVING ENVIRONMENT FOR AUTOMATED SYSTEM INTEGRATION EDUCA- TION USING EYE-TRACKING Punit Deotale, Texas A&M University Dr. Sheng-Jen Tony Hsieh, Texas A&M

More information

Machine Learning Analysis of Medical Marijuana Strains Thomas Boser /23/2014

Machine Learning Analysis of Medical Marijuana Strains Thomas Boser /23/2014 Machine Learning Analysis of Medical Marijuana Strains Thomas Boser --- thomasboser@gmail.com --- 08/23/2014 Table of Contents: I- Problem Setting II- Data Pre-Processing III- Preliminary Analysis IV-

More information

Chapter 1: Explaining Behavior

Chapter 1: Explaining Behavior Chapter 1: Explaining Behavior GOAL OF SCIENCE is to generate explanations for various puzzling natural phenomenon. - Generate general laws of behavior (psychology) RESEARCH: principle method for acquiring

More information

Evaluation of Linguistic Labels Used in Applications

Evaluation of Linguistic Labels Used in Applications Evaluation of Linguistic Labels Used in Applications Hanan Hibshi March 2016 CMU-ISR-16-104 Travis Breaux Institute for Software Research School of Computer Science Carnegie Mellon University Pittsburgh,

More information

Social Structure and Personality Enhanced Group Recommendation

Social Structure and Personality Enhanced Group Recommendation Social Structure and Personality Enhanced Group Recommendation Michal Kompan and Mária Bieliková Faculty of Informatics and Information Technologies, Slovak University of Technology in Bratislava, Ilkovičova

More information

Face Analysis : Identity vs. Expressions

Face Analysis : Identity vs. Expressions Hugo Mercier, 1,2 Patrice Dalle 1 Face Analysis : Identity vs. Expressions 1 IRIT - Université Paul Sabatier 118 Route de Narbonne, F-31062 Toulouse Cedex 9, France 2 Websourd Bâtiment A 99, route d'espagne

More information

Keywords Missing values, Medoids, Partitioning Around Medoids, Auto Associative Neural Network classifier, Pima Indian Diabetes dataset.

Keywords Missing values, Medoids, Partitioning Around Medoids, Auto Associative Neural Network classifier, Pima Indian Diabetes dataset. Volume 7, Issue 3, March 2017 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Medoid Based Approach

More information

Informative Gene Selection for Leukemia Cancer Using Weighted K-Means Clustering

Informative Gene Selection for Leukemia Cancer Using Weighted K-Means Clustering IOSR Journal of Pharmacy and Biological Sciences (IOSR-JPBS) e-issn: 2278-3008, p-issn:2319-7676. Volume 9, Issue 4 Ver. V (Jul -Aug. 2014), PP 12-16 Informative Gene Selection for Leukemia Cancer Using

More information

Moral Preferences FRANCESCA ROSSI

Moral Preferences FRANCESCA ROSSI Moral s FRANCESCA ROSSI Decision making Based on our preferences over the options Social context: aggregation of the individuals preferences Voting rules: from collection of preference orderings to a single

More information

Analyzing Spammers Social Networks for Fun and Profit

Analyzing Spammers Social Networks for Fun and Profit Chao Yang Robert Harkreader Jialong Zhang Seungwon Shin Guofei Gu Texas A&M University Analyzing Spammers Social Networks for Fun and Profit A Case Study of Cyber Criminal Ecosystem on Twitter Presentation:

More information

Things you need to know about the Normal Distribution. How to use your statistical calculator to calculate The mean The SD of a set of data points.

Things you need to know about the Normal Distribution. How to use your statistical calculator to calculate The mean The SD of a set of data points. Things you need to know about the Normal Distribution How to use your statistical calculator to calculate The mean The SD of a set of data points. The formula for the Variance (SD 2 ) The formula for the

More information

Direct memory access using two cues: Finding the intersection of sets in a connectionist model

Direct memory access using two cues: Finding the intersection of sets in a connectionist model Direct memory access using two cues: Finding the intersection of sets in a connectionist model Janet Wiles, Michael S. Humphreys, John D. Bain and Simon Dennis Departments of Psychology and Computer Science

More information

Psych 1Chapter 2 Overview

Psych 1Chapter 2 Overview Psych 1Chapter 2 Overview After studying this chapter, you should be able to answer the following questions: 1) What are five characteristics of an ideal scientist? 2) What are the defining elements of

More information

Case-based reasoning using electronic health records efficiently identifies eligible patients for clinical trials

Case-based reasoning using electronic health records efficiently identifies eligible patients for clinical trials Case-based reasoning using electronic health records efficiently identifies eligible patients for clinical trials Riccardo Miotto and Chunhua Weng Department of Biomedical Informatics Columbia University,

More information

Building Evaluation Scales for NLP using Item Response Theory

Building Evaluation Scales for NLP using Item Response Theory Building Evaluation Scales for NLP using Item Response Theory John Lalor CICS, UMass Amherst Joint work with Hao Wu (BC) and Hong Yu (UMMS) Motivation Evaluation metrics for NLP have been mostly unchanged

More information

Empirical Formula for Creating Error Bars for the Method of Paired Comparison

Empirical Formula for Creating Error Bars for the Method of Paired Comparison Empirical Formula for Creating Error Bars for the Method of Paired Comparison Ethan D. Montag Rochester Institute of Technology Munsell Color Science Laboratory Chester F. Carlson Center for Imaging Science

More information

Agents with Attitude: Exploring Coombs Unfolding Technique with Agent-Based Models

Agents with Attitude: Exploring Coombs Unfolding Technique with Agent-Based Models Int J Comput Math Learning (2009) 14:51 60 DOI 10.1007/s10758-008-9142-6 COMPUTER MATH SNAPHSHOTS - COLUMN EDITOR: URI WILENSKY* Agents with Attitude: Exploring Coombs Unfolding Technique with Agent-Based

More information

Sentiment Analysis of Reviews: Should we analyze writer intentions or reader perceptions?

Sentiment Analysis of Reviews: Should we analyze writer intentions or reader perceptions? Sentiment Analysis of Reviews: Should we analyze writer intentions or reader perceptions? Isa Maks and Piek Vossen Vu University, Faculty of Arts De Boelelaan 1105, 1081 HV Amsterdam e.maks@vu.nl, p.vossen@vu.nl

More information

WHILE behavior has been intensively studied in social

WHILE behavior has been intensively studied in social 6 Feature Article: Behavior Informatics: An Informatics Perspective for Behavior Studies Behavior Informatics: An Informatics Perspective for Behavior Studies Longbing Cao, Senior Member, IEEE and Philip

More information

The Visual World as Seen by Neurons and Machines. Aaron Walsman, Akanksha Saran

The Visual World as Seen by Neurons and Machines. Aaron Walsman, Akanksha Saran The Visual World as Seen by Neurons and Machines Aaron Walsman, Akanksha Saran PPA dataset What does the data encode? Clustering Exemplars clustered together Very few clusters had same category images

More information

Framework for Comparative Research on Relational Information Displays

Framework for Comparative Research on Relational Information Displays Framework for Comparative Research on Relational Information Displays Sung Park and Richard Catrambone 2 School of Psychology & Graphics, Visualization, and Usability Center (GVU) Georgia Institute of

More information

Local Image Structures and Optic Flow Estimation

Local Image Structures and Optic Flow Estimation Local Image Structures and Optic Flow Estimation Sinan KALKAN 1, Dirk Calow 2, Florentin Wörgötter 1, Markus Lappe 2 and Norbert Krüger 3 1 Computational Neuroscience, Uni. of Stirling, Scotland; {sinan,worgott}@cn.stir.ac.uk

More information