titanic / config.json
MarceloLZR's picture
Upload 5 files
205ff18 verified
{
"sklearn": {
"columns": [
"PassengerId",
"Pclass",
"Name",
"Sex",
"Age",
"SibSp",
"Parch",
"Ticket",
"Fare",
"Cabin",
"Embarked"
],
"environment": [
"scikit-learn=1.1.1"
],
"example_input": {
"PassengerId": [
1191
],
"Pclass": [
1
],
"Name": [
"Sherlock Holmes"
],
"Sex": [
"male"
],
"Age": [
30
],
"SibSp": [
0
],
"Parch": [
0
],
"Ticket": [
"C.A.29395"
],
"Fare": [
12
],
"Cabin": [
"F44"
],
"Embarked": [
"S"
]
},
"model": {
"file": "sklean_model.jpblib"
},
"task": "tabular-classificaation"
}
}