This is simply a containerized pre-built fraud-detection model described inthe official fraud detection guide and the official fraud detection devel guide.
Simply execute run.sh and the model will be automatically created and packed in a container called fraud-detection.
./run.sh
podman push fraud-detection your-registry/fraud-detection
Run with:
podman run --rm -v $(pwd)/input:/app/input:z -e TRESHOLD_PREDICTION=0.999999 your-requistry/fraud-detection
Set TRESHOLD_PREDICTION if you want to change the minimal likelyhood that triggers a fraud alert for each transaction inspected. Default is 0.999999.