rftest_jv / config.json
JackVines's picture
Create config.json
2b965fb
raw
history blame
570 Bytes
{
"sklearn": {
"columns": ['Pclass', 'Sex', 'Age', 'SibSp', 'Parch', 'Embarked', 'CabinBool', 'FareBand'],
"environment": ['scikit-learn="1.1.1"', "numpy", "pandas"],
"example_input": {
"Pclass": [3,2,1],
"Sex": [1,0,1],
"Age": [1,2,3],
"SibSp": [0,1,0],
"Parch": [1,0,2],
"Embarked": [1,2,3],
"CabinBool": [1,0,1],
"FareBand": [1,2,4]
},
"model": {"file": "randomforest.joblib"},
"task": "tabular-classification",
}
}