How to Train Keras Deep Learning Models on AWS EC2 GPUs (step-by-step)

Last Updated on August 19, 2019 Keras is a Python deep learning library that provides easy and convenient access to the powerful numerical libraries like TensorFlow. Large deep learning models require a lot of compute time to run. You can run them on your CPU but it can take hours or days to get a result. If you have access to a GPU on your desktop, you can drastically speed up the training time of your deep learning models. In […]

Read more

Understand Your Machine Learning Data With Descriptive Statistics in Python

Last Updated on December 11, 2019 You must understand your data in order to get the best results. In this post you will discover 7 recipes that you can use in Python to learn more about your machine learning data. 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 Mar/2018: Added alternate link to download the dataset as the original appears […]

Read more

Visualize Machine Learning Data in Python With Pandas

Last Updated on December 11, 2019 You must understand your data in order to get the best results from machine learning algorithms. The fastest way to learn more about your data is to use data visualization. In this post you will discover exactly how you can visualize your machine learning data in Python using Pandas. 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 […]

Read more

Crash Course On Multi-Layer Perceptron Neural Networks

Last Updated on August 15, 2020 Artificial neural networks are a fascinating area of study, although they can be intimidating when just getting started. There are a lot of specialized terminology used when describing the data structures and algorithms used in the field. In this post you will get a crash course in the terminology and processes used in the field of multi-layer perceptron artificial neural networks. After reading this post you will know: The building blocks of neural networks including neurons, […]

Read more

How To Prepare Your Data For Machine Learning in Python with Scikit-Learn

Last Updated on December 11, 2019 Many machine learning algorithms make assumptions about your data. It is often a very good idea to prepare your data in such way to best expose the structure of the problem to the machine learning algorithms that you intend to use. In this post you will discover how to prepare your 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 […]

Read more

How To Build Multi-Layer Perceptron Neural Network Models with Keras

Last Updated on August 19, 2019 The Keras Python library for deep learning focuses on the creation of models as a sequence of layers. In this post you will discover the simple components that you can use to create neural networks and simple deep learning models using Keras. Kick-start your project with my new book Deep Learning With Python, including step-by-step tutorials and the Python source code files for all examples. Let’s get started. Update Mar/2017: Updated example for Keras […]

Read more

Feature Selection For Machine Learning in Python

Last Updated on August 28, 2020 The data features that you use to train your machine learning models have a huge influence on the performance you can achieve. Irrelevant or partially relevant features can negatively impact model performance. In this post you will discover automatic feature selection techniques that you can use to prepare your machine learning data in python with scikit-learn. Kick-start your project with my new book Machine Learning Mastery With Python, including step-by-step tutorials and the Python […]

Read more

Evaluate the Performance of Machine Learning Algorithms in Python using Resampling

Last Updated on August 28, 2020 You need to know how well your algorithms perform on unseen data. The best way to evaluate the performance of an algorithm would be to make predictions for new data to which you already know the answers. The second best way is to use clever techniques from statistics called resampling methods that allow you to make accurate estimates for how well your algorithm will perform on new data. In this post you will discover […]

Read more

Metrics To Evaluate Machine Learning Algorithms in Python

Last Updated on August 31, 2020 The metrics that you choose to evaluate your machine learning algorithms are very important. Choice of metrics influences how the performance of machine learning algorithms is measured and compared. They influence how you weight the importance of different characteristics in the results and your ultimate choice of which algorithm to choose. In this post, you will discover how to select and use different machine learning performance metrics in Python with scikit-learn. Kick-start your project […]

Read more

Evaluate the Performance Of Deep Learning Models in Keras

Last Updated on August 27, 2020 Keras is an easy to use and powerful Python library for deep learning. There are a lot of decisions to make when designing and configuring your deep learning models. Most of these decisions must be resolved empirically through trial and error and evaluating them on real data. As such, it is critically important to have a robust way to evaluate the performance of your neural networks and deep learning models. In this post you […]

Read more
1 780 781 782 783 784 905