fraud-detection-model / config.json
saifhmb's picture
pushing model to the Hugging Face Hub
f79a977 verified
raw
history blame
952 Bytes
{
"sklearn": {
"columns": [
"Sender_Country",
"Bene_Country",
"USD_amount",
"Transaction_Type"
],
"environment": [
"scikit-learn=1.2.2"
],
"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-4j9v1oni.pkl"
},
"model_format": "pickle",
"task": "tabular-classification",
"use_intelex": false
}
}