[go: up one dir, main page]

0% found this document useful (0 votes)
203 views12 pages

Walmart Sales Time Series Forecasting Using Deep Learning

The document discusses using deep learning models like LSTMs to forecast Walmart sales based on time series data. It explores preprocessing the data and training traditional models like linear regression as baselines. Various deep learning models are tested, with a stacked LSTM ensemble providing the best performance in predicting future Walmart sales.

Uploaded by

Teto Schedule
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
203 views12 pages

Walmart Sales Time Series Forecasting Using Deep Learning

The document discusses using deep learning models like LSTMs to forecast Walmart sales based on time series data. It explores preprocessing the data and training traditional models like linear regression as baselines. Various deep learning models are tested, with a stacked LSTM ensemble providing the best performance in predicting future Walmart sales.

Uploaded by

Teto Schedule
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

1 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

2 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

3 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

4 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

LinearRegression(copy_X=True, fit_intercept=True, n_jobs=None,

normalize=False)

5 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

RandomForestRegressor(bootstrap=True, ccp_alpha=0.0,

criterion='mse', max_depth=None, max_features='auto',

max_leaf_nodes=None, max_samples=None,

min_impurity_decrease=0.0, min_impurity_split=None,

min_samples_leaf=1, min_samples_split=2,

min_weight_fraction_leaf=0.0, n_estimators=100, n_jobs=None,

oob_score=False, random_state=None, verbose=0, warm_start=False)

6 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

KNeighborsRegressor(algorithm='auto', leaf_size=30,

metric='minkowski', metric_params=None, n_jobs=None,

n_neighbors=1, p=2, weights='uniform')

7 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

XGBRegressor(base_score=0.5, booster='gbtree',

colsample_bylevel=1, colsample_bynode=1, colsample_bytree=1,

gamma=0, importance_type='gain', learning_rate=0.1,

max_delta_step=0, max_depth=3, min_child_weight=1, missing=None,

n_estimators=100, n_jobs=1, nthread=None,

objective='reg:linear', random_state=0, reg_alpha=0,

reg_lambda=1, scale_pos_weight=1, seed=None, silent=None,

8 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

subsample=1, verbosity=1)

9 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

10 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

11 of 12 10/14/2021, 10:13 AM
Walmart Sales Time Series Forecasting using Deep Learning |... https://medium.com/nerd-for-tech/walmart-sales-time-series-f...

12 of 12 10/14/2021, 10:13 AM

You might also like