Search results for "language models"

How to Get Started with Kaggle

How to Get Started with Kaggle

4-Step Process for Getting Started and Getting Good at Competitive Machine Learning. Kaggle is a community and site for hosting machine learning competitions. Competitive machine learning can be a great way to develop and practice your skills, as well as demonstrate your capabilities. In this post, you will discover a simple 4-step process to get […]

Continue Reading
Python Environment for Time Series Forecasting

Python Environment for Time Series Forecasting

The Python ecosystem is growing and may become the dominant platform for applied machine learning. The primary rationale for adopting Python for time series forecasting is because it is a general-purpose programming language that you can use both for R&D and in production. In this post, you will discover the Python ecosystem for time series […]

Continue Reading
Python3 Version

How to Create a Linux Virtual Machine For Machine Learning Development With Python 3

Linux is an excellent environment for machine learning development with Python. The tools can be installed quickly and easily and you can develop and run large models directly. In this tutorial, you will discover how to create and setup a Linux virtual machine for machine learning with Python. After completing this tutorial, you will know: […]

Continue Reading
How to Check if Time Series Data is Stationary with Python

How to Check if Time Series Data is Stationary with Python

Time series is different from more traditional classification and regression predictive modeling problems. The temporal structure adds an order to the observations. This imposed order means that important assumptions about the consistency of those observations needs to be handled specifically. For example, when modeling, there are assumptions that the summary statistics of observations are consistent. […]

Continue Reading
Top Books on Time Series Forecasting With R

Top Books on Time Series Forecasting With R

Time series forecasting is a difficult problem. Unlike classification and regression, time series data also adds a time dimension which imposes an ordering of observations. This turns rows into a sequence which requires careful and specific handling. In this post, you will discover the top books for time series analysis and forecasting in R. These […]

Continue Reading
How To Implement Logistic Regression With Stochastic Gradient Descent From Scratch With Python

How To Implement Logistic Regression From Scratch in Python

Logistic regression is the go-to linear classification algorithm for two-class problems. It is easy to implement, easy to understand and gets great results on a wide variety of problems, even when the expectations the method has of your data are violated. In this tutorial, you will discover how to implement logistic regression with stochastic gradient […]

Continue Reading
How to Implement Linear Regression With Stochastic Gradient Descent From Scratch With Python

How to Implement Linear Regression From Scratch in Python

The core of many machine learning algorithms is optimization. Optimization algorithms are used by machine learning algorithms to find a good set of model parameters given a training dataset. The most common optimization algorithm used in machine learning is stochastic gradient descent. In this tutorial, you will discover how to implement stochastic gradient descent to […]

Continue Reading