├── .gitignore ├── LICENSE ├── README.md ├── data └── .gitignore ├── models └── .gitignore ├── requirements-dev.txt ├── requirements.txt ├── src ├── __init__.py ├── flask_app.py ├── settings.py └── train.py └── tests └── test_flask.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/data/.gitignore -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/models/.gitignore -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | nose==1.3.7 2 | 3 | -r requirements.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/src/flask_app.py -------------------------------------------------------------------------------- /src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/src/settings.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/src/train.py -------------------------------------------------------------------------------- /tests/test_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudacademy/fraud-detection/HEAD/tests/test_flask.py --------------------------------------------------------------------------------