├── .github └── workflows │ ├── greetings.yml │ └── label.yml ├── .gitpod.yml ├── Dockerfile ├── LICENSE ├── Notebook └── Credit_Card_Fraud_Detection_by_Group_3_Zummit_Africa_AI_ML_Team.ipynb ├── Paper Review PDF └── Credit card fraud detection .pdf ├── README.md ├── app.py ├── backend ├── Dockerfile ├── __pycache__ │ └── app.cpython-38.pyc ├── app.py ├── credit_fraud.pkl ├── favicon.png └── requirements.txt ├── credit_fraud.pkl ├── docker-compose.yml ├── favicon.png ├── frontend ├── Dockerfile ├── app.py ├── image.png └── requirements.txt ├── heroku.yml ├── image.png ├── requirements.txt ├── requirements_api.txt └── streamlit_app.py /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /Notebook/Credit_Card_Fraud_Detection_by_Group_3_Zummit_Africa_AI_ML_Team.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/Notebook/Credit_Card_Fraud_Detection_by_Group_3_Zummit_Africa_AI_ML_Team.ipynb -------------------------------------------------------------------------------- /Paper Review PDF/Credit card fraud detection .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/Paper Review PDF/Credit card fraud detection .pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/app.py -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/__pycache__/app.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/backend/__pycache__/app.cpython-38.pyc -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/credit_fraud.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/backend/credit_fraud.pkl -------------------------------------------------------------------------------- /backend/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/backend/favicon.png -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /credit_fraud.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/credit_fraud.pkl -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/favicon.png -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/frontend/app.py -------------------------------------------------------------------------------- /frontend/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/frontend/image.png -------------------------------------------------------------------------------- /frontend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/frontend/requirements.txt -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/heroku.yml -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/image.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/requirements_api.txt -------------------------------------------------------------------------------- /streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nneji123/Credit-Card-Fraud-Detection/HEAD/streamlit_app.py --------------------------------------------------------------------------------