renathy
renathy

Reputation: 5345

Azure ML: finding the very similar client/payer

I am very new to Azure Machine Learning and Machine Learning also.

Let's say I have a list of some input variables {a1, a2, .. an} that define client (payer). The objective is to find very similar Payers based on these variables. And afterwards using this Azure service and display them in some table.

Can we use Azurue for this? Which algorithm is more likely to use?

Upvotes: 0

Views: 24

Answers (1)

yoape
yoape

Reputation: 3315

First you should figure out how you want to determine if two payers are similar. I suggest looking for a model for this in the are of Data Science and Machine Learning, https://en.m.wikipedia.org/wiki/Similarity_learning. It doesn't have anything to do with Azure specifically. If you find a model/algorithm that works for you, implement that in some tool (I suggest R (https://www.rstudio.com/) but there are other options) or you can play around with it as an Experiment in Azure ML.

Once you have your R script (or Python) you can operationalize that with Azure ML and use it in your Web App or LOB solution.

Upvotes: 1

Related Questions