fraud-detection-model / config.json
saifhmb's picture
pushing model to the Hugging Face Hub
9d63079 verified
raw
history blame contribute delete
No virus
961 Bytes
{
"sklearn": {
"columns": [
"Sender_Country",
"Bene_Country",
"USD_amount",
"Transaction_Type"
],
"environment": [
"scikit-learn=1.5.0"
],
"example_input": {
"Bene_Country": [
"COMOROS",
"CANADA",
"MOROCCO"
],
"Sender_Country": [
"SRI-LANKA",
"USA",
"USA"
],
"Transaction_Type": [
"MOVE-FUNDS",
"PAY-CHECK",
"MAKE-PAYMENT"
],
"USD_amount": [
598.31,
398.72,
87.03
]
},
"model": {
"file": "skops-jbninwmt.pkl"
},
"model_format": "pickle",
"task": "tabular-classification"
}
}