Food Demand Forecasting
Predict the number of orders for upcoming 10 weeks
@kaggle.kannanaikkal_food_demand_forecasting
Predict the number of orders for upcoming 10 weeks
@kaggle.kannanaikkal_food_demand_forecasting
CREATE TABLE meal_info (
"meal_id" BIGINT,
"category" VARCHAR,
"cuisine" VARCHAR
);
CREATE TABLE test (
"id" BIGINT,
"week" BIGINT,
"center_id" BIGINT,
"meal_id" BIGINT,
"checkout_price" DOUBLE,
"base_price" DOUBLE,
"emailer_for_promotion" BIGINT,
"homepage_featured" BIGINT
);
CREATE TABLE train (
"id" BIGINT,
"week" BIGINT,
"center_id" BIGINT,
"meal_id" BIGINT,
"checkout_price" DOUBLE,
"base_price" DOUBLE,
"emailer_for_promotion" BIGINT,
"homepage_featured" BIGINT,
"num_orders" BIGINT
);
CREATE TABLE fulfilment_center_info (
"center_id" BIGINT,
"city_code" BIGINT,
"region_code" BIGINT,
"center_type" VARCHAR,
"op_area" DOUBLE
);
CREATE TABLE sample_submission (
"id" BIGINT,
"num_orders" BIGINT
);
Anyone who has the link will be able to view this.