Credit-Card-Risk-Model / config.json
saifhmb's picture
pushing model to the Hugging Face Hub
8e160d7 verified
raw
history blame contribute delete
No virus
1.57 kB
{
"sklearn": {
"columns": [
"AGE",
"INCOME",
"GENDER",
"MARITAL",
"NUMKIDS",
"NUMCARDS",
"HOWPAID",
"MORTGAGE",
"STORECAR",
"LOANS"
],
"environment": [
"scikit-learn=1.2.2"
],
"example_input": {
"AGE": [
32,
45,
25
],
"GENDER": [
"m",
"f",
"f"
],
"HOWPAID": [
"weekly ",
"weekly ",
"weekly "
],
"INCOME": [
21772,
27553,
23477
],
"LOANS": [
1,
2,
1
],
"MARITAL": [
"married ",
"divsepwid",
"single "
],
"MORTGAGE": [
"y",
"y",
"n"
],
"NUMCARDS": [
2,
6,
1
],
"NUMKIDS": [
1,
4,
1
],
"STORECAR": [
3,
5,
2
]
},
"model": {
"file": "skops-akmmropo.pkl"
},
"model_format": "pickle",
"task": "tabular-classification"
}
}