From 66ea4f6fafc7db91ff43de5f0a37a3a418849d79 Mon Sep 17 00:00:00 2001 From: Priyanka Sharma <90178058+Prisha212@users.noreply.github.com> Date: Mon, 8 May 2023 15:23:51 -0700 Subject: [PATCH] Update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ada57c8..7b5809a 100644 --- a/README.md +++ b/README.md @@ -1 +1,10 @@ -# CreditCard_Fraud_Detection \ No newline at end of file +# CreditCard_Fraud_Detection + +This project is developed as a part of CMPE 255 Data Mining Coursework. + +**Data Description +The dataset includes credit card transactions carried out by European cardholders in September 2013. It contains information on transactions made in two days, with 492 fraudulent transactions out of 284,807 transactions. This means that the dataset is significantly imbalanced, with only 0.172% of transactions being classified as fraud. + +The dataset only contains numerical features that have undergone a PCA transformation, with the exception of 'Time' and 'Amount'. The 'Time' feature indicates the time elapsed between the first transaction and each subsequent transaction, while the 'Amount' feature represents the transaction amount. The response variable is 'Class', which takes a value of 1 for fraud and 0 for legitimate transactions. + +Due to the class imbalance, it is recommended to evaluate the model performance using the Area Under the Precision-Recall Curve (AUPRC) instead of the confusion matrix accuracy. The latter is not meaningful in unbalanced classification problems. Unfortunately, the original features and more details about the data cannot be disclosed due to confidentiality concerns