This is a web application built with ASP.NET MVC that helps detect fraudulent transactions and loan applications using trained machine learning models served through Flask APIs.
🚀 Hosted at:
https://team2-ai.runasp.net
You can access and interact with the fraud detection modules directly through the hosted web interface.
The project consists of two main fraud detection modules:
-
Transactions Fraud Detection
Uses user-inputted transaction data to detect fraud. -
Loans Fraud Detection
Uses loan application details to predict fraudulent applications.
These models are hosted via Flask APIs, and this MVC app sends user data to those APIs and displays the prediction results in a clean UI.
-
🔄 Transactions API:
GitHub Repo: transactionsMLapi -
💸 Loans API:
GitHub Repo: LoansMLapi
Each API exposes a /predict endpoint that receives a JSON object with input data and returns a JSON response with a binary prediction:
{ "prediction": 0 } // Not Fraud
{ "prediction": 1 } // Fraud