Search results for "Series B"

10 seats remaining | A series of live ML strategy workshops

Sponsored Post Unlike traditional online courses, Foster Provost’s workshops will give you the chance to engage live with a world-class expert and an intimate community of industry professionals. So far we have participants from LinkedIn, Spotify, Ralph Lauren, and many other exciting companies joining. There are only 10 seats left, we would love to see […]

Continue Reading
Muhammad Khubaib Sarfraz

A Gentle Introduction to Taylor Series

A Gentle Introduction to Taylor Series Taylor series expansion is an awesome concept, not only the world of mathematics, but also in optimization theory, function approximation and machine learning. It is widely applied in numerical computations when estimates of a function’s values at different points are required. In this tutorial, you will discover Taylor series […]

Continue Reading
Line Plot of Expected vs. Births Predicted Using Random Forest

Random Forest for Time Series Forecasting

Random Forest is a popular and effective ensemble machine learning algorithm. It is widely used for classification and regression predictive modeling problems with structured (tabular) data sets, e.g. data as it looks in a spreadsheet or database table. Random Forest can also be used for time series forecasting, although it requires that the time series […]

Continue Reading
Plot of Actual vs. Predicted Values for Last 12 Months of Car Sales

Time Series Forecasting With Prophet in Python

Time series forecasting can be challenging as there are many different methods you could use and many different hyperparameters for each method. The Prophet library is an open-source library designed for making forecasts for univariate time series datasets. It is easy to use and designed to automatically find a good set of hyperparameters for the […]

Continue Reading
Line Plot of Expected vs. Births Predicted Using XGBoost

How to Use XGBoost for Time Series Forecasting

XGBoost is an efficient implementation of gradient boosting for classification and regression problems. It is both fast and efficient, performing well, if not the best, on a wide range of predictive modeling tasks and is a favorite among data science competition winners, such as those on Kaggle. XGBoost can also be used for time series […]

Continue Reading

How do I handle discontiguous time series data?

A How do I handle discontiguous time series data? Some time series data is discontiguous. This means that the interval between the observations is not consistent, but may vary. You can learn more about contiguous vs discontiguous time series datasets in this post: Taxonomy of Time Series Forecasting Problems There are many ways to handle […]

Continue Reading