Skip to content

Instantly share code, notes, and snippets.

@llSourcell
Created April 24, 2018 22:58
Show Gist options
  • Select an option

  • Save llSourcell/53cf99ed89ebf7b410169c4170d3d004 to your computer and use it in GitHub Desktop.

Select an option

Save llSourcell/53cf99ed89ebf7b410169c4170d3d004 to your computer and use it in GitHub Desktop.
## Rule based approach
## pseudocode
def traditional_fraud_detection(user_purchase_transaction):
purchase = user_purchase_transaction
if (purchase.location == Zucks_office) & (purchase.amount > 1000)
return false
else
return true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment