Ranking ATM based on Utilization and Economic Data (Scoring/Rank Model)

I have a sample data of around 10 ATM's Locations along with their Utilization Count (Deposits, Withdrawals and Others) for the past 3 months. I am planning to collect additional data such as nearby places of Commercial Interest and Others where there might be demand of Cash. The data is collected for approximately 300 meters of each ATM, i.e., places of Commercial Interest nearby the ATM.

I would like to build a 'Scoring/Rank Model' which can take all these inputs into consideration and Rank these 10 ATM based on Utilization and places of economic interest.

As much I have searched Google, I could not find any answers which can provide a solution. I am pretty new to Data Science and any inputs/suggestion will be really valuable.

Topic model-selection scoring evaluation predictive-modeling

Category Data Science


If you want to use a prediction model, then you need a well-defined target. In your case, the Utilization of an ATM is a vague term. You cannot measure it as it is right now. If you solve this problem, then what you are looking at is algorithms called Ranking Methods or Learning-to-Rank

Abstract from Wikipedia

Learning to rank or machine-learned ranking (MLR) is the application of machine learning, typically supervised, semi-supervised or reinforcement learning, in the construction of ranking models for information retrieval systems. Training data consists of lists of items with some partial order specified between items in each list. This order is typically induced by giving a numerical or ordinal score or a binary judgment (e.g. "relevant" or "not relevant") for each item. The ranking model's purpose is to rank, i.e. produce a permutation of items in new, unseen lists in a way which is "similar" to rankings in the training data in some sense.

Let's move to another working domain to make the example easier to understand. The example was taken from TowardsDataScience tutorial page.

You have an e-commerce shop and you want to rank your products with that way that will be sorted on a search page and maximize your revenue. The features you have are the attributes of the product and the target is if the visitor bought or not on that session.

You train then a Classifier (LogisticRegression for instance) and get the probability of prediction for that class as the ranking.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.