├── .gitignore ├── README.md ├── app ├── dao.py ├── load_data.py ├── median_baseline.py ├── metrics.py ├── prophet_forecast.py ├── submission.py ├── wikimedia.py ├── xgb.py └── xgb_forecast.py ├── input └── .gitkeep ├── models └── .gitkeep ├── output └── .gitkeep ├── requirements.txt └── scripts ├── load_data.R ├── new_tables.sql ├── prophet_forecast.R └── tables.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/README.md -------------------------------------------------------------------------------- /app/dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/app/dao.py -------------------------------------------------------------------------------- /app/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/app/load_data.py -------------------------------------------------------------------------------- /app/median_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/app/median_baseline.py -------------------------------------------------------------------------------- /app/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/app/metrics.py -------------------------------------------------------------------------------- /app/prophet_forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/app/prophet_forecast.py -------------------------------------------------------------------------------- /app/submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/app/submission.py -------------------------------------------------------------------------------- /app/wikimedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/app/wikimedia.py -------------------------------------------------------------------------------- /app/xgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/app/xgb.py -------------------------------------------------------------------------------- /app/xgb_forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/app/xgb_forecast.py -------------------------------------------------------------------------------- /input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/load_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/scripts/load_data.R -------------------------------------------------------------------------------- /scripts/new_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/scripts/new_tables.sql -------------------------------------------------------------------------------- /scripts/prophet_forecast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/scripts/prophet_forecast.R -------------------------------------------------------------------------------- /scripts/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gmontamat/web-traffic-time-series-forecasting/HEAD/scripts/tables.sql --------------------------------------------------------------------------------