Decision Trees

In machine learning, training a model and testing it is definitely not an end. Should we run this source code of training, tuning everything again to do predictions in future? No Need!!! We can save and reuse the same model…
In this article we will be researching on the Titanic Dataset with Logistic Regression and Classification Metrics. Lets see how to do logistic regression with Python — LogisticRegression() from sklearn. I have taken the Titanic data set from Kaggle. Here…
In this article, we will see how to join 2 Numpy arrays using built-in funcitons. Numpy – Joining two numpy arrays stack — Joins arrays with given axis element by element hstack — Extends horizontally vstack — Extends vertically Stack…
Ever thought about doing magic or predict future? Here is the guide! lol! In this article lets go programming with sklearn package to explore Linear Regression and learn how to do prediction with Linear Regression. We have seen enough theories…
R Squared is one of the metrics by which we can find the accuracy of a model that we create. R squared metrics works only if the regression model is linear. SSE — Sum of Squares of Residuals (Errors) SSR is the sum…