{"id":289,"date":"2019-04-12T10:43:27","date_gmt":"2019-04-12T10:43:27","guid":{"rendered":"http:\/\/bitxhub.com\/gyrus_ci\/blog\/?p=289"},"modified":"2021-01-28T03:46:25","modified_gmt":"2021-01-28T03:46:25","slug":"customizing-a-propensity-to-buy-model","status":"publish","type":"post","link":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/","title":{"rendered":"Customizing a Propensity To Buy Model"},"content":{"rendered":"<div id=\"view1\" class=\"show\">\r\n\r\n<h2 class=\"wp-block-heading\">Background<\/h2>\r\n\r\n\r\n\r\n<p>This blog outlines the steps involved and things to care about for transfer learning a propensity to buy model. <\/p>\r\n\r\n\r\n\r\n<p>Sales team members could inundate with several prospects. The best use of their time is by lead scoring and focus on the prospects that have the best chance to close. hence, A Propensity To Buy model helps the sales team members to identify and focus on the deals that have a high probability to close.<\/p>\r\n\r\n\r\n\r\n<p>However every business has its own process, dependencies, nuances etc.and a generic model cannot suit everyone. Certainly, this blog tries to outline the steps and the data to showcase the system for a custom Propensity To Buy model.<\/p>\r\n\r\n\r\n\r\n<p>Typical steps in a sale are a gradual progression from Leads to Accounts to Opportunities to Sale Closure. Propensity models work best for the leads in the opportunity class as they have data from the interactions and also from the external factors. <\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img fetchpriority=\"high\" decoding=\"async\" width=\"359\" height=\"237\" src=\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-1-artcile-2.png\" alt=\"Sales Progression steps likes leads, accounts\/contacts, opportunities, sales closure.\" class=\"wp-image-291\" srcset=\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-1-artcile-2.png 359w, https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-1-artcile-2-300x198.png 300w\" sizes=\"(max-width: 359px) 100vw, 359px\" \/><figcaption>Sales Progression steps\r\n<\/figcaption><\/figure><\/div>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Feature List<\/h2>\r\n\r\n\r\n\r\n<p>The relevant data to be pulled into the model as part of the\r\ncustomization are <\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\"><li>Product Categories<\/li><li>$ Value of the product<\/li><li>Dates, duration, the purpose of Sales Meetings<\/li><li>Contacts, their titles\/designations <\/li><li>Technical and Business decision-makers<\/li><li>Interaction with Contacts<\/li><li>Time Progression from lead, to contact to an opportunity<\/li><li>Current Probability to Close % as presented by the salesperson<\/li><li>Past purchase history per customer<\/li><li>Database Access with a snapshot of the sales data<\/li><li>Social Media and Web Analytics from a campaign<\/li><\/ul>\r\n\r\n\r\n\r\n<p>There are additional features that can be accessed from the public domain<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\"><li>Seasonality<\/li><li>Customers Business (Earnings reports)<\/li><li>Customer Business Activity (Press Releases)<\/li><li>Customer Public Sentiment<\/li><li>Social Media Activity<\/li><li>Contact Specific Activity<\/li><li>Competition Activity<\/li><\/ul>\r\n\r\n\r\n\r\n<p>These two feature-lists are not an exhaustive list, but however is a guideline to the type of parameters to use. The actual feature list could be smaller in cases where we do not have quality, snapshot data.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Data Cleanup and Normalization<\/h2>\r\n\r\n\r\n\r\n<p>As a first step, the input data is scrubbed for anomalies and data that is either not complete or visibly wrong (data entry related) is removed. There are tools for viewing and analyzing the datasets that can be used for this process. There are simple models that indicate the cases where the data is an anomaly and they can be included or discarded depending on the scenario.<\/p>\r\n\r\n\r\n\r\n<p>All the features need to populate based on an instance of time. It is quite possible that some of the equivalent features are not available and a nominal value is in place. Some of the new models have the ability to take blank input value for some features, indicating that, that particular feature information is not available. <\/p>\r\n\r\n\r\n\r\n<p>Usually, Data normalize, at two levels. Firstly, At a high level, you can check the data for mean, median and variance to be at the expected level. If it is not, the data normalize with a curve or an equation. Secondly, at the next level, the data is made to be within a range of [0-1] for all features. The third-party data as mention above are also subjects to clean up and normalization as well.<\/p>\r\n\r\n\r\n\r\n<p>The data for each feature can be discrete values like a rating\/ranking 1-5, or a number indicating price\/cost or independent union. <\/p>\r\n\r\n\r\n\r\n<p><span style=\"text-decoration: underline;\"><a href=\"http:\/\/gyrus.ai\/technology\/data_layer\"><em><strong>The details of such data layer processing are here<\/strong><\/em><\/a><\/span><\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Model Development <\/h2>\r\n\r\n\r\n\r\n<p>In general, the first batch of propensity models had a very small number of features implementing logistic regression, giving decent results. With the vast amount of information available, there is potential for much more learned decisions with more complex models. <\/p>\r\n\r\n\r\n\r\n<p>Furthermore, there are two ways to re-train the model with custom dataset. The first method is to transfer learning. In this process, all the hyperparameters of the models retain and the learning process relearns the weights occur. Here then the weights can initialize to new values or can start from the previous weights. The decision depends on the convergence speed and accuracy.<\/p>\r\n\r\n\r\n\r\n<p>If the first method does not converge to an acceptable accuracy level, the hyperparameters themselves will be changed. Here the intention is not to transfer from the previous learning experiment. Also, If the new dataset size is large enough to converge, all new data will be used for learning. However, if the dataset is not large enough, some of the generic previous dataset entries can be used.<\/p>\r\n\r\n\r\n\r\n<p>Moreover, the models can be fine-tuned as new data is collected as well. Snapshots of the dataset can be made from the live data and processed as noted above. Also, one of the important factors in model revision control is to have the ability to go back to recreate the models, as data sets are changing. Using a data framework such as the one at Gyrus would help. <\/p>\r\n\r\n\r\n\r\n<p>Above all, the usability of the explainability model and the bias check models in order to cross-check the results do not need to change much. However, the explainability model might need re-training with new data.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Results<\/h2>\r\n\r\n\r\n\r\n<p>As a result, the below figure shows such exercise where the model saw a large upside in the net profit by focusing on the important accounts (up to 25 percentile). As can be seen from the chart, if there is an opportunity to approach, the result is similar to and without a model. <\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" width=\"580\" height=\"263\" src=\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-2-artcile-2.png\" alt=\"Propensity model per percentile profit with model and profit without model \" class=\"wp-image-290\" srcset=\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-2-artcile-2.png 580w, https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-2-artcile-2-300x136.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" \/><figcaption>Net profit Upside with Propensity Model<\/figcaption><\/figure><\/div>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\r\n\r\n\r\n\r\n<p><strong><span style=\"text-decoration: underline;\"><em><a href=\"http:\/\/gyrus.ai\/products\/bi_in_ai\">Gyrus has several similar models that can be referenced here. <\/a><\/em><\/span><\/strong><\/p>\r\n\r\n\r\n\r\n<p>Therefore, the propensity to buy is a very useful and productive model for real-life use-cases. also, it needs to tune\/setup for the specific customer data to yield good results.  Even more, in most cases of the box-model may not suit very well. Every model needs tools to efficiently do life cycle management and the corresponding explainability and bais check models.<\/p>\r\n\r\n\r\n\r\n<p> <\/p>\r\n\r\n<\/div>\r\n<div id=\"view2\" class=\"hide\">\r\n\r\n<h2 class=\"wp-block-heading\">\u30d0\u30c3\u30af\u30b0\u30e9\u30a6\u30f3\u30c9<\/h2>\r\n\r\n\r\n\r\n<p>\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001\u30e2\u30c7\u30eb\u3092\u8cfc\u5165\u3059\u308b\u50be\u5411\u3092\u5b66\u7fd2\u3059\u308b\u305f\u3081\u306b\u5fc5\u8981\u306a\u624b\u9806\u3068\u6ce8\u610f\u4e8b\u9805\u306b\u3064\u3044\u3066\u6982\u8aac\u3057\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u55b6\u696d\u30c1\u30fc\u30e0\u306e\u30e1\u30f3\u30d0\u30fc\u306f\u3001\u591a\u304f\u306e\u898b\u8fbc\u307f\u5ba2\u3067\u6ea2\u308c\u304b\u3048\u3063\u3066\u3044\u307e\u3059\u3002 \u5f7c\u3089\u306e\u6642\u9593\u3092\u6700\u5927\u9650\u52b9\u7387\u3088\u304f\u6d3b\u7528\u3059\u308b\u306e\u306f\u3001\u30ea\u30fc\u30c9\u30b9\u30b3\u30a2\u30ea\u30f3\u30b0\u3092\u884c\u3044\u3001\u6210\u7d04\u3059\u308b\u53ef\u80fd\u6027\u304c\u6700\u3082\u9ad8\u3044\u898b\u8fbc\u307f\u5ba2\u306b\u7126\u70b9\u3092\u5f53\u3066\u308b\u3053\u3068\u3067\u3059\u3002 \u3057\u305f\u304c\u3063\u3066\u3001\u8cfc\u5165\u50be\u5411\u30e2\u30c7\u30eb\u306f\u3001\u55b6\u696d\u30c1\u30fc\u30e0\u306e\u30e1\u30f3\u30d0\u30fc\u304c\u6210\u7d04\u3059\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044\u53d6\u5f15\u3092\u7279\u5b9a\u3057\u3066\u3001\u96c6\u4e2d\u3059\u308b\u306e\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u305f\u3060\u3057\u3001\u3059\u3079\u3066\u306e\u30d3\u30b8\u30cd\u30b9\u306b\u306f\u72ec\u81ea\u306e\u30d7\u30ed\u30bb\u30b9\u3001\u4f9d\u5b58\u95a2\u4fc2\u3001\u30cb\u30e5\u30a2\u30f3\u30b9\u306a\u3069\u304c\u3042\u308a\u3001\u4e00\u822c\u7684\u306a\u30e2\u30c7\u30eb\u304c\u3059\u3079\u3066\u306e\u4eba\u306b\u9069\u3057\u3066\u3044\u308b\u308f\u3051\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 \u78ba\u304b\u306b\u3001\u3053\u306e\u30d6\u30ed\u30b0\u3067\u306f\u3001\u30ab\u30b9\u30bf\u30e0\u306ePropensity ToBuy\u30e2\u30c7\u30eb\u306e\u30b7\u30b9\u30c6\u30e0\u3092\u7d39\u4ecb\u3059\u308b\u305f\u3081\u306e\u624b\u9806\u3068\u30c7\u30fc\u30bf\u306e\u6982\u8981\u3092\u8aac\u660e\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u8ca9\u58f2\u306e\u5178\u578b\u7684\u306a\u30b9\u30c6\u30c3\u30d7\u306f\u3001\u30ea\u30fc\u30c9\u304b\u3089\u30a2\u30ab\u30a6\u30f3\u30c8\u3001\u30aa\u30dd\u30c1\u30e5\u30cb\u30c6\u30a3\u3001\u8ca9\u58f2\u7d42\u4e86\u3078\u3068\u5f90\u3005\u306b\u9032\u884c\u3059\u308b\u3053\u3068\u3067\u3059\u3002 \u50be\u5411\u30e2\u30c7\u30eb\u306f\u3001\u76f8\u4e92\u4f5c\u7528\u304a\u3088\u3073\u5916\u90e8\u8981\u56e0\u304b\u3089\u306e\u30c7\u30fc\u30bf\u3092\u6301\u3063\u3066\u3044\u308b\u305f\u3081\u3001\u5546\u8ac7\u30af\u30e9\u30b9\u306e\u30ea\u30fc\u30c9\u306b\u6700\u9069\u3067\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img fetchpriority=\"high\" decoding=\"async\" width=\"359\" height=\"237\" src=\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-1-artcile-2.png\" alt=\"Sales Progression steps likes leads, accounts\/contacts, opportunities, sales closure.\" class=\"wp-image-291\" srcset=\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-1-artcile-2.png 359w, https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-1-artcile-2-300x198.png 300w\" sizes=\"(max-width: 359px) 100vw, 359px\" \/><figcaption>Sales Progression steps\r\n<\/figcaption><\/figure><\/div>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">\u6a5f\u80fd\u30ea\u30b9\u30c8<\/h2>\r\n\r\n\r\n\r\n<p>\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u306e\u4e00\u90e8\u3068\u3057\u3066\u30e2\u30c7\u30eb\u306b\u53d6\u308a\u8fbc\u307e\u308c\u308b\u95a2\u9023\u30c7\u30fc\u30bf\u306f\u6b21\u306e\u3068\u304a\u308a\u3067\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\"><li>\u88fd\u54c1\u30ab\u30c6\u30b4\u30ea<\/li><li> \u88fd\u54c1\u4fa1\u5024<\/li><li> \u55b6\u696d\u4f1a\u8b70\u306e\u76ee\u7684\u3001\u65e5\u4ed8\u3001\u671f\u9593\u3001<\/li><li> \u9023\u7d61\u5148\u3001\u8077\u8cac\/\u540d\u79f0<\/li><li> \u6280\u8853\u304a\u3088\u3073\u30d3\u30b8\u30cd\u30b9\u306e\u610f\u601d\u6c7a\u5b9a\u8005<\/li><li> \u9023\u7d61\u5148\u3068\u306e\u76f8\u4e92\u9023\u7d61<\/li><li> \u30ea\u30fc\u30c9\u306b\u5bfe\u3059\u308b\u9023\u7d61\u958b\u59cb\u304b\u3089\u5546\u8ac7\u307e\u3067\u306e\u6642\u9593\u7d4c\u904e<\/li><li> \u55b6\u696d\u62c5\u5f53\u8005\u306b\u3088\u308b\u73fe\u5728\u306e\u6210\u7d04\u78ba\u7387\uff05<\/li><li> \u9867\u5ba2\u6bce\u306e\u904e\u53bb\u306e\u8cfc\u5165\u5c65\u6b74<\/li><li> \u8ca9\u58f2\u30c7\u30fc\u30bf\u306e\u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8\u3092\u4f7f\u7528\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30a2\u30af\u30bb\u30b9<\/li><li> \u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u304b\u3089\u306e\u30bd\u30fc\u30b7\u30e3\u30eb\u30e1\u30c7\u30a3\u30a2\u3068\u30a6\u30a7\u30d6\u5206\u6790<\/li><\/ul>\r\n\r\n\r\n\r\n<p>\u30d1\u30d6\u30ea\u30c3\u30af\u30c9\u30e1\u30a4\u30f3\u304b\u3089\u30a2\u30af\u30bb\u30b9\u3067\u304d\u308b\u4ee5\u4e0b\u306e\u8ffd\u52a0\u6a5f\u80fd\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\"><li>\u5b63\u7bc0\u6027<\/li><li> \u9867\u5ba2\u30d3\u30b8\u30cd\u30b9\uff08\u53ce\u76ca\u30ec\u30dd\u30fc\u30c8\uff09<\/li><li> \u9867\u5ba2\u306e\u4e8b\u696d\u6d3b\u52d5\uff08\u30d7\u30ec\u30b9\u30ea\u30ea\u30fc\u30b9\uff09<\/li><li> \u9867\u5ba2\u306e\u4e16\u8ad6<\/li><li> \u30bd\u30fc\u30b7\u30e3\u30eb\u30e1\u30c7\u30a3\u30a2\u6d3b\u52d5<\/li><li> \u9867\u5ba2\u306e\u7279\u5b9a\u6d3b\u52d5<\/li><li> \u7af6\u5408\u4ed6\u793e\u306e\u6d3b\u52d5<\/li><\/ul>\r\n\r\n\r\n\r\n<p>\u3053\u308c\u3089\u306e2\u3064\u306e\u6a5f\u80fd\u30ea\u30b9\u30c8\u306f\u5b8c\u5168\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u3001\u4f7f\u7528\u3059\u308b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306e\u30bf\u30a4\u30d7\u306e\u30ac\u30a4\u30c9\u30e9\u30a4\u30f3\u3067\u3059\u3002 \u54c1\u8cea\u306e\u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8\u30c7\u30fc\u30bf\u304c\u306a\u3044\u5834\u5408\u3001\u5b9f\u969b\u306e\u6a5f\u80fd\u30ea\u30b9\u30c8\u306f\u5c0f\u3055\u304f\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">\u30c7\u30fc\u30bf\u306e\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3068\u6b63\u898f\u5316<\/h2>\r\n\r\n\r\n\r\n<p>\u6700\u521d\u306e\u30b9\u30c6\u30c3\u30d7\u3068\u3057\u3066\u3001\u5165\u529b\u30c7\u30fc\u30bf\u306e\u7570\u5e38\u3092\u30b9\u30af\u30e9\u30d6\u3057\u3001\u5b8c\u5168\u3067\u306f\u306a\u3044\u304b\u3001\u76ee\u306b\u898b\u3048\u3066\u9593\u9055\u3063\u3066\u3044\u308b\uff08\u30c7\u30fc\u30bf\u5165\u529b\u306b\u95a2\u9023\u3059\u308b\uff09\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u307e\u3059\u3002 \u3053\u306e\u30d7\u30ed\u30bb\u30b9\u306b\u4f7f\u7528\u3067\u304d\u308b\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u3092\u8868\u793a\u304a\u3088\u3073\u5206\u6790\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u304c\u3042\u308a\u307e\u3059\u3002 \u30c7\u30fc\u30bf\u304c\u7570\u5e38\u3067\u3042\u308b\u5834\u5408\u3092\u793a\u3059\u5358\u7d14\u306a\u30e2\u30c7\u30eb\u304c\u3042\u308a\u3001\u30b7\u30ca\u30ea\u30aa\u306b\u5fdc\u3058\u3066\u3001\u305d\u308c\u3089\u3092\u542b\u3081\u305f\u308a\u7834\u68c4\u3057\u305f\u308a\u3067\u304d\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u3059\u3079\u3066\u306e\u6a5f\u80fd\u306f\u3001\u6642\u9593\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306b\u57fa\u3065\u3044\u3066\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 \u540c\u7b49\u6a5f\u80fd\u306e\u4e00\u90e8\u304c\u5229\u7528\u3067\u304d\u305a\u3001\u516c\u79f0\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002 \u4e00\u90e8\u306e\u65b0\u3057\u3044\u30e2\u30c7\u30eb\u306b\u306f\u3001\u4e00\u90e8\u306e\u6a5f\u80fd\u306b\u5bfe\u3057\u3066\u7a7a\u767d\u306e\u5165\u529b\u5024\u3092\u53d6\u5f97\u3059\u308b\u6a5f\u80fd\u304c\u3042\u308a\u3001\u7279\u5b9a\u306e\u6a5f\u80fd\u60c5\u5831\u304c\u5229\u7528\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u793a\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u901a\u5e38\u3001\u30c7\u30fc\u30bf\u306f2\u3064\u306e\u30ec\u30d9\u30eb\u3067\u6b63\u898f\u5316\u3055\u308c\u307e\u3059\u3002 \u307e\u305a\u3001\u9ad8\u30ec\u30d9\u30eb\u3067\u306f\u3001\u5e73\u5747\u3001\u4e2d\u592e\u5024\u3001\u5206\u6563\u306e\u30c7\u30fc\u30bf\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u3001\u671f\u5f85\u3055\u308c\u308b\u30ec\u30d9\u30eb\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u305d\u3046\u3067\u306a\u3044\u5834\u5408\u3001\u30c7\u30fc\u30bf\u306f\u3001\u66f2\u7dda\u307e\u305f\u306f\u65b9\u7a0b\u5f0f\u3067\u6b63\u898f\u5316\u3055\u308c\u307e\u3059\u3002 \u6b21\u306b\u3001\u6b21\u306e\u30ec\u30d9\u30eb\u3067\u306f\u3001\u3059\u3079\u3066\u306e\u6a5f\u80fd\u306b\u3064\u3044\u3066\u30c7\u30fc\u30bf\u304c[0-1]\u306e\u7bc4\u56f2\u5185\u306b\u53ce\u307e\u308b\u3088\u3046\u306b\u4f5c\u6210\u3055\u308c\u307e\u3059\u3002 \u4e0a\u8a18\u306e\u30b5\u30fc\u30c9\u30d1\u30fc\u30c6\u30a3\u306e\u30c7\u30fc\u30bf\u3082\u3001\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u3068\u6b63\u898f\u5316\u306e\u5bfe\u8c61\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u5404\u6a5f\u80fd\u306e\u30c7\u30fc\u30bf\u306f\u3001\u8a55\u4fa1\/\u30e9\u30f3\u30ad\u30f3\u30b01\u301c5\u306e\u3088\u3046\u306a\u96e2\u6563\u5024\u3001\u307e\u305f\u306f\u4fa1\u683c\/\u30b3\u30b9\u30c8\u307e\u305f\u306f\u72ec\u7acb\u3057\u305f\u7d50\u5408\u3092\u793a\u3059\u6570\u5024\u306b\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u3053\u306e\u3088\u3046\u306a\u30c7\u30fc\u30bf\u30ec\u30a4\u30e4\u30fc\u51e6\u7406\u306e\u8a73\u7d30\u306f\u3053\u3061\u3089\u3002<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">\u30e2\u30c7\u30eb\u958b\u767a<\/h2>\r\n\r\n\r\n\r\n<p>\u4e00\u822c\u306b\u3001\u50be\u5411\u30e2\u30c7\u30eb\u306e\u6700\u521d\u306e\u30d0\u30c3\u30c1\u306b\u306f\u3001\u30ed\u30b8\u30b9\u30c6\u30a3\u30c3\u30af\u56de\u5e30\u3092\u5b9f\u88c5\u3059\u308b\u975e\u5e38\u306b\u5c11\u6570\u306e\u6a5f\u80fd\u304c\u3042\u308a\u3001\u9069\u5207\u306a\u7d50\u679c\u304c\u5f97\u3089\u308c\u307e\u3057\u305f\u3002 \u81a8\u5927\u306a\u91cf\u306e\u60c5\u5831\u304c\u5229\u7528\u53ef\u80fd\u3067\u3042\u308b\u305f\u3081\u3001\u3088\u308a\u8907\u96d1\u306a\u30e2\u30c7\u30eb\u3092\u4f7f\u7528\u3057\u3066\u3001\u3088\u308a\u591a\u304f\u306e\u610f\u601d\u6c7a\u5b9a\u3092\u5b66\u3076\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u3055\u3089\u306b\u3001\u30ab\u30b9\u30bf\u30e0\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u3092\u7528\u3044\u3066\u3001\u30e2\u30c7\u30eb\u3092\u518d\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0\u3059\u308b\u65b9\u6cd5\u306f2\u3064\u3042\u308a\u307e\u3059\u3002 \u6700\u521d\u306e\u65b9\u6cd5\u306f\u3001\u5b66\u7fd2\u3092\u8ee2\u9001\u3059\u308b\u3053\u3068\u3067\u3059\u3002 \u3053\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u306f\u3001\u30e2\u30c7\u30eb\u306e\u3059\u3079\u3066\u306e\u30cf\u30a4\u30d1\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u304c\u4fdd\u6301\u3055\u308c\u3001\u5b66\u7fd2\u30d7\u30ed\u30bb\u30b9\u306f\u91cd\u307f\u304c\u767a\u751f\u3059\u308b\u3053\u3068\u3092\u518d\u5b66\u7fd2\u3057\u307e\u3059\u3002 \u3053\u3053\u3067\u3001\u91cd\u307f\u306f\u65b0\u3057\u3044\u5024\u306b\u521d\u671f\u5316\u3059\u308b\u3053\u3068\u3082\u3001\u4ee5\u524d\u306e\u91cd\u307f\u304b\u3089\u958b\u59cb\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002 \u6c7a\u5b9a\u306f\u3001\u53ce\u675f\u901f\u5ea6\u3068\u7cbe\u5ea6\u306b\u4f9d\u5b58\u3057\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u6700\u521d\u306e\u65b9\u6cd5\u304c\u8a31\u5bb9\u53ef\u80fd\u306a\u7cbe\u5ea6\u30ec\u30d9\u30eb\u306b\u53ce\u675f\u3057\u306a\u3044\u5834\u5408\u3001\u30cf\u30a4\u30d1\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u81ea\u4f53\u304c\u5909\u66f4\u3055\u308c\u307e\u3059\u3002 \u3053\u3053\u3067\u306e\u610f\u56f3\u306f\u3001\u524d\u306e\u5b66\u7fd2\u5b9f\u9a13\u304b\u3089\u79fb\u884c\u3059\u308b\u3053\u3068\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 \u307e\u305f\u3001\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b5\u30a4\u30ba\u304c\u53ce\u675f\u3059\u308b\u306e\u306b\u5341\u5206\u306a\u5927\u304d\u3055\u3067\u3042\u308b\u5834\u5408\u3001\u3059\u3079\u3066\u306e\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u304c\u5b66\u7fd2\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002 \u305f\u3060\u3057\u3001\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u304c\u5341\u5206\u306b\u5927\u304d\u304f\u306a\u3044\u5834\u5408\u306f\u3001\u4ee5\u524d\u306e\u4e00\u822c\u7684\u306a\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30a8\u30f3\u30c8\u30ea\u306e\u4e00\u90e8\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u3055\u3089\u306b\u3001\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u3082\u53ce\u96c6\u3055\u308c\u308b\u305f\u3081\u3001\u30e2\u30c7\u30eb\u3092\u5fae\u8abf\u6574\u3067\u304d\u307e\u3059\u3002 \u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u306e\u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8\u306f\u3001\u30e9\u30a4\u30d6\u30c7\u30fc\u30bf\u304b\u3089\u4f5c\u6210\u3057\u3001\u4e0a\u8a18\u306e\u3088\u3046\u306b\u51e6\u7406\u3067\u304d\u307e\u3059\u3002 \u307e\u305f\u3001\u30e2\u30c7\u30eb\u30ea\u30d3\u30b8\u30e7\u30f3\u7ba1\u7406\u306e\u91cd\u8981\u306a\u8981\u7d20\u306e1\u3064\u306f\u3001\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u304c\u5909\u5316\u3057\u3066\u3044\u308b\u3068\u304d\u306b\u3001\u30e2\u30c7\u30eb\u3092\u518d\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u623b\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3053\u3068\u3067\u3059\u3002 Gyrus\u306e\u3088\u3046\u306a\u30c7\u30fc\u30bf\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3092\u4f7f\u7528\u3059\u308b\u3068\u5f79\u7acb\u3061\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p>\u3068\u308a\u308f\u3051\u3001\u7d50\u679c\u3092\u30af\u30ed\u30b9\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u8aac\u660e\u53ef\u80fd\u6027\u30e2\u30c7\u30eb\u3068\u30d0\u30a4\u30a2\u30b9\u30c1\u30a7\u30c3\u30af\u30e2\u30c7\u30eb\u306e\u4f7f\u3044\u3084\u3059\u3055\u306f\u3001\u305d\u308c\u307b\u3069\u5909\u66f4\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002 \u305f\u3060\u3057\u3001\u8aac\u660e\u53ef\u80fd\u6027\u30e2\u30c7\u30eb\u3067\u306f\u3001\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3057\u3066\u518d\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">\u7d50\u679c<\/h2>\r\n\r\n\r\n\r\n<p>\u305d\u306e\u7d50\u679c\u3001\u4e0b\u56f3\u306f\u3001\u30e2\u30c7\u30eb\u304c\u91cd\u8981\u306a\u30a2\u30ab\u30a6\u30f3\u30c8\uff08\u6700\u592725%\uff09\u306b\u7126\u70b9\u3092\u5f53\u3066\u308b\u3053\u3068\u306b\u3088\u308a\u3001\u7d14\u5229\u76ca\u306b\u5927\u304d\u306a\u4e0a\u6607\u304c\u898b\u3089\u308c\u305f\u3088\u3046\u306a\u6f14\u7fd2\u3092\u793a\u3057\u3066\u3044\u307e\u3059\u3002 \u30b0\u30e9\u30d5\u304b\u3089\u308f\u304b\u308b\u3088\u3046\u306b\u3001\u30a2\u30d7\u30ed\u30fc\u30c1\u3059\u308b\u6a5f\u4f1a\u304c\u3042\u308c\u3070\u3001\u7d50\u679c\u306f\u30e2\u30c7\u30eb\u3068\u540c\u69d8\u3067\u3042\u308a\u3001\u30e2\u30c7\u30eb\u304c\u306a\u3044\u5834\u5408\u3067\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" width=\"580\" height=\"263\" src=\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-2-artcile-2.png\" alt=\"Propensity model per percentile profit with model and profit without model \" class=\"wp-image-290\" srcset=\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-2-artcile-2.png 580w, https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/figure-2-artcile-2-300x136.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" \/><figcaption>Net profit Upside with Propensity Model<\/figcaption><\/figure><\/div>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">\u7d50\u8ad6<\/h2>\r\n\r\n\r\n\r\n<p> Gyrus\u306f\u3001\u53c2\u7167\u3067\u304d\u308b\u540c\u69d8\u306e\u30e2\u30c7\u30eb\u3092\u8907\u6570\u4fdd\u6709\u3057\u3066\u3044\u307e\u3059\u3002 <\/p>\r\n\r\n\r\n\r\n<p>\u3057\u305f\u304c\u3063\u3066\u3001\u8cfc\u5165\u50be\u5411\u306f\u3001\u5b9f\u969b\u306e\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9\u306b\u3068\u3063\u3066\u975e\u5e38\u306b\u6709\u7528\u3067\u751f\u7523\u7684\u306a\u30e2\u30c7\u30eb\u3067\u3059\u3002 \u307e\u305f\u3001\u826f\u597d\u306a\u7d50\u679c\u3092\u5f97\u308b\u306b\u306f\u3001\u7279\u5b9a\u9867\u5ba2\u30c7\u30fc\u30bf\u306b\u5408\u308f\u305b\u3066\u8abf\u6574\/\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 \u3055\u3089\u306b\u3001\u307b\u3068\u3093\u3069\u306e\u5834\u5408\u3001\u30dc\u30c3\u30af\u30b9\u30e2\u30c7\u30eb\u306f\u3042\u307e\u308a\u9069\u3057\u3066\u3044\u307e\u305b\u3093\u3002 \u3059\u3079\u3066\u306e\u30e2\u30c7\u30eb\u306b\u306f\u3001\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u7ba1\u7406\u3068\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u8aac\u660e\u53ef\u80fd\u6027\u304a\u3088\u3073\u57fa\u790e\u30c1\u30a7\u30c3\u30af\u30e2\u30c7\u30eb\u3092\u52b9\u7387\u7684\u306b\u5b9f\u884c\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u304c\u5fc5\u8981\u3067\u3059\u3002<\/p>\r\n\r\n\r\n\r\n<p> <\/p>\r\n\r\n<\/div>\r\n<script>\r\n  var x = document.getElementById(\"view1\");\r\n  var y = document.getElementById(\"view2\");\r\n  var btn11 = document.getElementById(\"btn11\");\r\n  var btn12 = document.getElementById(\"btn12\");\r\nfunction btn1(){\r\n  x.className = \"show\";\r\n  y.className = \"hide\";\r\n  btn12.className = \"btn-disabled\";\r\n  btn11.className = \"btnx\";\r\ndocument.getElementById(\"demon\").innerHTML = \"Customizing a Propensity To Buy Model\";\r\n\r\n}\r\nfunction btn2(){\r\n  x.className = \"hide\";\r\n  y.className = \"show\";\r\n  btn11.className = \"btn-disabled\";\r\n  btn12.className = \"btnx\";\r\n  \r\n document.getElementById(\"demon\").innerHTML = \"\u8cfc\u5165\u50be\u5411\u30e2\u30c7\u30eb\u306e\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\";\r\n}\r\n<\/script>","protected":false},"excerpt":{"rendered":"<p>Background This blog outlines the steps involved and things to care about for transfer learning a propensity model. Sales team members could be inundated with several prospects. The best use of their time is by lead scoring and focusing on the prospects that have best chance to close. A Propensity-To-Buy model helps[\u2026]<\/p>\n","protected":false},"author":3,"featured_media":331,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[6],"tags":[40,39,41,38],"class_list":["post-289","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology","tag-ai-model-propensity","tag-churn","tag-lead-scoring","tag-propensity-to-buy"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Customizing a Propensity To Buy Model - Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies<\/title>\n<meta name=\"description\" content=\"Propensity to Buy \/ Lead Scoring model: A statistical approach and set of techniques used to identify the customer on those most likely to buy or respond\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Customizing a Propensity To Buy Model - Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies\" \/>\n<meta property=\"og:description\" content=\"Propensity to Buy \/ Lead Scoring model: A statistical approach and set of techniques used to identify the customer on those most likely to buy or respond\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/\" \/>\n<meta property=\"og:site_name\" content=\"Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies\" \/>\n<meta property=\"article:published_time\" content=\"2019-04-12T10:43:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-28T03:46:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1140\" \/>\n\t<meta property=\"og:image:height\" content=\"858\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Chakra Parvathaneni\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GyrusAI\" \/>\n<meta name=\"twitter:site\" content=\"@GyrusAI\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Chakra Parvathaneni\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/\"},\"author\":{\"name\":\"Chakra Parvathaneni\",\"@id\":\"https:\/\/gyrus.ai\/blog\/#\/schema\/person\/ef9660a4074508218cfd688bf9095c02\"},\"headline\":\"Customizing a Propensity To Buy Model\",\"datePublished\":\"2019-04-12T10:43:27+00:00\",\"dateModified\":\"2021-01-28T03:46:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/\"},\"wordCount\":970,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg\",\"keywords\":[\"AI model Propensity\",\"Churn\",\"Lead scoring\",\"Propensity to buy\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/\",\"url\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/\",\"name\":\"Customizing a Propensity To Buy Model - Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies\",\"isPartOf\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg\",\"datePublished\":\"2019-04-12T10:43:27+00:00\",\"dateModified\":\"2021-01-28T03:46:25+00:00\",\"description\":\"Propensity to Buy \/ Lead Scoring model: A statistical approach and set of techniques used to identify the customer on those most likely to buy or respond\",\"breadcrumb\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#primaryimage\",\"url\":\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg\",\"contentUrl\":\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg\",\"width\":1140,\"height\":858},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/gyrus.ai\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Customizing a Propensity To Buy Model\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/gyrus.ai\/blog\/#website\",\"url\":\"https:\/\/gyrus.ai\/blog\/\",\"name\":\"Gyrus AI\",\"description\":\"Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies\",\"publisher\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/gyrus.ai\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/gyrus.ai\/blog\/#organization\",\"name\":\"Gyrus AI\",\"url\":\"https:\/\/gyrus.ai\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/gyrus.ai\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2025\/02\/gyrus-1.png\",\"contentUrl\":\"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2025\/02\/gyrus-1.png\",\"width\":11400,\"height\":4500,\"caption\":\"Gyrus AI\"},\"image\":{\"@id\":\"https:\/\/gyrus.ai\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/GyrusAI\",\"https:\/\/www.linkedin.com\/company\/gyrusai\/\",\"https:\/\/www.youtube.com\/channel\/UCk2GzLj6xp0A6Wqix1GWSkw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/gyrus.ai\/blog\/#\/schema\/person\/ef9660a4074508218cfd688bf9095c02\",\"name\":\"Chakra Parvathaneni\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/cc0ddb7970b9bb38750d032d4827759280f344cea48df98f350ca6086059f462?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cc0ddb7970b9bb38750d032d4827759280f344cea48df98f350ca6086059f462?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cc0ddb7970b9bb38750d032d4827759280f344cea48df98f350ca6086059f462?s=96&d=mm&r=g\",\"caption\":\"Chakra Parvathaneni\"},\"url\":\"https:\/\/gyrus.ai\/blog\/author\/chakra-parvathaneni\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Customizing a Propensity To Buy Model - Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies","description":"Propensity to Buy \/ Lead Scoring model: A statistical approach and set of techniques used to identify the customer on those most likely to buy or respond","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/","og_locale":"en_US","og_type":"article","og_title":"Customizing a Propensity To Buy Model - Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies","og_description":"Propensity to Buy \/ Lead Scoring model: A statistical approach and set of techniques used to identify the customer on those most likely to buy or respond","og_url":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/","og_site_name":"Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies","article_published_time":"2019-04-12T10:43:27+00:00","article_modified_time":"2021-01-28T03:46:25+00:00","og_image":[{"width":1140,"height":858,"url":"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg","type":"image\/jpeg"}],"author":"Chakra Parvathaneni","twitter_card":"summary_large_image","twitter_creator":"@GyrusAI","twitter_site":"@GyrusAI","twitter_misc":{"Written by":"Chakra Parvathaneni","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#article","isPartOf":{"@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/"},"author":{"name":"Chakra Parvathaneni","@id":"https:\/\/gyrus.ai\/blog\/#\/schema\/person\/ef9660a4074508218cfd688bf9095c02"},"headline":"Customizing a Propensity To Buy Model","datePublished":"2019-04-12T10:43:27+00:00","dateModified":"2021-01-28T03:46:25+00:00","mainEntityOfPage":{"@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/"},"wordCount":970,"commentCount":0,"publisher":{"@id":"https:\/\/gyrus.ai\/blog\/#organization"},"image":{"@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#primaryimage"},"thumbnailUrl":"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg","keywords":["AI model Propensity","Churn","Lead scoring","Propensity to buy"],"articleSection":["Technology"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/","url":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/","name":"Customizing a Propensity To Buy Model - Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies","isPartOf":{"@id":"https:\/\/gyrus.ai\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#primaryimage"},"image":{"@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#primaryimage"},"thumbnailUrl":"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg","datePublished":"2019-04-12T10:43:27+00:00","dateModified":"2021-01-28T03:46:25+00:00","description":"Propensity to Buy \/ Lead Scoring model: A statistical approach and set of techniques used to identify the customer on those most likely to buy or respond","breadcrumb":{"@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#primaryimage","url":"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg","contentUrl":"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2019\/05\/Propensity-to-Buy-Model-1140x1176-new.jpg","width":1140,"height":858},{"@type":"BreadcrumbList","@id":"https:\/\/gyrus.ai\/blog\/customizing-a-propensity-to-buy-model\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/gyrus.ai\/blog\/"},{"@type":"ListItem","position":2,"name":"Customizing a Propensity To Buy Model"}]},{"@type":"WebSite","@id":"https:\/\/gyrus.ai\/blog\/#website","url":"https:\/\/gyrus.ai\/blog\/","name":"Gyrus AI","description":"Gyrus AI | Blog | Insights on AI &amp; Intelligent Media Search, In-scene Ad Placement, Automated Video Anonymization Technologies","publisher":{"@id":"https:\/\/gyrus.ai\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/gyrus.ai\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/gyrus.ai\/blog\/#organization","name":"Gyrus AI","url":"https:\/\/gyrus.ai\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/gyrus.ai\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2025\/02\/gyrus-1.png","contentUrl":"https:\/\/gyrus.ai\/blog\/wp-content\/uploads\/2025\/02\/gyrus-1.png","width":11400,"height":4500,"caption":"Gyrus AI"},"image":{"@id":"https:\/\/gyrus.ai\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/GyrusAI","https:\/\/www.linkedin.com\/company\/gyrusai\/","https:\/\/www.youtube.com\/channel\/UCk2GzLj6xp0A6Wqix1GWSkw"]},{"@type":"Person","@id":"https:\/\/gyrus.ai\/blog\/#\/schema\/person\/ef9660a4074508218cfd688bf9095c02","name":"Chakra Parvathaneni","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/secure.gravatar.com\/avatar\/cc0ddb7970b9bb38750d032d4827759280f344cea48df98f350ca6086059f462?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cc0ddb7970b9bb38750d032d4827759280f344cea48df98f350ca6086059f462?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cc0ddb7970b9bb38750d032d4827759280f344cea48df98f350ca6086059f462?s=96&d=mm&r=g","caption":"Chakra Parvathaneni"},"url":"https:\/\/gyrus.ai\/blog\/author\/chakra-parvathaneni\/"}]}},"_links":{"self":[{"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/posts\/289","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/comments?post=289"}],"version-history":[{"count":0,"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/posts\/289\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/media\/331"}],"wp:attachment":[{"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/media?parent=289"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/categories?post=289"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gyrus.ai\/blog\/wp-json\/wp\/v2\/tags?post=289"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}