TA / README.md
waseem11's picture
Update README.md
1e10b2b verified
|
Raw
History Blame Contribute Delete
495 Bytes
---
title: FFCL Consumable Prediction API
emoji: ๐Ÿš€
colorFrom: blue
colorTo: green
sdk: docker
app_port: 7860
pinned: false
---
# FFCL Consumable Prediction API
This API predicts the required quantity of turnaround consumables using an XGBoost Regression model.
## Input Example
```json
{
"unit_price": 209.71,
"y2017": 160,
"y2019": 0,
"y2021": 260,
"area": "FM-S",
"dept": "FM-CAN",
"category": "WELDING PRODUCTS"
}
```
## Output
```json
{
"Predicted Qty": 27.77
}
```