diff --git a/Real-World/1-Applications/README.md b/Real-World/1-Applications/README.md index 26e0aa19..58555b2c 100644 --- a/Real-World/1-Applications/README.md +++ b/Real-World/1-Applications/README.md @@ -13,7 +13,7 @@ One of the major consumers of classical machine learning models is the finance i We learned about [k-means clustering](Clustering/2-K-Means/README.md) earlier in the course, but how can it be used to solve problems related to credit card fraud? -https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.680.1195&rep=rep1&type=pdf +K-means clustering comes in handy during a credit card fraud detection technique called **outlier detection**. Outliers, or deviations in observations about a set of data, can tell us if a credit card is being used in a normal capacity, or if something funky is going on. As shown in [this paper](https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.680.1195&rep=rep1&type=pdf), you can sort credit card data using a k-means clustering algorithm and assign each transaction to a cluster based on how much of an outlier it appears to be. Then, you can evaluate for riskiest cluster for fraudulent versus legitimate transactions. ### Wealth management