Articles About Machine Learning

Books for Machine Learning with R

Last Updated on August 16, 2020 R is a powerful platform for data analysis and machine learning. It is my main workhorse for things like competitions and consulting work. The reason is the large amounts of powerful algorithms available, all on the one platform. In this post I want to point out some resources you can use to get started in R for machine learning. Kick-start your project with my new book Machine Learning Mastery With R, including step-by-step tutorials […]

Read more

Machine Learning Communities

Last Updated on June 7, 2016 Online communities are invaluable in machine learning, regardless of your skill level. The reason is that, like programming, you never stop learning. You simply cannot know everything, there are always new algorithms, new data and new combinations to discover and practice. Communities help. You can get your questions answered, learn by answering other peoples questions and discover new areas from reading through the exchanges. Machine learning communities have had a big impact on my […]

Read more

Machine Learning is Kaggle Competitions

Last Updated on September 5, 2016 Julia Evans wrote a post recently titled “Machine learning isn’t Kaggle competitions“. It was an interesting post because it pointed out an important truth. If you want to solve business problems using machine learning, doing well at Kaggle competitions is not a good indicator of that skills. The rationale is that the work required to do well in a Kaggle competition is only a piece of what is required to deliver a business benefit. […]

Read more

Data Science Screencasts: A Data Origami Review

Last Updated on June 7, 2016 Data Origami is a new website by Cameron Davidson-Pilon that provides data science screencasts. It is a cool idea and a cool site. Cameron was kind enough to give me access to the site so that I could review it. I watched all of the videos I could and wrote up all my notes, and in this post you will get a sneak peek into Cameron’s new site Data Origami. Data Origami Logo Data […]

Read more

How to Load Data in Python with Scikit-Learn

Last Updated on December 13, 2019 Before you can build machine learning models, you need to load your data into memory. In this post you will discover how to load data for machine learning in Python using scikit-learn. Kick-start your project with my new book Machine Learning Mastery With Python, including step-by-step tutorials and the Python source code files for all examples. Let’s get started. Update March/2018: Added alternate link to download the dataset as the original appears to have […]

Read more

Rescaling Data for Machine Learning in Python with Scikit-Learn

Last Updated on June 30, 2020 Your data must be prepared before you can build models. The data preparation process can involve three steps: data selection, data preprocessing and data transformation. In this post you will discover two simple data transformation methods you can apply to your data in Python using scikit-learn. Kick-start your project with my new book Data Preparation for Machine Learning, including step-by-step tutorials and the Python source code files for all examples. Let’s get started. Update: […]

Read more

Feature Selection in Python with Scikit-Learn

Last Updated on June 4, 2020 Not all data attributes are created equal. More is not always better when it comes to attributes or columns in your dataset. In this post you will discover how to select attributes in your data before creating a machine learning model using the scikit-learn library. Kick-start your project with my new book Machine Learning Mastery With Python, including step-by-step tutorials and the Python source code files for all examples. Let’s get started. Update: For […]

Read more

How to Tune Algorithm Parameters with Scikit-Learn

Last Updated on August 21, 2019 Machine learning models are parameterized so that their behavior can be tuned for a given problem. Models can have many parameters and finding the best combination of parameters can be treated as a search problem. In this post, you will discover how to tune the parameters of machine learning algorithms in Python using the scikit-learn library. Kick-start your project with my new book Machine Learning Mastery With Python, including step-by-step tutorials and the Python […]

Read more

Java Machine Learning

Last Updated on September 29, 2016 Are you a Java programmer and looking to get started or practice machine learning? Writing programs that make use of machine learning is the best way to learn machine learning. You can write the algorithms yourself from scratch, but you can make a lot more progress if you leverage an existing open source library. In this post you will discover the major platforms and open source machine learning libraries you can use in Java. […]

Read more

Applied Machine Learning Lessons from A Case Study of Passenger Survival Prediction

Last Updated on August 22, 2019 A valuable exercise when learning and practicing machine learning is to study how others apply methods and solve problems. It’s valuable because you can learn about new processes, software, graphs, and algorithms. But it is new ways of thinking about the process of solving problems with machine learning that is the most valuable part of the exercise. In this post you will review Curt Wehrley approach for predicting passenger survival on the Titanic, a […]

Read more
1 127 128 129 130 131 226