Erdos1729 / food-demand-forecasting

This repository will work around solving the problem of food demand forecasting using machine learning.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

title

Food Demand Forecasting Challenge

About Food Demand Forecasting Challenge

Demand forecasting is a key component to every growing online business. Without proper demand forecasting processes in place,it can be nearly impossible to have the right amount of stock on hand at any given time. A food delivery service has to dealwith a lot of perishable raw materials which makes it all the more important for such a company to accurately forecast daily and weekly demand.

Too much invertory in the warehouse means more risk of wastage,and not enough could lead to out-of-stocks - and push customers to seek solutions from your competitors. In this challenge, get a taste of demand forecasting challenge using a real datasets.

What is the Problem Statement?

Your client is a meal delivery company which operates in multiple cities.They have various fulfillment centers in these cities for dispatching meal orders to their customers. The client wants you to help these centers with demand forecasting for upcoming weeks so that these centers will plan the stock of raw materials accordingly. The replenishment of majority of raw materials is done on weekly basis and since the raw material is perishable,the procurement planning is of utmost importance.Secondly, staffing of the centers is also one area wherein accurate demand forecasts are really helpful.Given the following information,the task is to predict the demand for the next 10 weeks(Weeks: 146-155) for the center-meal combinations in the test set:

  • Historical data of demand for a product-center combination(Weeks:1 to 145)
  • Product(Meal) features such as category,sub-category,current price and discount
  • Information for fulfillment center like center area, city information etc.

title

Evaluation Metric

Submissions are evaluated on Root Mean Square Error (RMSE) between the predicted probability and the observed target. The evaluation metric for this competition is 100*RMSLE where RMSLE is Root of Mean Squared Logarithmic Error across all entries in the test set.

Data Split

Test data is further randomly divided into Public (30%) and Private (70%) data.

Solution

  • Converted this time series problem to regression problem.

Data transformation

  1. Here number of orders placed (target variable) is highly right skewd so that Log transformation is applied.
  2. Log transformation of base_price, checkout_price, and num_orders.

Feature engineering

  1. For every record difference between base_price and checkout_price.
  2. Differenc of previous week checkout_price and current weeks checkout_price.
  3. Lag features of 10,11, and 12 week lagging features. Here I have used lag of last 10 weeks because we have to predict for 10 weeks in test dataset.
  4. Exponentially weighted mean over last 10, 11, and 12 weeks.

Cross validation

  • Last 10 weeks (136 - 145) of every center-meal pair data is used as a Validation dataset from train dataset.

Model

  1. One single CatBoost model which has RMSLE of 0.54.
  2. High regularization so it does not overfit because of new features made using target variable.

What were the problems identified?

  1. Just using original data as it is and using catboost regressor gave RMSLE of 1.58
  2. Only using difference between base_price and checkout_price, difference between base_price and checkout_price as a features and not using any lag and exponentially weighed features didn't give good score.
  3. Rolling mean and median over last 26, 52, 104 weeks as features didn't work that well, feature importance was low.
  4. Geographical features had low feature importance, So didn't use them in final model.

Improvements done

  1. Extensive hyper parameter tuning and feature selection.
  2. Create more features based on Categorical Encoding methods like mean encoding, frequency encoding, hash encoding etc.
  3. Try more algorithms like xgboost, LightGBM, Linear Regression etc.
  4. Try ARIMA , Prophet etc.
  5. Ensemble of different models.

About

This repository will work around solving the problem of food demand forecasting using machine learning.

License:MIT License


Languages

Language:Jupyter Notebook 100.0%