mlops-tourism / input_schema.json
mainak555's picture
Upload input_schema.json with huggingface_hub
9cafb89 verified
{
"inputs": [
{
"name": "CityTier",
"label": "City Tier",
"type": "select",
"required": true,
"datatype": "number",
"options": [
1,
2,
3
],
"binary": false
},
{
"name": "Designation",
"label": "Designation",
"type": "select",
"required": true,
"datatype": "string",
"options": {
"AVP": "AVP",
"Executive": "Executive",
"Manager": "Manager",
"Senior Manager": "Senior Manager",
"VP": "VP"
},
"binary": false
},
{
"name": "MaritalStatus",
"label": "Marital Status",
"type": "select",
"required": true,
"datatype": "string",
"options": {
"Divorced": "Divorced",
"Married": "Married",
"Single": "Single",
"Unmarried": "Unmarried"
},
"binary": false
},
{
"name": "Occupation",
"label": "Occupation",
"type": "select",
"required": true,
"datatype": "string",
"options": {
"Free Lancer": "Free Lancer",
"Large Business": "Large Business",
"Salaried": "Salaried",
"Small Business": "Small Business"
},
"binary": false
},
{
"name": "Passport",
"label": "Passport",
"type": "select",
"required": true,
"datatype": "number",
"options": [
0,
1
],
"binary": true
},
{
"name": "ProductPitched",
"label": "Product Pitched",
"type": "select",
"required": true,
"datatype": "string",
"options": {
"Basic": "Basic",
"Deluxe": "Deluxe",
"King": "King",
"Standard": "Standard",
"Super Deluxe": "Super Deluxe"
},
"binary": false
},
{
"name": "Age",
"label": "Age",
"type": "number",
"required": true,
"datatype": "number",
"min": 18,
"max": 61,
"step": 0.01,
"is_int": false
},
{
"name": "DurationOfPitch",
"label": "Duration Of Pitch",
"type": "number",
"required": true,
"datatype": "number",
"min": 5,
"max": 36,
"step": 0.01,
"is_int": false
},
{
"name": "NumberOfFollowups",
"label": "Number Of Followups",
"type": "number",
"required": true,
"datatype": "number",
"min": 1,
"max": 6,
"step": 0.01,
"is_int": false
},
{
"name": "PreferredPropertyStar",
"label": "Preferred Property Star",
"type": "number",
"required": true,
"datatype": "number",
"min": 3,
"max": 5,
"step": 0.01,
"is_int": false
}
],
"model_name": "BaggingClassifier",
"model_version": "v1.0-build.21327740410",
"schema_version": [
"1.0"
]
}