├── LICENSE ├── README.md ├── finance-analysis ├── .ipynb_checkpoints │ └── preprocessing-checkpoint.ipynb ├── analysis.ipynb ├── model.ipynb ├── model │ ├── xgb.joblib │ └── xgb_plus.joblib ├── model2.ipynb ├── model3.ipynb ├── preprocessing.ipynb └── test.csv ├── finance-server ├── dataAnalyze.py ├── db.py ├── main.py ├── model │ └── xgb_plus.joblib ├── predict.py └── route │ ├── __pycache__ │ ├── file_route.cpython-37.pyc │ ├── route.cpython-37.pyc │ └── user_route.cpython-37.pyc │ ├── file_route.py │ └── user_route.py ├── finance-web ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── public │ ├── bg.jpg │ ├── favicon.ico │ ├── index1.png │ ├── index2.png │ ├── money.png │ └── return.png ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── Home.vue │ │ ├── Login.vue │ │ ├── Personal │ │ │ ├── ChangePassword.vue │ │ │ ├── PersonInfo.vue │ │ │ ├── Personal.vue │ │ │ └── PredictRecord.vue │ │ ├── Register.vue │ │ └── Step │ │ │ ├── Step.vue │ │ │ ├── Step1.vue │ │ │ ├── Step2.vue │ │ │ └── Step3.vue │ ├── index.css │ ├── main.js │ ├── req.js │ ├── router.js │ └── utils │ │ ├── msg.js │ │ └── tools.js └── vite.config.js ├── img ├── img1.png ├── img2.png ├── img3.png ├── img4.png ├── img5.png └── img6.png └── requirement.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/README.md -------------------------------------------------------------------------------- /finance-analysis/.ipynb_checkpoints/preprocessing-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-analysis/.ipynb_checkpoints/preprocessing-checkpoint.ipynb -------------------------------------------------------------------------------- /finance-analysis/analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-analysis/analysis.ipynb -------------------------------------------------------------------------------- /finance-analysis/model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-analysis/model.ipynb -------------------------------------------------------------------------------- /finance-analysis/model/xgb.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-analysis/model/xgb.joblib -------------------------------------------------------------------------------- /finance-analysis/model/xgb_plus.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-analysis/model/xgb_plus.joblib -------------------------------------------------------------------------------- /finance-analysis/model2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-analysis/model2.ipynb -------------------------------------------------------------------------------- /finance-analysis/model3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-analysis/model3.ipynb -------------------------------------------------------------------------------- /finance-analysis/preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-analysis/preprocessing.ipynb -------------------------------------------------------------------------------- /finance-analysis/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-analysis/test.csv -------------------------------------------------------------------------------- /finance-server/dataAnalyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/dataAnalyze.py -------------------------------------------------------------------------------- /finance-server/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/db.py -------------------------------------------------------------------------------- /finance-server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/main.py -------------------------------------------------------------------------------- /finance-server/model/xgb_plus.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/model/xgb_plus.joblib -------------------------------------------------------------------------------- /finance-server/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/predict.py -------------------------------------------------------------------------------- /finance-server/route/__pycache__/file_route.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/route/__pycache__/file_route.cpython-37.pyc -------------------------------------------------------------------------------- /finance-server/route/__pycache__/route.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/route/__pycache__/route.cpython-37.pyc -------------------------------------------------------------------------------- /finance-server/route/__pycache__/user_route.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/route/__pycache__/user_route.cpython-37.pyc -------------------------------------------------------------------------------- /finance-server/route/file_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/route/file_route.py -------------------------------------------------------------------------------- /finance-server/route/user_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-server/route/user_route.py -------------------------------------------------------------------------------- /finance-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/.gitignore -------------------------------------------------------------------------------- /finance-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/index.html -------------------------------------------------------------------------------- /finance-web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/package-lock.json -------------------------------------------------------------------------------- /finance-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/package.json -------------------------------------------------------------------------------- /finance-web/public/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/public/bg.jpg -------------------------------------------------------------------------------- /finance-web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/public/favicon.ico -------------------------------------------------------------------------------- /finance-web/public/index1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/public/index1.png -------------------------------------------------------------------------------- /finance-web/public/index2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/public/index2.png -------------------------------------------------------------------------------- /finance-web/public/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/public/money.png -------------------------------------------------------------------------------- /finance-web/public/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/public/return.png -------------------------------------------------------------------------------- /finance-web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/App.vue -------------------------------------------------------------------------------- /finance-web/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/assets/logo.png -------------------------------------------------------------------------------- /finance-web/src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Home.vue -------------------------------------------------------------------------------- /finance-web/src/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Login.vue -------------------------------------------------------------------------------- /finance-web/src/components/Personal/ChangePassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Personal/ChangePassword.vue -------------------------------------------------------------------------------- /finance-web/src/components/Personal/PersonInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Personal/PersonInfo.vue -------------------------------------------------------------------------------- /finance-web/src/components/Personal/Personal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Personal/Personal.vue -------------------------------------------------------------------------------- /finance-web/src/components/Personal/PredictRecord.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Personal/PredictRecord.vue -------------------------------------------------------------------------------- /finance-web/src/components/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Register.vue -------------------------------------------------------------------------------- /finance-web/src/components/Step/Step.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Step/Step.vue -------------------------------------------------------------------------------- /finance-web/src/components/Step/Step1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Step/Step1.vue -------------------------------------------------------------------------------- /finance-web/src/components/Step/Step2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Step/Step2.vue -------------------------------------------------------------------------------- /finance-web/src/components/Step/Step3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/components/Step/Step3.vue -------------------------------------------------------------------------------- /finance-web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/index.css -------------------------------------------------------------------------------- /finance-web/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/main.js -------------------------------------------------------------------------------- /finance-web/src/req.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/req.js -------------------------------------------------------------------------------- /finance-web/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/router.js -------------------------------------------------------------------------------- /finance-web/src/utils/msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/utils/msg.js -------------------------------------------------------------------------------- /finance-web/src/utils/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/src/utils/tools.js -------------------------------------------------------------------------------- /finance-web/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/finance-web/vite.config.js -------------------------------------------------------------------------------- /img/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/img/img1.png -------------------------------------------------------------------------------- /img/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/img/img2.png -------------------------------------------------------------------------------- /img/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/img/img3.png -------------------------------------------------------------------------------- /img/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/img/img4.png -------------------------------------------------------------------------------- /img/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/img/img5.png -------------------------------------------------------------------------------- /img/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/img/img6.png -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceresOPA/Financial-Fraud-Predict-System/HEAD/requirement.txt --------------------------------------------------------------------------------