├── .gitattributes ├── .github └── workflows │ └── ci-config.yml ├── LICENSE ├── README.md ├── app ├── Dockerfile ├── app_runner.py ├── models │ └── creditcardfraud.pb ├── requirements.txt └── script.py ├── connectinsight ├── Dockerfile ├── dbloader.py ├── entrypoint.sh ├── requirements.txt └── wait-for.sh ├── dataloader ├── Dockerfile ├── data │ └── creditcard.csv ├── load.py └── requirements.txt ├── demo_flow.png ├── demo_hash.png ├── demo_redisAI.png ├── demo_res.png ├── docker-compose.yaml ├── example_client ├── client.py └── requirements.txt └── tests └── test_demo_flow.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/.github/workflows/ci-config.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/app_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/app/app_runner.py -------------------------------------------------------------------------------- /app/models/creditcardfraud.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/app/models/creditcardfraud.pb -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | redisai 4 | -------------------------------------------------------------------------------- /app/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/app/script.py -------------------------------------------------------------------------------- /connectinsight/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/connectinsight/Dockerfile -------------------------------------------------------------------------------- /connectinsight/dbloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/connectinsight/dbloader.py -------------------------------------------------------------------------------- /connectinsight/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/connectinsight/entrypoint.sh -------------------------------------------------------------------------------- /connectinsight/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | click -------------------------------------------------------------------------------- /connectinsight/wait-for.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/connectinsight/wait-for.sh -------------------------------------------------------------------------------- /dataloader/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/dataloader/Dockerfile -------------------------------------------------------------------------------- /dataloader/data/creditcard.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/dataloader/data/creditcard.csv -------------------------------------------------------------------------------- /dataloader/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/dataloader/load.py -------------------------------------------------------------------------------- /dataloader/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | redis 4 | -------------------------------------------------------------------------------- /demo_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/demo_flow.png -------------------------------------------------------------------------------- /demo_hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/demo_hash.png -------------------------------------------------------------------------------- /demo_redisAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/demo_redisAI.png -------------------------------------------------------------------------------- /demo_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/demo_res.png -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /example_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/example_client/client.py -------------------------------------------------------------------------------- /example_client/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | redisai 4 | -------------------------------------------------------------------------------- /tests/test_demo_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisAI/FraudDetectionDemo/HEAD/tests/test_demo_flow.py --------------------------------------------------------------------------------