Feature Engineering: LabelEncoder sklearn example
A big part of machine learning is data cleanup and feature engineering. A good tool in your data science toolkit will be label encoding....
Set up the best parameters for Deep Learning RNN with Grid Search
Most of the time I've spent on Kaggle contests have been hyperparameter optimization. It's a major part of deep learning and fine tuning if...
Use Google Colab and Kaggle Data with bonus: fastai2
I was just running through this process and thought it might be helpful for others:
What to do in Kaggle:
Step 1. Go to your Kaggle...
How to add a column to pandas dataframe
Pandas allow for many methods for adding and dropping content. We have covered how to drop a column and how to drop a row...
Data Wrangling: Cleaning up Ohio Crime Data for Machine Learning
Often it seems like the biggest part of machine learning is actually acquiring and cleaning up data. The state of Ohio provides crime data...
How to import data into Python to run Machine Learning projects
One of the most important aspects of running any machine learning program is the ability to pull in data from various sources and of...
Machine Learning Algorithms for beginners
Below are some basics on machine learning algorithms. This is for beginners who are trying to get a better understanding about machine learning and...
How to make the first row in your spreadsheet or dataframe the header in...
If you have imported a CSV file into your notebook and use Pandas to view the dataframe you might find that the header of...
What is Conditional Probability and formula?
Conditional probability is used to find out the probability of some event happening given that some other event has happened. Easy right?
Therefore, conditional probability...
How to convert Google Colabs from Python 2 to Python 3
I don't know why Google Colabs defaults to Python 2, regardless, it's extremely easy to change your notebook to Python 3. It's so easy...