{"id":54,"date":"2019-11-18T08:40:42","date_gmt":"2019-11-18T07:40:42","guid":{"rendered":"http:\/\/digitaleconomy.org\/?p=54"},"modified":"2020-01-22T11:24:18","modified_gmt":"2020-01-22T10:24:18","slug":"machine-learning-methods-used-in-marketing-research-classification","status":"publish","type":"post","link":"https:\/\/fromdatatoimpact.com\/index.php\/2019\/11\/18\/machine-learning-methods-used-in-marketing-research-classification\/","title":{"rendered":"Machine Learning Methods Used in Marketing Research: Classification"},"content":{"rendered":"\n<p class=\"has-text-align-center\"><em>Introducing Neural Networks, Decision Trees and Support Vector Machines<\/em><\/p>\n\n\n\n<h4 class=\"has-text-align-center wp-block-heading\"><strong><a href=\"\/index.php\/author\/leoniegehrmann\/\">Leonie\u00a0Gehrmann<\/a>\u00a0&amp; Dr. Sabrina\u00a0Haas<\/strong><\/h4>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-drop-cap\">In this day and age, big data has become a frequently used term to characterize data with a high velocity, volume, and variety (Chintagunta et&nbsp;al.&nbsp;2016). For one, much of the data used today is available almost instantly. Further, developments such as the extensive usage of smartphones and social media have contributed to the ease with which personal data can be tracked, resulting in large databases for firms to draw from. Finally, existing numerical data is now extended by images, videos, and texts. Arguably, most of this data remains unexploited by both marketing practitioners and researchers alike. However, by adopting methods from fields such as machine learning and data science, valuable insights can be drawn, facilitating and refining marketing practices. For example,&nbsp;Kosinski et&nbsp;al.&nbsp;(2013) show that mining Facebook data provides an accurate prediction of individuals\u2019 psychodemographic profiles, which can be used for targeting.<\/p>\n\n\n\n<p>Interest in machine learning and artificial intelligence has surged in recent years with these buzzwords garnering widespread recognition in both business practice and research. Machine learning, or the capability of computers to learn and generate insights from data without being told specifically what to look for, belongs to the field of artificial intelligence (Balducci and Marinova&nbsp;2018). By making use of the patterns found in most nonrandom data, a machine learning algorithm derives information on the properties of training data to learn a generalizable model (Segaran&nbsp;2007, p.3). Thereby, it uses the aspects it considers important to consequently make predictions for previously unseen data (Segaran&nbsp;2007, p.3). While machine learning methods that train using an exemplary set of inputs and corresponding outputs are cases of supervised learning, unsupervised learning methods do not have labeled examples to learn from, requiring the computer to find an unknown structure in a given data set (Balducci and Marinova&nbsp;2018). This blog post will introduce the supervised task of classification, briefly explain three classification algorithms, and highlight recent marketing research addressing one of them, the support vector machine (SVM).<\/p>\n\n\n\n<p>Classification techniques are regularly employed to make sense of both structured and unstructured data. Thereby, the lack of flexibility of rule-based approaches is solved through machine learning methods (Segaran&nbsp;2007, p.118). Applications of machine learning to classification tasks allow for the recognition of complex patterns, the distinction between objects dependent on their patterns, and finally the prediction of an object\u2019s class (Huang and Luo&nbsp;2016). A classifier is given some set of data with items, their features, and class labels from which it learns with the goal of classifying previously unseen data. All classification methods aim to assign an input vector to a finite number of discrete and usually disjoint classes (Bishop&nbsp;2006, p.179). In general, classification often finds its use in the preprocessing and automatic organization of data, which allows for a quick and accurate retrieval of data points in large databases (Datta et&nbsp;al.&nbsp;2008).<\/p>\n\n\n\n<p>Besides SVMs, common machine learning classification techniques include neural networks and decision trees. All neural networks contain a set of neurons, or nodes, that are connected by synapses&nbsp;<em>Figure 1 here&nbsp;<\/em>(Segaran&nbsp;2007, p.74 &amp; p.285). Each synapse has an associated weight that determines the degree of influence the output of one neuron has on the activation of another. Neural networks can start with random weights for the synapses and learn through training (Segaran&nbsp;2007, p.287). Most commonly, the network is fed an exemplary input and corresponding output and adjusts the weights of each synapse proportionally to their contribution to the nodes in the output layer, a process called backpropagation (Segaran&nbsp;2007, p.287). The training occurs slowly, allowing the classification of an item to improve with the number of times it is seen and preventing an overcompensation in response to noisy data (Segaran&nbsp;2007, p.287). Overall, neural networks capture the interdependence between features by allowing the probability of one feature to vary with the presence of others (Segaran&nbsp;2007, p.140). Additionally, they are applicable to cases with a continuous stream of training data due to their incremental training (Segaran&nbsp;2007, p.288). However, in cases with an abundance of nodes and synapses in hidden layers, this algorithm resembles a black box, making it impossible for researchers to understand the rationale behind classifications (Segaran&nbsp;2007, p.288).<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"499\" height=\"467\" src=\"https:\/\/fromdatatoimpact.com\/wp-content\/uploads\/2019\/11\/NN_pic.png\" alt=\"\" class=\"wp-image-99\" srcset=\"https:\/\/fromdatatoimpact.com\/wp-content\/uploads\/2019\/11\/NN_pic.png 499w, https:\/\/fromdatatoimpact.com\/wp-content\/uploads\/2019\/11\/NN_pic-300x281.png 300w\" sizes=\"auto, (max-width: 499px) 100vw, 499px\" \/><figcaption><em>Neural Networks<\/em><\/figcaption><\/figure>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The concept of decision trees is likely one of the more generally known classification methods, since it proves a straightforward graphical representation of a decision. As a simple machine learning method, items are classified by beginning at the top node and following a sequence of yes or no decisions until the final node and predicted class is reached (Crone et&nbsp;al.&nbsp;2006). A common training method is to build the tree from the top, with the choice of each next division criteria maximizing the information gain until further division of the data on each branch does not result in any additional information gain (Segaran&nbsp;2007, p.283). The intuitive interpretation of decision trees is one of the reasons for their widespread application in business analysis (Segaran&nbsp;2007, p.155). The ability to understand which variables contribute to the classification and which do not provides practitioners with valuable information for topics such as cost saving and targeting (Segaran&nbsp;2007, p.164). Furthermore, decision trees are valuable due to their capability of handling both categorical and numerical input data (Segaran&nbsp;2007, p.164). Nevertheless, since decision points can only divide numerical values at some break point, they are less adequate for cases with complex relationships between numerical inputs or with many numerical inputs and outputs (Segaran&nbsp;2007, p.165).<\/p>\n\n\n\n<p>The idea behind the SVM is to classify items into one of two classes by determining the hyperplane that separates the data with the largest margin, which is why the classifier is also referred to as the maximum margin classifier&nbsp;<em>Figure 2 here&nbsp;<\/em>(Cui and Curry&nbsp;2005). The margin is defined as the sum of the shortest distance between the hyperplane and the closest point in the first class and the shortest distance between the hyperplane and the closest point in the other class (Burges&nbsp;1998). These closest points in each class lie on two hyperplanes parallel to the separating hyperplane and are referred to as the support vectors (Burges&nbsp;1998). Notice that these are the only points required to describe the data set for the solution and omitting them would change the solution.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"850\" height=\"552\" src=\"https:\/\/fromdatatoimpact.com\/wp-content\/uploads\/2019\/11\/SVM_pic-1.png\" alt=\"\" class=\"wp-image-97\" srcset=\"https:\/\/fromdatatoimpact.com\/wp-content\/uploads\/2019\/11\/SVM_pic-1.png 850w, https:\/\/fromdatatoimpact.com\/wp-content\/uploads\/2019\/11\/SVM_pic-1-300x195.png 300w, https:\/\/fromdatatoimpact.com\/wp-content\/uploads\/2019\/11\/SVM_pic-1-768x499.png 768w\" sizes=\"auto, (max-width: 850px) 100vw, 850px\" \/><figcaption><em>Support Vector Machine<\/em><\/figcaption><\/figure>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Even so, this method has many limitations. Since the number of required support vectors generally increases linearly with the size of the training data set, SVMs end up requiring a complex computation unless a post-processing is performed (Tipping&nbsp;2001). Moreover, a SVM returns a binary classification as output, opposed to the posterior probabilities necessary to account for uncertainty in the prediction (Tipping&nbsp;2001). Finally, the transformation into high-dimensional space complicates the interpretation of the classification, making SVMs a black box technique like neural networks (Segaran&nbsp;2007, p.292). Nevertheless, once the parameters are appropriate and training has concluded, SVMs are quick and powerful classifiers (Segaran&nbsp;2007, p.292). Two valuable extensions to the basic idea allow for training data that is not separable or classification in the non-linear case. The simultaneous minimization of error on the training data set and maximization of the margin effectively lets SVMs avoid overfitting, resulting in a sparse model that makes good generalizations (Tipping&nbsp;2001). Furthermore, their ability to deal with high-dimensional data sets makes them valuable for data-intensive problems or problems with complex data, such as facial expression classification (Segaran&nbsp;2007, p.216,&nbsp;Lu et&nbsp;al.&nbsp;2016).<\/p>\n\n\n\n<p>Due to its potential, the focus of this post is to highlight applications of SVMs in academic marketing research. Generally, the existing work can be divided into three broad categories. Some researchers aim to comprehensibly develop the theory of SVM for marketing purposes, others evaluate the performance of SVM in comparison to other classifiers, and finally some research incorporates SVMs into a larger methodology or approach.<\/p>\n\n\n\n<p>For example,&nbsp;Cui and Curry&nbsp;(2005) evaluate the use of SVMs in prediction models for marketing. Similarly,&nbsp;Evgeniou et&nbsp;al.&nbsp;(2005) propose the use of SVMs in conjoint analysis to accommodate large data sets and interactions between product features. More recently,&nbsp;Martens and Provost&nbsp;(2014) set out to aid users in understanding data-driven document classification and extend an existing framework to show that explanations for intelligent systems reduce the gap between a classification decision system and its user\u2019s mental model.<\/p>\n\n\n\n<p>Following the introduction of SVM into marketing literature, researchers have also evaluated its performance compared to existing methods in the estimation of the relative purchase likelihood (Martens et&nbsp;al.&nbsp;2016), the development of a task recommendation system (Mo et&nbsp;al.&nbsp;2018), or the automatic classification of unstructured text (Hartmann et&nbsp;al.&nbsp;2019). Other researchers use SVMs to examine the robustness of their analysis (e.g.&nbsp;Geva et&nbsp;al.&nbsp;2017,&nbsp;Fang et&nbsp;al.&nbsp;2013).<\/p>\n\n\n\n<p>However, the majority of marketing research that addresses SVMs applies the ML method as a part of their approach. A canvassing of the body of literature suggests that until now, SVMs are often used to classify text (e.g.&nbsp;Abbasi et&nbsp;al.&nbsp;2018,&nbsp;Pant and Srinivasan&nbsp;2013,&nbsp;Homburg et&nbsp;al.&nbsp;2015). Many recent studies document that SVM classifiers have also found their way into the Word-of-Mouth (WOM) literature (e.g.&nbsp;Luo et&nbsp;al.&nbsp;2017,&nbsp;Hennig-Thurau et&nbsp;al.&nbsp;2015,&nbsp;Marchand et&nbsp;al.&nbsp;2017). Similarly, research addressing user-generated content (UGC) has drawn on the ML approach for classification (e.g.&nbsp;Archak et&nbsp;al.&nbsp;2011,&nbsp;Tirunillai and Tellis&nbsp;2012,&nbsp;Ghose et&nbsp;al.&nbsp;2012,&nbsp;Lu et&nbsp;al.&nbsp;2013). Finally, a few marketing researchers have also combined SVMs with sophisticated methods such as neural profiling (Chan et&nbsp;al.&nbsp;2018), video-based automated recommender systems (Lu et&nbsp;al.&nbsp;2016), or adaptive decompositional preference elicitation (Huang and Luo&nbsp;2016).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Discussion<\/strong><\/h2>\n\n\n\n<p>Summarizing, machine learning is a subfield of arficial intelligence that involves computers\u2019 capability of learning and generating insights from data without an explicit cue what to look for. Supervised machine learning methods train using a labeled data set and require human guidance, whereas unsupervised ML methods do not, finding previously unknown structures in a data set on their own. Classification is a systematic two-stage approach that assigns items to a finite number of classes. Supervised machine learning methods such as neural networks, decision trees, and SVMs are applied to facilitate classification tasks and increase flexibility. When using neural networks, the class of an input is determined according to the weight of the synapses and the activations between the nodes. Decision trees are easily interpreted, which is why most people have likely been confronted by one at some point. This classifier uses a sequence of binary decisions to arrive at the predicted class of an item. Finally, SVMs are valuable for their capability of handling high-dimensional data. The idea is to find the hyperplane that maximizes the margin between two classes.<\/p>\n\n\n\n<p>The value of SVMs lies in their ability to classify high-dimensional data and this capability is promising for marketing purposes. More specifically, highly unstructured data such as videos or images are nonnumeric, multifaceted and characterized by concurrent representation (Balducci and Marinova&nbsp;2018). For example,&nbsp;Matz et&nbsp;al<a href=\"#Xmatz\">.<\/a>&nbsp;(2017) use previous findings suggesting that Facebook data can provide accurate predictions of psychodemographic profiles (Kosinski et&nbsp;al.&nbsp;2013) to show the effectiveness of psychological targeting through persuasive communication. The volume, velocity, and variety of big data seems an ideal target for a SVM to tackle and generate valuable insights from. Imagine using social media chatter to pick up on desirable features for products or analyzing posted pictures to predict trends. In general, the possibilities seem endless, especially when accounting for the ability of computers to find unspecified patterns in the data.<\/p>\n\n\n\n<p>However, as mentioned in the beginning, the potential of big data for marketing practitioners and researchers alike remains widely unexploited. For one, most machine learning classification methods do not offer a straightforward interpretation. In both business practice and research, not being able to explain how exactly you arrive at your findings can prevent acceptance. Moreover, the correct use of a SVM also requires sufficient skill and understanding. Parameters have to be chosen, code has to be written, and output has to be interpreted correctly, suggesting interdisciplinary teams might be necessary to enhance the insight gained through machine learning methods. But, the promising potential of these methods makes us curious to see what the future holds.&nbsp;<\/p>\n\n\n<div class=\"su-accordion su-u-trim\">\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\" data-scroll-offset=\"0\" data-anchor-in-url=\"no\"><div class=\"su-spoiler-title\" tabindex=\"0\" role=\"button\"><span class=\"su-spoiler-icon\"><\/span>References<\/div><div class=\"su-spoiler-content su-u-clearfix su-u-trim\">\n<ul>\n<li>Abbasi, A., Zhou, Y., Deng, S., and Zhang, P. (2018). Text analytics to support sense-making in social media: A language-action perspective.MIS Quarterly, 42(2):1\u201338.\n<\/li>\n<li>Archak, N., Ghose, A., and Ipeirotis, P.G. (2011). Deriving the pricing power of product features by mining consumer reviews.Management Science, 57(8):1485\u20131509.\n<\/li>\n<li>Balducci, B. and Marinova, D. (2018). Unstructured data in marketing.Journal of theAcademy of Marketing Science, 46:557\u2013590.\n<\/li>\n<li>Bishop, C.M. (2006).Pattern Recognition and Machine Learning. Springer Science+Business Media, New York, NY, 1. edition.\n<\/li>\n<li>Burges, C.J. (1998). A tutorial on support vector machines for pattern recognition.DataMining and Knowledge Discovery, 2(2):121\u2013167.\n<\/li>\n<li>Chan, H.-Y., Boksem, M., and Smidts, A. (2018). Neural profiling of brands: Mapping brand image in consumers\u2019 brains with visual templates.Journal of Marketing Research, 55(4):600\u2013615.\n<\/li>\n<li>Chintagunta, P., Hanssens, D.M., and Hauser, J.R. (2016). Editorial \u2014 marketing science and big data.Marketing Science, 35(3):341\u2013342.\n<\/li>\n<li>Crone, S.F., Lessmann, S., and Stahlbock, R. (2006). The impact of preprocessing on data mining: An evaluation of classifier sensitivity in direct marketing.European Journal ofOperational Research, 173(3):781\u2013800.\n<\/li>\n<li>Cui, D. and Curry, D. (2005). Prediction in marketing using the support vector machine.Marketing Science, 24(4):595\u2013615.\n<\/li>\n<li>Datta, R., Joshi, D., Li, J., and Wang, J.Z. (2008). Image retrieval: Ideas, influences, and trends of the new age.ACM Computing Surveys, 40(2):5.\n<\/li>\n<li>Evgeniou, T., Boussios, C., and Zacharia, G. (2005). Generalized robust conjoint estimation.Marketing Science, 24(3):415\u2013429.\n<\/li>\n<li>Fang, X., Hu, P. J.-H., Li, Z., and Tsai, W. (2013). Predicting adoption probabilities in social networks.Information Systems Research, 24(1):128\u2013145.\n<\/li>\n<li>Geva, T., Oestreicher-Singer, G., Efron, N., and Shimshoni, Y. (2017). Using forum and search data for sales prediction of high-involvement projects.MIS Quarterly, 41(1):65\u201382.\n<\/li>\n<li>Ghose, A., Ipeirotis, P.G., and Li, B. (2012). Designing ranking systems for hotels on travel search engines by mining user-generated and crowdsourced content.MarketingScience, 31(3):493\u2013520.\n<\/li>\n<li>Hartmann, J., Huppertz, J., Schamp, C., and Heitmann, M. (2019). Comparing automated text classification methods.International Journal of Research in Marketing, 36(1):20\u201338.\n<\/li>\n<li>Hennig-Thurau, T., Wiertz, C., and Feldhaus, F. (2015). Does twitter matter? the impact of microblogging word of mouth on consumers\u2019 adoption of new movies.Journal of theAcademy of Marketing Science, 43(3):375\u2013394.\n<\/li>\n<li>Homburg, C., Ehm, L., and Artz, M. (2015). Measuring and managing consumer sentiment in an online community environment.Journal of Marketing Research, 52(5):629\u2013641.\n<\/li>\n<li>Huang, D. and Luo, L. (2016). Consumer preference elicitation of complex products using fuzzy support vector machine active learning.Marketing Science, 35(3):445\u2013464.\n<\/li>\n<li>Kosinski, M., Stillwell, D., and Graepel, T. (2013). Private traits and attributes are predictable from digital records of human behavior.Proceedings of the National Academy ofSciences, 110(15):5802\u20135805.\n<\/li>\n<li>Lu, S., Xiao, L., and Ding, M. (2016). A video-based automated recommender (var) system for garments.Marketing Science, 35(3):484\u2013510.\n<\/li>\n<li>Lu, Y., Jerath, K., and Singh, P.V. (2013). The emergence of opinion leaders in a networked online community: A dyadic model with time dynamics and a heuristiReferencesc for fast estimation.Management Science, 59(8):1783\u20131799.\n<\/li>\n<li>Luo, X., Gu, B., Zhang, J., and Phang, C.W. (2017). Expert blogs and consumer perceptions of competing brands.MIS Quarterly, 41(2):371\u2013395.\n<\/li>\n<li>Marchand, A., Hennig-Thurau, T., and Wiertz, C. (2017). Not all digital word of mouth is created equal: Understanding the respective impact of consumer reviews and microblogs on new product success.International Journal of Research in Marketing, 34(2):336\u2013354.\n<\/li>\n<li>Martens, D. and Provost, F. (2014). Explaining data-driven document classifications.MISQuarterly, 38(1):73\u201399.\n<\/li>\n<li>Martens, D., Provost, F., Clark, J., and deFortuny, E.J. (2016). Mining massive fine-grained behavior data to improve predictive analystics.MIS Quarterly, 40(4):869\u2013888.\n<\/li>\n<li>Matz, S.C., Kosinski, M., Nave, G., and Stillwell, D.J. (2017). Psychological targeting as an effective approach to digital mass persuasion.Proceedings of the National Academy ofSciences, 114(48):12714\u201312719.\n<\/li>\n<li>Mo, J., Sarkar, S., and Menon, S. (2018). Know when to run: Recommendations in crowdsourcing contests.MIS Quarterly, 42(3):919\u2013944.\n<\/li>\n<li>Pant, G. and Srinivasan, P. (2013). Status locality on the web: Implications for building focused collections.Information Systems Research, 24(3):802\u2013821.\n<\/li>\n<li>Segaran, T. (2007).Programming Collective Intelligence. O\u2019Reilly Media, Sebastopol, CA, 1. edition.\n<\/li>\n<li>Tipping, M.E. (2001). Sparse bayesian learning and the relevance vector machine.Journalof Machine Learning Research, 1(Jun):211\u2013244.\n<\/li>\n<li>Tirunillai, S. and Tellis, G.J. (2012). Does chatter really matter? dynamics of user-generated content and stock performance.Marketing Science, 31(2):198\u2013215.\n<\/li>\n<\/ul>\n<\/div><\/div>\n<\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introducing Neural Networks, Decision Trees and Support Vector Machines Leonie\u00a0Gehrmann\u00a0&amp; Dr. Sabrina\u00a0Haas In this day<\/p>\n","protected":false},"author":4,"featured_media":252,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"coauthors":[],"class_list":["post-54","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-machine-learning"],"jetpack_featured_media_url":"https:\/\/fromdatatoimpact.com\/wp-content\/uploads\/2019\/11\/pexels-photo-247819.jpeg","_links":{"self":[{"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/posts\/54","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/comments?post=54"}],"version-history":[{"count":38,"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/posts\/54\/revisions"}],"predecessor-version":[{"id":261,"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/posts\/54\/revisions\/261"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/media\/252"}],"wp:attachment":[{"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/media?parent=54"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/categories?post=54"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/tags?post=54"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/fromdatatoimpact.com\/index.php\/wp-json\/wp\/v2\/coauthors?post=54"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}